rutabaga 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml CHANGED
@@ -4,6 +4,6 @@ rvm:
4
4
  - 1.9.3
5
5
  # Gherkin currently failing to build in ruby-head
6
6
  # - ruby-head
7
- # - rbx-19mode
7
+ - rbx-19mode
8
8
 
9
9
  script: bundle exec rspec spec
data/lib/rutabaga.rb CHANGED
@@ -1,4 +1,3 @@
1
- require 'rutabaga/rspec_scary_speed_fix'
2
1
  require 'rutabaga/version'
3
2
  require 'turnip'
4
3
  require 'rutabaga/feature'
@@ -1,3 +1,3 @@
1
1
  module Rutabaga
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rutabaga
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-24 00:00:00.000000000 Z
12
+ date: 2012-08-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: turnip
@@ -47,7 +47,6 @@ files:
47
47
  - lib/.DS_Store
48
48
  - lib/rutabaga.rb
49
49
  - lib/rutabaga/feature.rb
50
- - lib/rutabaga/rspec_scary_speed_fix.rb
51
50
  - lib/rutabaga/version.rb
52
51
  - rutabaga.gemspec
53
52
  - spec/feature_spec.rb
@@ -1,11 +0,0 @@
1
- # speed up rspec under ruby 1.9 because it doesn't work otherwise
2
- if RUBY_VERSION > '1.9.2'
3
- class Object
4
- def to_ary ; nil ; end
5
- def to_hash ; nil ; end
6
- end
7
-
8
- class String
9
- def to_path ; self ; end
10
- end
11
- end