Skip to content

Commit 0f09119

Browse files
committed
final cleanups
1 parent 3dcf318 commit 0f09119

File tree

5 files changed

+8
-31
lines changed

5 files changed

+8
-31
lines changed

ruby/hyper-component/hyper-component.gemspec

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,10 @@ Gem::Specification.new do |spec|
88

99
spec.authors = ['David Chang', 'Adam Jahn', 'Mitch VanDuyn', 'Jan Biedermann', 'Adam Creekroad']
1010
spec.email = ['[email protected]']
11-
spec.homepage = 'http://ruby-hyperloop.org'
11+
spec.homepage = 'http://hyperstack.org'
1212
spec.summary = 'Opal Ruby wrapper of React.js library.'
1313
spec.license = 'MIT'
1414
spec.description = 'Write React UI components in pure Ruby.'
15-
# spec.metadata = {
16-
# "homepage_uri" => 'http://ruby-hyperloop.org',
17-
# "source_code_uri" => 'https://github.com/ruby-hyperloop/hyper-component'
18-
# }
19-
2015
spec.files = `git ls-files`.split("\n").reject { |f| f.match(%r{^(gemfiles|spec)/}) }
2116
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
2217
spec.require_paths = ['lib']

ruby/hyper-operation/spec/hyper-operation/execution_spec.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def self.promise
4242
MyOperation.run(i: 1)
4343
.always { |failure| failure }
4444
.tap { MyOperation.promise.reject("promise rejected") }
45-
.value
4645
).to eq "promise rejected"
4746
end
4847

@@ -59,7 +58,6 @@ def self.promise
5958
expect(
6059
MyOperation.run(i: 1)
6160
.always { |failure| failure.message }
62-
.tap { } #MyOperation.promise.resolve }
6361
.value
6462
).to eq "exception raised"
6563
end

ruby/hyper-spec/hyper-spec.gemspec

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,14 @@ require 'hyper-spec/version'
66
Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
77
spec.name = 'hyper-spec'
88
spec.version = HyperSpec::VERSION
9-
spec.authors = ['Mitch VanDuyn', 'Adam Creekroad', 'Jan Biedermann']
9+
spec.authors = ['Mitch VanDuyn', 'AdamCreekroad', 'Jan Biedermann']
1010
11-
spec.summary = 'Drive your Hyperloop client and server specs from RSpec and Capybara'
12-
spec.description = 'A Hyperloop application consists of isomorphic React Components, '\
11+
spec.summary = 'Drive your Opal and Hyperstack client and server specs from RSpec and Capybara'
12+
spec.description = 'A Hyperstack application consists of isomorphic React Components, '\
1313
'Active Record Models, Stores, Operations and Policiespec. '\
1414
'Test them all from Rspec, regardless if the code runs on the client or server.'
15-
spec.homepage = 'http://ruby-hyperloop.org'
15+
spec.homepage = 'http://hyperstack.org'
1616
spec.license = 'MIT'
17-
# spec.metadata = {
18-
# "homepage_uri" => 'http://ruby-hyperloop.org',
19-
# "source_code_uri" => 'https://github.com/ruby-hyperloop/hyper-component'
20-
# }
21-
2217
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(gemfiles|spec)/}) }
2318
spec.bindir = 'exe'
2419
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
@@ -28,10 +23,9 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
2823
spec.add_dependency 'capybara'
2924
spec.add_dependency 'chromedriver-helper', '1.2.0'
3025
spec.add_dependency 'filecache'
31-
# spec.add_dependency 'libv8', '~> 7.3.492.27.1'
3226
spec.add_dependency 'method_source'
3327
spec.add_dependency 'opal', ENV['OPAL_VERSION'] || '>= 0.11.0', '< 2.0'
34-
spec.add_dependency 'parser'#, '~> 2.7' #, '~> 2.3.3.1' # on rails-6 this is now >= 2.3
28+
spec.add_dependency 'parser'
3529
spec.add_dependency 'rspec'
3630
spec.add_dependency 'selenium-webdriver'
3731
spec.add_dependency 'timecop', '~> 0.8.1'

ruby/hyper-state/hyper-state.gemspec

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,8 @@ Gem::Specification.new do |spec|
99
spec.authors = ['Mitch VanDuyn', 'Adam Creekroad', 'Jan Biedermann']
1010
1111
spec.summary = 'Flux Stores and more for Hyperloop'
12-
spec.homepage = 'https://ruby-hyperloop.org'
12+
spec.homepage = 'https://hyperstack.org'
1313
spec.license = 'MIT'
14-
# spec.metadata = {
15-
# "homepage_uri" => 'http://ruby-hyperloop.org',
16-
# "source_code_uri" => 'https://github.com/ruby-hyperloop/hyper-component'
17-
# }
18-
1914
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(gemfiles|spec)/}) }
2015
spec.bindir = 'exe'
2116
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }

ruby/hyper-store/hyper-store.gemspec

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,8 @@ Gem::Specification.new do |spec|
99
spec.authors = ['Mitch VanDuyn', 'Adam Creekroad', 'Jan Biedermann']
1010
1111
spec.summary = 'Flux Stores and more for Hyperloop'
12-
spec.homepage = 'https://ruby-hyperloop.org'
12+
spec.homepage = 'https://hyperstack.org'
1313
spec.license = 'MIT'
14-
# spec.metadata = {
15-
# "homepage_uri" => 'http://ruby-hyperloop.org',
16-
# "source_code_uri" => 'https://github.com/ruby-hyperloop/hyper-component'
17-
# }
18-
1914
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(gemfiles|spec)/}) }
2015
spec.bindir = 'exe'
2116
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }

0 commit comments

Comments
 (0)