summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml5
-rw-r--r--Rakefile6
-rw-r--r--lib/method_source/version.rb2
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
diff --git a/Rakefile b/Rakefile
index c8b8f54..92c0234 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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