mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
c434b97628
nio4r 2.0.0 primarily includes new features and bugfixes, with few breaking changes. The primary reason for bumping the major version is dropping support for all Ruby versions prior to 2.2.2, so as to match Rails 5. Full release announcement here: https://groups.google.com/forum/#!topic/socketry/ZDIUj1ufiJ8
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", "~> 2.0"
|
|
s.add_dependency "websocket-driver", "~> 0.6.1"
|
|
end
|