Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
justincampbell committed Jun 7, 2019
1 parent 24f0e47 commit e2b99d5
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 7 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ build/
Gemfile.lock
.ruby-version
.ruby-gemset
gemfiles/*.gemfile
gemfiles/*.gemfile.lock

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
Expand Down
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ sudo: false

env:
- VAULT_VERSION=0.9.6
- VAULT_VERSION=0.8.3
- VAULT_VERSION=0.7.3
- VAULT_VERSION=0.6.5
- VAULT_VERSION=0.5.3
- VAULT_VERSION=0.4.1
- VAULT_VERSION=0.3.1

before_install:
- wget -O vault.zip -q https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip
Expand All @@ -28,6 +22,11 @@ rvm:
- "2.5"
- "2.6"

gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile

before_script:
- bundle exec rake app:db:create
- bundle exec rake app:db:schema:load
Expand Down
2 changes: 2 additions & 0 deletions gemfiles/.bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
BUNDLE_RETRY: "1"
7 changes: 7 additions & 0 deletions gemfiles/rails_4.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 4.2.0"

gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/rails_5.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 5.0.0"

gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/rails_5.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 5.1.0"

gemspec path: "../"

0 comments on commit e2b99d5

Please sign in to comment.