Skip to content

Commit

Permalink
Merge 058ff4f into cd3f353
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed Mar 30, 2020
2 parents cd3f353 + 058ff4f commit 24b6db2
Show file tree
Hide file tree
Showing 16 changed files with 29,144 additions and 37,087 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ Gemfile.lock
.DS_Store
/.rvm
/.ruby-version
/.ruby-gemset
/.ruby-gemsetcoverage
.rspec-status
coverage
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby 2.6.5
8 changes: 2 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
language: ruby
sudo: false
before_install:
- gem install bundler --version="~> 1.10"
bundler_args: --without guard
- gem install bundler
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.3.3
- 2.4.1
- 2.6.5
19 changes: 7 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
source "https://rubygems.org"

# Travis CI was running into several bundler-related bug
# * https://github.com/bundler/bundler/pull/3559
# * https://github.com/bundler/bundler/issues/3560
# that only apply to older versions of Bundler.
# I added this requirement so that future Travis CI builds
# fail quickly if an old version of bundler is being used.
gem 'bundler', '~>1.10'
gem 'bundler'

gemspec

gem 'coveralls', require: false

group :guard do
gem "guard-rspec"
gem "guard-bundler"
gem "rb-fsevent"
end
group :test do
gem 'rake'
gem 'rspec'
gem 'vcr'#, '1.11.3'
gem 'webmock'#, '1.3.0'
end
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ rescue LoadError
puts "Bundler not available. Install it with: gem install bundler"
end

load 'vcr/tasks/vcr.rake'

Dir[File.join(File.dirname(__FILE__), "lib/tasks/*.rake")].sort.each { |ext| load ext }

0 comments on commit 24b6db2

Please sign in to comment.