objective_spec 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/generators/objective_spec/objective_spec_generator.rb +5 -5
- metadata +12 -5
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.1
|
|
@@ -15,11 +15,11 @@ INFO
|
|
|
15
15
|
record do |m|
|
|
16
16
|
m.directory 'spec/mailers'
|
|
17
17
|
m.directory 'spec/support'
|
|
18
|
-
m.file '
|
|
19
|
-
m.file '
|
|
20
|
-
m.file '
|
|
21
|
-
m.file '
|
|
22
|
-
m.file '
|
|
18
|
+
m.file 'support/common.rb', 'spec/support/common_spec_helper.rb'
|
|
19
|
+
m.file 'support/model.rb', 'spec/support/model_spec_helper.rb'
|
|
20
|
+
m.file 'support/view.rb', 'spec/support/view_spec_helper.rb'
|
|
21
|
+
m.file 'support/controller.rb', 'spec/support/controller_spec_helper.rb'
|
|
22
|
+
m.file 'support/shared_examples.rb', 'spec/support/shared_examples.rb'
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
25
|
|
metadata
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: objective_spec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 3
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.3.1
|
|
5
10
|
platform: ruby
|
|
6
11
|
authors:
|
|
7
12
|
- Blake Watters
|
|
@@ -9,7 +14,7 @@ autorequire:
|
|
|
9
14
|
bindir: bin
|
|
10
15
|
cert_chain: []
|
|
11
16
|
|
|
12
|
-
date:
|
|
17
|
+
date: 2010-03-11 00:00:00 -05:00
|
|
13
18
|
default_executable:
|
|
14
19
|
dependencies: []
|
|
15
20
|
|
|
@@ -92,18 +97,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
92
97
|
requirements:
|
|
93
98
|
- - ">="
|
|
94
99
|
- !ruby/object:Gem::Version
|
|
100
|
+
segments:
|
|
101
|
+
- 0
|
|
95
102
|
version: "0"
|
|
96
|
-
version:
|
|
97
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
104
|
requirements:
|
|
99
105
|
- - ">="
|
|
100
106
|
- !ruby/object:Gem::Version
|
|
107
|
+
segments:
|
|
108
|
+
- 0
|
|
101
109
|
version: "0"
|
|
102
|
-
version:
|
|
103
110
|
requirements: []
|
|
104
111
|
|
|
105
112
|
rubyforge_project:
|
|
106
|
-
rubygems_version: 1.3.
|
|
113
|
+
rubygems_version: 1.3.6
|
|
107
114
|
signing_key:
|
|
108
115
|
specification_version: 3
|
|
109
116
|
summary: A set of extensions to RSpec for building Rails applications against Objective Spec
|