smock 0.1.6 → 0.1.7
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/Gemfile.lock +3 -3
- data/README.md +5 -0
- data/app/assets/stylesheets/includes/_colors.css.sass +16 -0
- data/app/assets/stylesheets/includes/_forms.css.sass +29 -0
- data/app/assets/stylesheets/includes/_grid.css.sass +13 -0
- data/app/assets/stylesheets/includes/_layouts.css.sass +28 -0
- data/app/assets/stylesheets/includes/_mixins.css.sass +66 -0
- data/app/assets/stylesheets/includes/_typography.css.sass +58 -0
- data/app/assets/stylesheets/includes/_typography_settings.sass +22 -0
- data/app/assets/stylesheets/includes/icons.css.sass +149 -0
- data/app/assets/stylesheets/modules/_asset_uploader.css.sass +54 -0
- data/app/assets/stylesheets/modules/_categories.css.sass +32 -0
- data/app/assets/stylesheets/modules/_footer.css.sass +100 -0
- data/app/assets/stylesheets/modules/_header.css.sass +32 -0
- data/app/assets/stylesheets/modules/_hero.css.sass +69 -0
- data/app/assets/stylesheets/modules/_nav.css.sass +19 -0
- data/app/assets/stylesheets/modules/_pagination.css.sass +5 -0
- data/app/assets/stylesheets/modules/_search_filters.css.sass +34 -0
- data/app/assets/stylesheets/modules/_service.css.sass +58 -0
- data/app/assets/stylesheets/modules/_styleguide.css.sass +73 -0
- data/app/assets/stylesheets/modules/_testimonials.css.sass +27 -0
- data/app/assets/stylesheets/modules/form/_credit_card.css.sass +15 -0
- data/app/assets/stylesheets/modules/form/_payment_method.css.sass +28 -0
- data/app/assets/stylesheets/modules/header/_categories.css.sass +40 -0
- data/app/assets/stylesheets/modules/header/_dropdown.css.sass +55 -0
- data/app/assets/stylesheets/modules/header/_nav.css.sass +58 -0
- data/app/assets/stylesheets/modules/header/_search.css.sass +32 -0
- data/app/assets/stylesheets/modules/service/_favorites.css.sass +82 -0
- data/app/assets/stylesheets/smock.sass +181 -0
- data/app/assets/stylesheets/thirdparty/bourbon/_bourbon-deprecated-upcoming.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/_bourbon.scss +74 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_button.scss +374 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_clearfix.scss +23 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_directional-values.scss +111 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_ellipsis.scss +7 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_font-family.scss +5 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_hide-text.scss +10 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_html5-input-types.scss +110 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_position.scss +32 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_prefixer.scss +45 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_retina-image.scss +31 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_size.scss +44 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_timing-functions.scss +32 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_triangle.scss +86 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_word-wrap.scss +8 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss +52 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_appearance.scss +3 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_backface-visibility.scss +6 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_background-image.scss +48 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_background.scss +103 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_border-image.scss +56 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_border-radius.scss +22 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_box-sizing.scss +4 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_calc.scss +4 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_columns.scss +47 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_filter.scss +5 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_flex-box.scss +321 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_font-face.scss +23 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_font-feature-settings.scss +10 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_hidpi-media-query.scss +10 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_hyphens.scss +4 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_image-rendering.scss +14 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_inline-block.scss +8 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_keyframes.scss +35 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss +38 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_perspective.scss +8 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_placeholder.scss +8 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_radial-gradient.scss +39 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_transform.scss +15 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_transition.scss +77 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_user-select.scss +3 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_color-lightness.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_flex-grid.scss +39 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_golden-ratio.scss +3 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_grid-width.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_linear-gradient.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_modular-scale.scss +66 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-em.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss +15 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_radial-gradient.scss +23 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_strip-units.scss +5 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_tint-shade.scss +9 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_transition-property-name.scss +22 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_unpack.scss +17 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_gradient-positions-parser.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_linear-positions-parser.scss +61 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_radial-arg-parser.scss +69 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_radial-positions-parser.scss +18 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_render-gradients.scss +26 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_shape-size-stripper.scss +10 -0
- data/app/assets/stylesheets/thirdparty/bourbon/settings/_asset-pipeline.scss +1 -0
- data/app/assets/stylesheets/thirdparty/bourbon/settings/_prefixer.scss +6 -0
- data/app/assets/stylesheets/thirdparty/bourbon/settings/_px-to-em.scss +1 -0
- data/app/assets/stylesheets/thirdparty/flexbox_mixins.scss +395 -0
- data/app/assets/stylesheets/thirdparty/jquery.fancybox.css.erb +274 -0
- data/app/assets/stylesheets/thirdparty/neat/_neat-helpers.scss +7 -0
- data/app/assets/stylesheets/thirdparty/neat/_neat.scss +21 -0
- data/app/assets/stylesheets/thirdparty/neat/functions/_new-breakpoint.scss +16 -0
- data/app/assets/stylesheets/thirdparty/neat/functions/_private.scss +125 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_fill-parent.scss +7 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_grid.scss +5 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_media.scss +38 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_omega.scss +61 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_outer-container.scss +8 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_pad.scss +8 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_private.scss +43 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_reset.scss +12 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_row.scss +17 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_shift.scss +16 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_span-columns.scss +43 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_to-deprecate.scss +57 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_visual-grid.scss +41 -0
- data/app/assets/stylesheets/thirdparty/neat/settings/_grid.scss +7 -0
- data/app/assets/stylesheets/thirdparty/neat/settings/_visual-grid.scss +5 -0
- data/app/assets/stylesheets/thirdparty/normalize.css +425 -0
- data/app/assets/stylesheets/thirdparty/nprogress.css +81 -0
- data/app/assets/stylesheets/thirdparty/typecsset.scss +352 -0
- data/app/assets/stylesheets/thirdparty/video-js.css +775 -0
- data/smock.gemspec +2 -2
- metadata +121 -5
data/smock.gemspec
CHANGED
@@ -23,8 +23,8 @@ This gem provides the basic styles and files for use in an application that need
|
|
23
23
|
s.require_paths = ["lib"]
|
24
24
|
|
25
25
|
s.add_dependency('sass', '~> 3.2')
|
26
|
-
s.add_dependency('bourbon', '~> 3.2')
|
27
|
-
s.add_dependency('neat', '~> 1.5')
|
28
26
|
|
27
|
+
s.add_development_dependency('bourbon', '~> 3.2')
|
28
|
+
s.add_development_dependency('neat', '~> 1.5')
|
29
29
|
s.add_development_dependency('rake')
|
30
30
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smock
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -35,7 +35,7 @@ dependencies:
|
|
35
35
|
- - ~>
|
36
36
|
- !ruby/object:Gem::Version
|
37
37
|
version: '3.2'
|
38
|
-
type: :
|
38
|
+
type: :development
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
@@ -51,7 +51,7 @@ dependencies:
|
|
51
51
|
- - ~>
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: '1.5'
|
54
|
-
type: :
|
54
|
+
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
none: false
|
@@ -91,6 +91,122 @@ files:
|
|
91
91
|
- LICENSE
|
92
92
|
- README.md
|
93
93
|
- Rakefile
|
94
|
+
- app/assets/stylesheets/includes/_colors.css.sass
|
95
|
+
- app/assets/stylesheets/includes/_forms.css.sass
|
96
|
+
- app/assets/stylesheets/includes/_grid.css.sass
|
97
|
+
- app/assets/stylesheets/includes/_layouts.css.sass
|
98
|
+
- app/assets/stylesheets/includes/_mixins.css.sass
|
99
|
+
- app/assets/stylesheets/includes/_typography.css.sass
|
100
|
+
- app/assets/stylesheets/includes/_typography_settings.sass
|
101
|
+
- app/assets/stylesheets/includes/icons.css.sass
|
102
|
+
- app/assets/stylesheets/modules/_asset_uploader.css.sass
|
103
|
+
- app/assets/stylesheets/modules/_categories.css.sass
|
104
|
+
- app/assets/stylesheets/modules/_footer.css.sass
|
105
|
+
- app/assets/stylesheets/modules/_header.css.sass
|
106
|
+
- app/assets/stylesheets/modules/_hero.css.sass
|
107
|
+
- app/assets/stylesheets/modules/_nav.css.sass
|
108
|
+
- app/assets/stylesheets/modules/_pagination.css.sass
|
109
|
+
- app/assets/stylesheets/modules/_search_filters.css.sass
|
110
|
+
- app/assets/stylesheets/modules/_service.css.sass
|
111
|
+
- app/assets/stylesheets/modules/_styleguide.css.sass
|
112
|
+
- app/assets/stylesheets/modules/_testimonials.css.sass
|
113
|
+
- app/assets/stylesheets/modules/form/_credit_card.css.sass
|
114
|
+
- app/assets/stylesheets/modules/form/_payment_method.css.sass
|
115
|
+
- app/assets/stylesheets/modules/header/_categories.css.sass
|
116
|
+
- app/assets/stylesheets/modules/header/_dropdown.css.sass
|
117
|
+
- app/assets/stylesheets/modules/header/_nav.css.sass
|
118
|
+
- app/assets/stylesheets/modules/header/_search.css.sass
|
119
|
+
- app/assets/stylesheets/modules/service/_favorites.css.sass
|
120
|
+
- app/assets/stylesheets/smock.sass
|
121
|
+
- app/assets/stylesheets/thirdparty/bourbon/_bourbon-deprecated-upcoming.scss
|
122
|
+
- app/assets/stylesheets/thirdparty/bourbon/_bourbon.scss
|
123
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_button.scss
|
124
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_clearfix.scss
|
125
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_directional-values.scss
|
126
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_ellipsis.scss
|
127
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_font-family.scss
|
128
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_hide-text.scss
|
129
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_html5-input-types.scss
|
130
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_position.scss
|
131
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_prefixer.scss
|
132
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_retina-image.scss
|
133
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_size.scss
|
134
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_timing-functions.scss
|
135
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_triangle.scss
|
136
|
+
- app/assets/stylesheets/thirdparty/bourbon/addons/_word-wrap.scss
|
137
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
|
138
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_appearance.scss
|
139
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_backface-visibility.scss
|
140
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_background-image.scss
|
141
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_background.scss
|
142
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_border-image.scss
|
143
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_border-radius.scss
|
144
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_box-sizing.scss
|
145
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_calc.scss
|
146
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_columns.scss
|
147
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_filter.scss
|
148
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_flex-box.scss
|
149
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_font-face.scss
|
150
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_font-feature-settings.scss
|
151
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_hidpi-media-query.scss
|
152
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_hyphens.scss
|
153
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_image-rendering.scss
|
154
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_inline-block.scss
|
155
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_keyframes.scss
|
156
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
|
157
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_perspective.scss
|
158
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_placeholder.scss
|
159
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_radial-gradient.scss
|
160
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_transform.scss
|
161
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_transition.scss
|
162
|
+
- app/assets/stylesheets/thirdparty/bourbon/css3/_user-select.scss
|
163
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_color-lightness.scss
|
164
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_flex-grid.scss
|
165
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_golden-ratio.scss
|
166
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_grid-width.scss
|
167
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_linear-gradient.scss
|
168
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_modular-scale.scss
|
169
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-em.scss
|
170
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
|
171
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_radial-gradient.scss
|
172
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_strip-units.scss
|
173
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_tint-shade.scss
|
174
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_transition-property-name.scss
|
175
|
+
- app/assets/stylesheets/thirdparty/bourbon/functions/_unpack.scss
|
176
|
+
- app/assets/stylesheets/thirdparty/bourbon/helpers/_gradient-positions-parser.scss
|
177
|
+
- app/assets/stylesheets/thirdparty/bourbon/helpers/_linear-positions-parser.scss
|
178
|
+
- app/assets/stylesheets/thirdparty/bourbon/helpers/_radial-arg-parser.scss
|
179
|
+
- app/assets/stylesheets/thirdparty/bourbon/helpers/_radial-positions-parser.scss
|
180
|
+
- app/assets/stylesheets/thirdparty/bourbon/helpers/_render-gradients.scss
|
181
|
+
- app/assets/stylesheets/thirdparty/bourbon/helpers/_shape-size-stripper.scss
|
182
|
+
- app/assets/stylesheets/thirdparty/bourbon/settings/_asset-pipeline.scss
|
183
|
+
- app/assets/stylesheets/thirdparty/bourbon/settings/_prefixer.scss
|
184
|
+
- app/assets/stylesheets/thirdparty/bourbon/settings/_px-to-em.scss
|
185
|
+
- app/assets/stylesheets/thirdparty/flexbox_mixins.scss
|
186
|
+
- app/assets/stylesheets/thirdparty/jquery.fancybox.css.erb
|
187
|
+
- app/assets/stylesheets/thirdparty/neat/_neat-helpers.scss
|
188
|
+
- app/assets/stylesheets/thirdparty/neat/_neat.scss
|
189
|
+
- app/assets/stylesheets/thirdparty/neat/functions/_new-breakpoint.scss
|
190
|
+
- app/assets/stylesheets/thirdparty/neat/functions/_private.scss
|
191
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_fill-parent.scss
|
192
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_grid.scss
|
193
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_media.scss
|
194
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_omega.scss
|
195
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_outer-container.scss
|
196
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_pad.scss
|
197
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_private.scss
|
198
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_reset.scss
|
199
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_row.scss
|
200
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_shift.scss
|
201
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_span-columns.scss
|
202
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_to-deprecate.scss
|
203
|
+
- app/assets/stylesheets/thirdparty/neat/grid/_visual-grid.scss
|
204
|
+
- app/assets/stylesheets/thirdparty/neat/settings/_grid.scss
|
205
|
+
- app/assets/stylesheets/thirdparty/neat/settings/_visual-grid.scss
|
206
|
+
- app/assets/stylesheets/thirdparty/normalize.css
|
207
|
+
- app/assets/stylesheets/thirdparty/nprogress.css
|
208
|
+
- app/assets/stylesheets/thirdparty/typecsset.scss
|
209
|
+
- app/assets/stylesheets/thirdparty/video-js.css
|
94
210
|
- lib/smock/version.rb
|
95
211
|
- smock.gemspec
|
96
212
|
- v2/_colors.css.sass
|
@@ -133,7 +249,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
133
249
|
version: '0'
|
134
250
|
segments:
|
135
251
|
- 0
|
136
|
-
hash:
|
252
|
+
hash: -4293449252057559594
|
137
253
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
138
254
|
none: false
|
139
255
|
requirements:
|
@@ -142,7 +258,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
258
|
version: '0'
|
143
259
|
segments:
|
144
260
|
- 0
|
145
|
-
hash:
|
261
|
+
hash: -4293449252057559594
|
146
262
|
requirements: []
|
147
263
|
rubyforge_project: smock
|
148
264
|
rubygems_version: 1.8.21
|