From cf27c1be65520c350712955e188438b29d39279f Mon Sep 17 00:00:00 2001 From: Vicent Llongo Date: Fri, 19 Jul 2013 21:30:34 +0300 Subject: [PATCH 1/3] Add travis support --- .travis.yml | 14 ++++++++++++++ simplecov-json.gemspec | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..51ab427 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +script: + - bundle +rvm: + - ree + - 1.8.7 + - 1.9.2 + - 1.9.3 + - 2.0.0 + - rbx-18mode + - rbx-19mode + - jruby-18mode + - jruby-19mode + - jruby-head + - ruby-head diff --git a/simplecov-json.gemspec b/simplecov-json.gemspec index b779fb6..9abbc84 100644 --- a/simplecov-json.gemspec +++ b/simplecov-json.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.rubyforge_project = "simplecov-json" s.files = ['lib/simplecov-json.rb'] - s.test_files = ['test/helper', 'test/test_simplecov_json.rb'] + s.test_files = ['test/helper.rb', 'test/test_simplecov_json.rb'] s.require_paths = ["lib"] s.add_dependency(%q, [">= 0"]) From a0cb25fa7374a1a5569bbfc0e15c3e10324fa30f Mon Sep 17 00:00:00 2001 From: Vicent Llongo Date: Fri, 19 Jul 2013 21:33:48 +0300 Subject: [PATCH 2/3] Bump gem version --- simplecov-json.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simplecov-json.gemspec b/simplecov-json.gemspec index 9abbc84..3b74e2c 100644 --- a/simplecov-json.gemspec +++ b/simplecov-json.gemspec @@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| s.name = "simplecov-json" - s.version = '0.1.1' + s.version = '0.1.2' s.platform = Gem::Platform::RUBY s.authors = ["Vicent Llongo"] s.email = ["villosil@gmail.com"] From e34f29c0b2bfef4bd0f5ff6e59155f828692235a Mon Sep 17 00:00:00 2001 From: Vicent Llongo Date: Fri, 19 Jul 2013 21:41:18 +0300 Subject: [PATCH 3/3] Remove head versions from travis --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 51ab427..1b32263 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,5 +10,3 @@ rvm: - rbx-19mode - jruby-18mode - jruby-19mode - - jruby-head - - ruby-head