-
Notifications
You must be signed in to change notification settings - Fork 28
/
action_cable_client.gemspec
33 lines (25 loc) · 1.14 KB
/
action_cable_client.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
# allows bundler to use the gemspec for dependencies
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'action_cable_client/version'
Gem::Specification.new do |s|
s.name = 'action_cable_client'
s.version = ActionCableClient::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.authors = ['L. Preston Sego III']
s.email = '[email protected]'
s.homepage = 'https://github.com/NullVoxPopuli/action_cable_client'
s.summary = "ActionCableClient-#{ActionCableClient::VERSION}"
s.description = "A ruby client for interacting with Rails' ActionCable"
s.files = Dir['CHANGELOG.md', 'LICENSE', 'MIT-LICENSE', 'README.md', 'lib/**/*']
s.require_path = 'lib'
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.required_ruby_version = '>= 2.3'
s.add_runtime_dependency 'websocket-eventmachine-client', '>= 1.2.0'
s.add_development_dependency 'codeclimate-test-reporter'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
end