mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
61483b18bc
Apps that depend on Action Cable don't need Blade for app development, so we can remove the gem dependency. We do need Blade for Action Cable dev, so we bundle it in the Gemfile. Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
25 lines
848 B
Ruby
25 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
|