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

Commit 4969bfc

Browse files
committed
update gemspecs and version 1.0.0-lap6
1 parent 6eb677f commit 4969bfc

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

hyperloop.gemspec

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,32 @@
22
lib = File.expand_path('../lib', __FILE__)
33
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
44
require 'hyperloop/version'
5+
GEM_VERSION = Hyperloop::VERSION
6+
require '../hyper-router/lib/hyper-router/version'
7+
ROUTER_VERSION = HyperRouter::VERSION
58

69
Gem::Specification.new do |s|
710
s.name = 'hyperloop'
811
s.version = Hyperloop::VERSION
912
s.summary = 'Hyperloop stack and generators for Rails'
1013
s.description = 'This gem provide the full hyperloop stack for rails plus generators for Hyperloop elements'
11-
s.authors = ['Loic Boutet', 'Adam George', 'Mitch VanDuyn', 'janbiedermann']
12-
s.email = 'loic@boutet.com'
13-
s.homepage = 'http://ruby-hyperloop.io'
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'
1417
s.license = 'MIT'
15-
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18+
spec.metadata = {
19+
homepage_uri: 'http://ruby-hyperloop.org',
20+
source_code_uri: 'https://github.com/ruby-hyperloop/hyperloop'
21+
}
22+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(tasks)/}) }
1623
s.require_paths = ['lib']
1724

18-
s.add_dependency 'hyper-model', '0.15.0-sachsenring-lap2'
19-
s.add_dependency 'hyper-router', '4.2.6-sachsenring-lap2'
20-
s.add_dependency 'hyperloop-config', '0.15.0-sachsenring-lap2'
21-
s.add_dependency 'opal-browser'
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'
2229
s.add_dependency 'opal-rails', '~> 0.9.3'
23-
s.add_dependency 'react-rails', '~> 2.4.0'
30+
s.add_dependency 'react-rails', '>= 2.3.0', '< 2.5.0'
2431
s.add_dependency 'mini_racer', '~> 0.1.14'
25-
s.add_runtime_dependency 'rails', '>= 5.1.4'
32+
s.add_runtime_dependency 'rails', '~> 5.1.4'
2633
end

lib/hyperloop/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Hyperloop
2-
VERSION = '0.15.0-sachsenring-lap2'
2+
VERSION = '1.0.0-lap6'
33
end

0 commit comments

Comments
 (0)