diff options
author | John Mair <jrmair@gmail.com> | 2012-02-29 03:55:27 +1300 |
---|---|---|
committer | John Mair <jrmair@gmail.com> | 2012-02-29 03:57:59 +1300 |
commit | 7bd1f9b748df78dbc2e7021fa337c1e712068491 (patch) | |
tree | bdf16e86d62d9266c541861d80f5e0eb6aa5e768 | |
parent | 67754ab26f8dd89e57d9cd00674dfb96d0d50070 (diff) | |
download | method_source-0.7.1.tar.gz |
version 0.7.1v0.7.1
-rw-r--r-- | .travis.yml | 5 | ||||
-rw-r--r-- | Rakefile | 6 | ||||
-rw-r--r-- | lib/method_source/version.rb | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index a246f6e..ba51bba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,8 @@ rvm: - 1.9.2 - 1.9.3 - ree - - rbx-2.0 + - rbx-18mode + - rbx-19mode - jruby notifications: @@ -13,4 +14,4 @@ notifications: branches: only: - - master
\ No newline at end of file + - master @@ -32,6 +32,12 @@ task :test do sh "bacon -q #{direc}/test/test.rb" end +desc "reinstall gem" +task :reinstall => :gems do + sh "gem uninstall method_source" rescue nil + sh "gem install #{direc}/pkg/method_source-#{MethodSource::VERSION}.gem" +end + desc "Set up and run tests" task :default => [:test] diff --git a/lib/method_source/version.rb b/lib/method_source/version.rb index ad8dae2..b8142bf 100644 --- a/lib/method_source/version.rb +++ b/lib/method_source/version.rb @@ -1,3 +1,3 @@ module MethodSource - VERSION = "0.7.0" + VERSION = "0.7.1" end |