Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit eec2fa5

Browse files
committed
naming
1 parent 28e7b7b commit eec2fa5

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

hyperloop.gemspec

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,28 @@ GEM_VERSION = Hyperloop::VERSION
66
require '../hyper-router/lib/hyper-router/version'
77
ROUTER_VERSION = HyperRouter::VERSION
88

9-
Gem::Specification.new do |s|
10-
s.name = 'hyperloop'
11-
s.version = Hyperloop::VERSION
12-
s.summary = 'Hyperloop stack and generators for Rails'
13-
s.description = 'This gem provide the full hyperloop stack for rails plus generators for Hyperloop elements'
14-
s.authors = ['Loic Boutet', 'Adam George', 'Mitch VanDuyn', 'Jan Biedermann']
15-
s.email = ['loic@boutet.com', 'jan@kursator.com']
16-
s.homepage = 'http://ruby-hyperloop.org'
17-
s.license = 'MIT'
9+
Gem::Specification.new do |spec|
10+
spec.name = 'hyperloop'
11+
spec.version = Hyperloop::VERSION
12+
spec.summary = 'Hyperloop stack and generators for Rails'
13+
spec.description = 'This gem provide the full hyperloop stack for rails plus generators for Hyperloop elements'
14+
spec.authors = ['Loic Boutet', 'Adam George', 'Mitch VanDuyn', 'Jan Biedermann']
15+
spec.email = ['loic@boutet.com', 'jan@kursator.com']
16+
spec.homepage = 'http://ruby-hyperloop.org'
17+
spec.license = 'MIT'
1818
spec.metadata = {
1919
"homepage_uri" => 'http://ruby-hyperloop.org',
2020
"source_code_uri" => 'https://github.com/ruby-hyperloop/hyper-component'
2121
}
22-
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(tasks)/}) }
23-
s.require_paths = ['lib']
22+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(tasks)/}) }
23+
spec.require_paths = ['lib']
2424

25-
s.add_dependency 'hyper-model', GEM_VERSION
26-
s.add_dependency 'hyper-router', ROUTER_VERSION
27-
s.add_dependency 'hyperloop-config', GEM_VERSION
28-
s.add_dependency 'opal-browser', '~> 0.2.0'
29-
s.add_dependency 'opal-rails', '~> 0.9.3'
30-
s.add_dependency 'react-rails', '>= 2.3.0', '< 2.5.0'
31-
s.add_dependency 'mini_racer', '~> 0.1.14'
32-
s.add_runtime_dependency 'rails', '~> 5.1.4'
25+
spec.add_dependency 'hyper-model', GEM_VERSION
26+
spec.add_dependency 'hyper-router', ROUTER_VERSION
27+
spec.add_dependency 'hyperloop-config', GEM_VERSION
28+
spec.add_dependency 'opal-browser', '~> 0.2.0'
29+
spec.add_dependency 'opal-rails', '~> 0.9.3'
30+
spec.add_dependency 'react-rails', '>= 2.3.0', '< 2.5.0'
31+
spec.add_dependency 'mini_racer', '~> 0.1.14'
32+
spec.add_runtime_dependency 'rails', '~> 5.1.4'
3333
end

0 commit comments

Comments
 (0)