55e33667a6
None of the other components use them, so we should be consistent.
26 lines
848 B
Ruby
26 lines
848 B
Ruby
version = File.read(File.expand_path('../../RAILS_VERSION', __FILE__)).strip
|
|
|
|
Gem::Specification.new do |s|
|
|
s.platform = Gem::Platform::RUBY
|
|
s.name = 'actioncable'
|
|
s.version = version
|
|
s.summary = 'WebSocket framework for Rails.'
|
|
s.description = 'Structure many real-time application concerns into channels over a single WebSocket connection.'
|
|
|
|
s.required_ruby_version = '>= 2.2.2'
|
|
|
|
s.license = 'MIT'
|
|
|
|
s.author = ['Pratik Naik', 'David Heinemeier Hansson']
|
|
s.email = ['pratiknaik@gmail.com', 'david@loudthinking.com']
|
|
s.homepage = 'http://rubyonrails.org'
|
|
|
|
s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.md', 'lib/**/*']
|
|
s.require_path = 'lib'
|
|
|
|
s.add_dependency 'actionpack', version
|
|
|
|
s.add_dependency 'nio4r', '~> 1.2'
|
|
s.add_dependency 'websocket-driver', '~> 0.6.1'
|
|
end
|