Skip to content

Commit 1bab6d0

Browse files
committed
more path fixing
1 parent 722f343 commit 1bab6d0

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

ruby/hyper-model/Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source 'https://rubygems.org'
22
#gem "opal-jquery", git: "https://github.com/opal/opal-jquery.git", branch: "master"
3-
# hyper-model is still using an ancient inlined version of gem 'hyper-spec', path: '../hyper-spec'
3+
# hyper-model is still using an ancient inlined version of hyper-spec
4+
#gem 'hyper-spec', path: '../hyper-spec'
45
gem 'hyperloop-config', path: '../hyperloop-config'
56
gem 'hyper-store', path: '../hyper-store'
67
gem 'hyper-component', path: '../hyper-component'

ruby/hyper-model/hyper-model.gemspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ Gem::Specification.new do |spec|
3131
spec.add_dependency 'hyper-operation', HyperModel::VERSION
3232
spec.add_development_dependency 'bundler'
3333
spec.add_development_dependency 'capybara'
34-
spec.add_dependency 'chromedriver-helper', '1.2.0'
35-
spec.add_dependency 'libv8', '~> 6.3.0' # see https://github.com/discourse/mini_racer/issues/92
36-
spec.add_dependency 'mini_racer', '~> 0.1.15'
34+
spec.add_development_dependency 'chromedriver-helper', '1.2.0'
35+
spec.add_development_dependency 'libv8', '~> 6.3.0' # see https://github.com/discourse/mini_racer/issues/92
36+
spec.add_development_dependency 'mini_racer', '~> 0.1.15'
37+
spec.add_development_dependency 'selenium-webdriver'
3738
spec.add_development_dependency 'database_cleaner'
3839
spec.add_development_dependency 'factory_bot_rails'
3940
#spec.add_development_dependency 'hyper-spec', HyperModel::VERSION

ruby/hyper-operation/spec/aaa_run_first/aaa_transports_spec.rb renamed to ruby/hyper-operation/spec/aaa_run_first/transports_spec.rb

File renamed without changes.

ruby/hyper-spec/spec/test_app/app/views/components.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'opal'
22
require 'promise'
3-
require 'hyper-react'
3+
require 'hyper-component'
44
if React::IsomorphicHelpers.on_opal_client?
55
require 'browser'
66
require 'browser/delay'

ruby/hyper-spec/spec/test_app/config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Bundler.require(*Rails.groups(assets: %w(development test)))
1717

1818
require 'opal-rails'
19-
require 'hyper-react'
19+
require 'hyper-component'
2020

2121
module TestApp
2222
class Application < Rails::Application

0 commit comments

Comments
 (0)