forked from merongivian/opal-actioncable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopal-actioncable.gemspec
23 lines (19 loc) · 984 Bytes
/
opal-actioncable.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'opal-actioncable/version'
Gem::Specification.new do |spec|
spec.name = "opal-actioncable"
spec.version = Opal::ActionCable::VERSION
spec.authors = ["Jose Añasco", "Michael Sprauer"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = %q{ActionCable adapter for Opal}
spec.description = %q{Bring all the ActionCable goodness back to the ruby language}
spec.homepage = "https://github.com/MichaelSp/opal-actioncable"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.require_paths = ["lib"]
spec.add_dependency 'opal', '~> 0.9'
end