relevance-tarantula 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.1.7 Minor clean up [Rob Sanheim]
2
+
1
3
  v0.1.6
2
4
  * add testing for all Rails versions 2.0.2 and up
3
5
  * various clean up and housekeeping tasks;
data/README.rdoc CHANGED
@@ -140,6 +140,10 @@ Please submit your bug reports, patches, or feature requests at Lighthouse:
140
140
 
141
141
  http://relevance.lighthouseapp.com/projects/17868-tarantula/overview
142
142
 
143
+ You can view the continuous integration results for Tarantula, including results against all supported versions of Rails, on RunCodeRun here:
144
+
145
+ http://runcoderun.com/relevance/tarantula
146
+
143
147
  == License
144
148
 
145
149
  Tarantula is released under the MIT license.
data/Rakefile CHANGED
@@ -4,7 +4,6 @@ require 'rake/rdoctask'
4
4
  gem "spicycode-micronaut", ">= 0.2.4"
5
5
  require 'micronaut'
6
6
  require 'micronaut/rake_task'
7
- require 'lib/relevance/tarantula.rb'
8
7
 
9
8
  begin
10
9
  require 'jeweler'
@@ -59,4 +58,8 @@ namespace :examples do
59
58
 
60
59
  end
61
60
 
62
- task :default => "examples"
61
+ if ENV["RUN_CODE_RUN"]
62
+ task :default => "examples:multi_rails"
63
+ else
64
+ task :default => "examples"
65
+ end
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :minor: 1
3
- :patch: 6
4
2
  :major: 0
3
+ :minor: 1
4
+ :patch: 7
@@ -39,12 +39,7 @@ def not_in_editor?
39
39
  ['TM_MODE', 'EMACS', 'VIM'].all? { |k| !ENV.has_key?(k) }
40
40
  end
41
41
 
42
- def in_runcoderun?
43
- ENV["RUN_CODE_RUN"]
44
- end
45
-
46
42
  Micronaut.configure do |c|
47
- c.formatter = :documentation if in_runcoderun?
48
43
  c.alias_example_to :fit, :focused => true
49
44
  c.alias_example_to :xit, :disabled => true
50
45
  c.mock_with :mocha
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relevance-tarantula
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Relevance, Inc.