rspec-given 1.4.2 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # rspec-given
2
2
 
3
- Covering rspec-given, version 1.4.2.
3
+ Covering rspec-given, version 1.5.0.
4
4
 
5
5
  rspec-given is an RSpec extension to allow Given/When/Then notation in
6
6
  RSpec specifications. It is a natural extension of the experimental
@@ -0,0 +1,9 @@
1
+ # This file file is to make bundler happy when auto-requiring files
2
+ # based on gem name. If you are manually requiring rspec/given,
3
+ # please use the canonical require file, ie.
4
+ #
5
+ # require 'rspec/given'
6
+ #
7
+ # Thanks.
8
+
9
+ require 'rspec/given'
@@ -2,8 +2,8 @@ module RSpec
2
2
  module Given
3
3
  VERSION_NUMBERS = [
4
4
  VERSION_MAJOR = 1,
5
- VERSION_MINOR = 4,
6
- VERSION_BUILD = 2,
5
+ VERSION_MINOR = 5,
6
+ VERSION_BUILD = 0,
7
7
  ]
8
8
  VERSION = VERSION_NUMBERS.join(".")
9
9
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rspec-given
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.4.2
5
+ version: 1.5.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jim Weirich
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-11-22 00:00:00 Z
13
+ date: 2012-06-08 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rspec
@@ -60,6 +60,7 @@ files:
60
60
  - MIT-LICENSE
61
61
  - Rakefile
62
62
  - README.md
63
+ - lib/rspec-given.rb
63
64
  - lib/rspec/given/configure.rb
64
65
  - lib/rspec/given/extensions.rb
65
66
  - lib/rspec/given/rspec1_given.rb
@@ -97,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
98
  requirements: []
98
99
 
99
100
  rubyforge_project: given
100
- rubygems_version: 1.8.11
101
+ rubygems_version: 1.8.15
101
102
  signing_key:
102
103
  specification_version: 3
103
104
  summary: Given/When/Then Specification Extensions for RSpec.