Skip to content

Commit 28fed0f

Browse files
committed
beginning to get hyper-operation specs to pass
1 parent 873f4f4 commit 28fed0f

File tree

153 files changed

+8215
-396
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+8215
-396
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
*.rbc
2+
capybara-*.html
3+
.rspec
4+
/log
5+
/tmp
6+
/db/*.sqlite3
7+
/db/*.sqlite3-journal
8+
/spec/test_app/db/*.sqlite3
9+
/spec/test_app/db/*.sqlite3-journal
10+
/public/system
11+
/coverage/
12+
/spec/tmp
13+
**.orig
14+
rerun.txt
15+
pickle-email-*.html
16+
17+
# TODO Comment out these rules if you are OK with secrets being uploaded to the repo
18+
config/initializers/secret_token.rb
19+
config/secrets.yml
20+
21+
# dotenv
22+
# TODO Comment out this rule if environment variables can be committed
23+
.env
24+
25+
## Environment normalization:
26+
/.bundle
27+
/vendor/bundle
28+
29+
# these should all be checked in to normalize the environment:
30+
# Gemfile.lock, .ruby-version, .ruby-gemset
31+
32+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
33+
.rvmrc
34+
35+
# if using bower-rails ignore default bower_components path bower.json files
36+
/vendor/assets/bower_components
37+
*.bowerrc
38+
bower.json
39+
40+
# Ignore pow environment settings
41+
.powenv
42+
43+
# Ignore Byebug command history file.
44+
.byebug_history
45+
46+
# Ignore test app files
47+
/spec/test_app/log/
48+
/spec/test_app/tmp/
49+
50+
# Ignore built gem
51+
*.gem
52+
53+
.idea
54+
.vscode
55+
*.iml
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
dist: trusty
2+
language: ruby
3+
cache: bundler
4+
rvm:
5+
- 2.4.4
6+
- 2.5.1
7+
- ruby-head
8+
services:
9+
- mysql
10+
env:
11+
- DRIVER=google-chrome TZ=Europe/Berlin
12+
matrix:
13+
fast_finish: true
14+
allow_failures:
15+
- rvm: ruby-head
16+
before_install:
17+
- if [[ "$DRIVER" == "google-chrome" ]]; then wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -; fi
18+
- if [[ "$DRIVER" == "google-chrome" ]]; then echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list; fi
19+
- if [[ "$DRIVER" == "google-chrome" ]]; then sudo apt-get update -qq && sudo apt-get install -qq -y google-chrome-stable; fi
20+
- gem install bundler
21+
before_script:
22+
- cd spec/test_app
23+
- bundle install --jobs=3 --retry=3
24+
- bundle exec rails db:setup
25+
- cd ../../
26+
- if [[ "$DRIVER" == "google-chrome" ]]; then bundle exec chromedriver-update; fi
27+
- if [[ "$DRIVER" == "google-chrome" ]]; then ls -lR ~/.chromedriver-helper/; fi
28+
- if [[ "$DRIVER" == "google-chrome" ]]; then bundle exec chromedriver --version; fi
29+
- if [[ "$DRIVER" == "google-chrome" ]]; then google-chrome --version; fi
30+
- if [[ "$DRIVER" == "google-chrome" ]]; then which google-chrome; fi
31+
script: bundle exec rspec
32+
gemfile:
33+
- gemfiles/opal_0_11_react-rails_2_4.gemfile
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source 'https://rubygems.org'
2+
#gem "opal-jquery", git: "https://github.com/opal/opal-jquery.git", branch: "master"
3+
gem 'hyper-spec', path: '../hyper-spec'
4+
gem 'hyperloop-config', path: '../hyperloop-config'
5+
gem 'hyper-store', path: '../hyper-store'
6+
gem 'hyper-component', path: '../hyper-component'
7+
gemspec

0 commit comments

Comments
 (0)