Skip to content

Commit

Permalink
get tests running
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed May 2, 2019
1 parent 4450ae3 commit 22624de
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/doc
/pkg
.idea
Gemfile.lock
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
after_script:
- rake travis:after -t
before_script:
- gem install hoe-travis --no-rdoc --no-ri
- rake travis:before -t
after_script: bundle exec rake travis:after --trace
before_script: bundle exec rake travis:before --trace
language: ruby
notifications:
email:
- [email protected]
rvm:
- 2.1.10
- 2.2.5
- 2.3.1
script: rake travis
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
script: bundle exec rake travis
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source "https://rubygems.org"

gem "rake"
gem "hoe"
gem "hoe-travis"
gem "minitest"
gem "connection_pool"
3 changes: 3 additions & 0 deletions Manifest.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.autotest
.bundle/config
.gemtest
.travis.yml
Gemfile
Gemfile.lock
History.txt
Manifest.txt
README.rdoc
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- ruby -*-

require 'rubygems'
require 'bundler/setup'
require 'hoe'

Hoe.plugin :git
Expand Down

0 comments on commit 22624de

Please sign in to comment.