Skip to content

Commit

Permalink
Merge pull request #70 from ianks/url-updates-20200327
Browse files Browse the repository at this point in the history
Update URLs, update gems, spring cleaning 💅
  • Loading branch information
metavida committed Apr 3, 2020
2 parents cd3f353 + a6b30aa commit 85406c1
Show file tree
Hide file tree
Showing 16 changed files with 29,145 additions and 37,082 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Expand Up @@ -7,4 +7,7 @@ Gemfile.lock
.DS_Store
/.rvm
/.ruby-version
/.ruby-gemset
/.ruby-gemset
coverage
.rspec-status
coverage
1 change: 1 addition & 0 deletions .tool-versions
@@ -0,0 +1 @@
ruby 2.6.5
8 changes: 2 additions & 6 deletions .travis.yml
@@ -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
@@ -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
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 85406c1

Please sign in to comment.