given_core 3.0.0.beta.1 → 3.0.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: given_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta.1
4
+ version: 3.0.0.beta.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Weirich
@@ -25,8 +25,9 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.3.7
27
27
  description: |
28
- Given is an RSpec/Minitest extension that allows the use of Given/When/Then
29
- terminology when defining specifications.
28
+ Given_core is the basic functionality behind rspec-given and minispec-given,
29
+ extensions that allow the use of Given/When/Then terminology when defining
30
+ specifications.
30
31
  email: jim.weirich@gmail.com
31
32
  executables: []
32
33
  extensions: []
@@ -36,10 +37,10 @@ files:
36
37
  - Gemfile.lock
37
38
  - MIT-LICENSE
38
39
  - README.md
40
+ - README.old
39
41
  - Rakefile
40
42
  - TODO
41
43
  - lib/given.rb
42
- - lib/rspec-given.rb
43
44
  - lib/given/core.rb
44
45
  - lib/given/evaluator.rb
45
46
  - lib/given/ext/numeric.rb
@@ -50,8 +51,23 @@ files:
50
51
  - lib/given/fuzzy_number.rb
51
52
  - lib/given/fuzzy_shortcuts.rb
52
53
  - lib/given/line_extractor.rb
54
+ - lib/given/minispec/all.rb
55
+ - lib/given/minispec/before_extension.rb
56
+ - lib/given/minispec/configure.rb
57
+ - lib/given/minispec/context_extension.rb
58
+ - lib/given/minispec/framework.rb
59
+ - lib/given/minispec/new_assertions.rb
53
60
  - lib/given/module_methods.rb
54
61
  - lib/given/natural_assertion.rb
62
+ - lib/given/rspec/all.rb
63
+ - lib/given/rspec/before_extensions.rb
64
+ - lib/given/rspec/configure.rb
65
+ - lib/given/rspec/framework.rb
66
+ - lib/given/rspec/have_failed.rb
67
+ - lib/given/rspec/have_failed_212.rb
68
+ - lib/given/rspec/have_failed_pre212.rb
69
+ - lib/given/rspec/monkey.rb
70
+ - lib/given/rspec/use_natural_assertions.rb
55
71
  - lib/given/version.rb
56
72
  - rakelib/bundler_fix.rb
57
73
  - rakelib/gemspec.rake
data/lib/rspec-given.rb DELETED
@@ -1,9 +0,0 @@
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'