mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
adca8154c6
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
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
|