reimagine2 2.0.28
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.
- checksums.yaml +7 -0
- data/.gitignore +29 -0
- data/Gemfile +20 -0
- data/Gemfile.lock +199 -0
- data/LICENSE +20 -0
- data/Procfile +1 -0
- data/README.md +28 -0
- data/Rakefile +42 -0
- data/app/assets/fonts/reimagine2/proxima/proximanova-bold.ttf +0 -0
- data/app/assets/fonts/reimagine2/proxima/proximanova-bold.woff +0 -0
- data/app/assets/fonts/reimagine2/proxima/proximanova-boldit.ttf +0 -0
- data/app/assets/fonts/reimagine2/proxima/proximanova-boldit.woff +0 -0
- data/app/assets/fonts/reimagine2/proxima/proximanova-regular.ttf +0 -0
- data/app/assets/fonts/reimagine2/proxima/proximanova-regular.woff +0 -0
- data/app/assets/fonts/reimagine2/proxima/proximanova-regularit.ttf +0 -0
- data/app/assets/fonts/reimagine2/proxima/proximanova-regularit.woff +0 -0
- data/app/assets/fonts/reimagine2/ss-social/ss-social-circle.eot +0 -0
- data/app/assets/fonts/reimagine2/ss-social/ss-social-circle.svg +151 -0
- data/app/assets/fonts/reimagine2/ss-social/ss-social-circle.ttf +0 -0
- data/app/assets/fonts/reimagine2/ss-social/ss-social-circle.woff +0 -0
- data/app/assets/fonts/reimagine2/ss-social/ss-social-regular.eot +0 -0
- data/app/assets/fonts/reimagine2/ss-social/ss-social-regular.svg +142 -0
- data/app/assets/fonts/reimagine2/ss-social/ss-social-regular.ttf +0 -0
- data/app/assets/fonts/reimagine2/ss-social/ss-social-regular.woff +0 -0
- data/app/assets/fonts/reimagine2/ss-standard/ss-standard.eot +0 -0
- data/app/assets/fonts/reimagine2/ss-standard/ss-standard.svg +316 -0
- data/app/assets/fonts/reimagine2/ss-standard/ss-standard.ttf +0 -0
- data/app/assets/fonts/reimagine2/ss-standard/ss-standard.woff +0 -0
- data/app/assets/images/reimagine2/favicon.ico +0 -0
- data/app/assets/javascripts/reimagine2.js +6 -0
- data/app/assets/javascripts/reimagine2/accessible_custom_select.coffee +43 -0
- data/app/assets/javascripts/reimagine2/base.coffee +6 -0
- data/app/assets/javascripts/reimagine2/foundation.js +3 -0
- data/app/assets/stylesheets/reimagine2.css.sass +15 -0
- data/app/assets/stylesheets/reimagine2/_challengepost.sass +4 -0
- data/app/assets/stylesheets/reimagine2/_components.sass +1 -0
- data/app/assets/stylesheets/reimagine2/_config.sass +1 -0
- data/app/assets/stylesheets/reimagine2/_export.sass +7 -0
- data/app/assets/stylesheets/reimagine2/_fonts.sass +4 -0
- data/app/assets/stylesheets/reimagine2/_foundation.sass +10 -0
- data/app/assets/stylesheets/reimagine2/_foundation_and_overrides.sass +2 -0
- data/app/assets/stylesheets/reimagine2/_helpers.sass +4 -0
- data/app/assets/stylesheets/reimagine2/_ie.sass +3 -0
- data/app/assets/stylesheets/reimagine2/challengepost/_footer.sass +22 -0
- data/app/assets/stylesheets/reimagine2/challengepost/_simple_form.sass +34 -0
- data/app/assets/stylesheets/reimagine2/components/.keep +0 -0
- data/app/assets/stylesheets/reimagine2/components/_tabs.sass +57 -0
- data/app/assets/stylesheets/reimagine2/config/_challengepost_config.sass +23 -0
- data/app/assets/stylesheets/reimagine2/config/_colors.sass +5 -0
- data/app/assets/stylesheets/reimagine2/fonts/proxima/_proxima.css.scss +61 -0
- data/app/assets/stylesheets/reimagine2/fonts/symbolset/_ss-social.css.scss +61 -0
- data/app/assets/stylesheets/reimagine2/fonts/symbolset/_ss-standard.css.scss +51 -0
- data/app/assets/stylesheets/reimagine2/foundation/_build.scss +56 -0
- data/app/assets/stylesheets/reimagine2/foundation/_config.sass +3 -0
- data/app/assets/stylesheets/reimagine2/foundation/_extensions.sass +9 -0
- data/app/assets/stylesheets/reimagine2/foundation/_foundation_config.scss +1303 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_accessible_custom_select.sass +18 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_block_grid.sass +3 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_buttons.sass +39 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_custom_forms.sass +2 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_forms.sass +38 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_global.sass +2 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_inline_list.sass +7 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_pricing_table.sass +6 -0
- data/app/assets/stylesheets/reimagine2/foundation/extensions/_type.sass +18 -0
- data/app/assets/stylesheets/reimagine2/helpers/_block_wrapper_link.sass +16 -0
- data/app/assets/stylesheets/reimagine2/helpers/_cleafix.sass +2 -0
- data/app/assets/stylesheets/reimagine2/helpers/_effects.sass +5 -0
- data/app/assets/stylesheets/reimagine2/helpers/_text.sass +23 -0
- data/app/assets/stylesheets/reimagine2/helpers/_visibility.sass +42 -0
- data/app/assets/stylesheets/reimagine2/ie/_grid.sass +7 -0
- data/app/assets/stylesheets/reimagine2/ie/_visibility.sass +124 -0
- data/app/assets/stylesheets/reimagine2/mixins/_bold.sass +5 -0
- data/app/assets/stylesheets/reimagine2/reimagine1/_reset_row.sass +3 -0
- data/app/views/layout/reimagine2/_typekit.html.erb +2 -0
- data/app/views/reimagine2/_accessible_custom_select.html.erb +23 -0
- data/app/views/reimagine2/_twelve_columns.html.erb +5 -0
- data/app/views/reimagine2/challengepost/_footer.html.erb +38 -0
- data/lib/reimagine2.rb +1 -0
- data/lib/reimagine2/engine.rb +8 -0
- data/lib/reimagine2/version.rb +3 -0
- data/reimagine2.gemspec +34 -0
- data/spec/acceptance/acceptance_helper.rb +4 -0
- data/spec/acceptance/reimagine2_integration_spec.rb +29 -0
- data/spec/acceptance/shared_views_spec.rb +9 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +0 -0
- data/spec/dummy/app/assets/stylesheets/application.css +9 -0
- data/spec/dummy/app/assets/stylesheets/reimagine2/_foundation_and_overrides.sass +1 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/shared_views_controller.rb +5 -0
- data/spec/dummy/app/views/application/buttons.html.erb +113 -0
- data/spec/dummy/app/views/application/forms.html.erb +22 -0
- data/spec/dummy/app/views/application/show.html.erb +207 -0
- data/spec/dummy/app/views/application/tabs.html.erb +22 -0
- data/spec/dummy/app/views/application/type.html.erb +119 -0
- data/spec/dummy/app/views/layouts/application.html.erb +34 -0
- data/spec/dummy/app/views/shared_views/large_12.html.erb +3 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +48 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/test.rb +33 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/routes.rb +9 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/doc1.html +2870 -0
- data/spec/dummy/public/doc2.html +707 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/spec_helper.rb +34 -0
- data/vendor/assets/stylesheets/_normalize.scss +402 -0
- metadata +339 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
|
3
|
+
|
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
|
6
|
+
require 'rails/commands'
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
|
2
|
+
ENV["RAILS_ENV"] ||= 'test'
|
|
3
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
|
4
|
+
require 'rspec/rails'
|
|
5
|
+
require 'rspec/autorun'
|
|
6
|
+
|
|
7
|
+
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
8
|
+
# in spec/support/ and its subdirectories.
|
|
9
|
+
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
|
10
|
+
|
|
11
|
+
# Checks for pending migrations before tests are run.
|
|
12
|
+
# If you are not using ActiveRecord, you can remove this line.
|
|
13
|
+
ActiveRecord::Migration.check_pending! if defined?(ActiveRecord::Migration)
|
|
14
|
+
|
|
15
|
+
RSpec.configure do |config|
|
|
16
|
+
# ## Mock Framework
|
|
17
|
+
#
|
|
18
|
+
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
|
19
|
+
#
|
|
20
|
+
# config.mock_with :mocha
|
|
21
|
+
# config.mock_with :flexmock
|
|
22
|
+
# config.mock_with :rr
|
|
23
|
+
|
|
24
|
+
# If true, the base class of anonymous controllers will be inferred
|
|
25
|
+
# automatically. This will be the default behavior in future versions of
|
|
26
|
+
# rspec-rails.
|
|
27
|
+
config.infer_base_class_for_anonymous_controllers = false
|
|
28
|
+
|
|
29
|
+
# Run specs in random order to surface order dependencies. If you find an
|
|
30
|
+
# order dependency and want to debug it, you can fix the order by providing
|
|
31
|
+
# the seed, which is printed after each run.
|
|
32
|
+
# --seed 1234
|
|
33
|
+
config.order = "random"
|
|
34
|
+
end
|
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
/*! normalize.css v2.1.1 | MIT License | git.io/normalize */
|
|
2
|
+
|
|
3
|
+
/* ==========================================================================
|
|
4
|
+
HTML5 display definitions
|
|
5
|
+
========================================================================== */
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Correct `block` display not defined in IE 8/9.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
article,
|
|
12
|
+
aside,
|
|
13
|
+
details,
|
|
14
|
+
figcaption,
|
|
15
|
+
figure,
|
|
16
|
+
footer,
|
|
17
|
+
header,
|
|
18
|
+
hgroup,
|
|
19
|
+
main,
|
|
20
|
+
nav,
|
|
21
|
+
section,
|
|
22
|
+
summary {
|
|
23
|
+
display: block;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Correct `inline-block` display not defined in IE 8/9.
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
audio,
|
|
31
|
+
canvas,
|
|
32
|
+
video {
|
|
33
|
+
display: inline-block;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
|
38
|
+
* Remove excess height in iOS 5 devices.
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
audio:not([controls]) {
|
|
42
|
+
display: none;
|
|
43
|
+
height: 0;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Address styling not present in IE 8/9.
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
[hidden] {
|
|
51
|
+
display: none;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/* ==========================================================================
|
|
55
|
+
Base
|
|
56
|
+
========================================================================== */
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* 1. Prevent system color scheme's background color being used in Firefox, IE,
|
|
60
|
+
* and Opera.
|
|
61
|
+
* 2. Prevent system color scheme's text color being used in Firefox, IE, and
|
|
62
|
+
* Opera.
|
|
63
|
+
* 3. Set default font family to sans-serif.
|
|
64
|
+
* 4. Prevent iOS text size adjust after orientation change, without disabling
|
|
65
|
+
* user zoom.
|
|
66
|
+
*/
|
|
67
|
+
|
|
68
|
+
html {
|
|
69
|
+
background: #fff; /* 1 */
|
|
70
|
+
color: #000; /* 2 */
|
|
71
|
+
font-family: sans-serif; /* 3 */
|
|
72
|
+
-ms-text-size-adjust: 100%; /* 4 */
|
|
73
|
+
-webkit-text-size-adjust: 100%; /* 4 */
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Remove default margin.
|
|
78
|
+
*/
|
|
79
|
+
|
|
80
|
+
body {
|
|
81
|
+
margin: 0;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* ==========================================================================
|
|
85
|
+
Links
|
|
86
|
+
========================================================================== */
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Address `outline` inconsistency between Chrome and other browsers.
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
a:focus {
|
|
93
|
+
outline: thin dotted;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Improve readability when focused and also mouse hovered in all browsers.
|
|
98
|
+
*/
|
|
99
|
+
|
|
100
|
+
a:active,
|
|
101
|
+
a:hover {
|
|
102
|
+
outline: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/* ==========================================================================
|
|
106
|
+
Typography
|
|
107
|
+
========================================================================== */
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
|
111
|
+
* contexts in Firefox 4+, Safari 5, and Chrome.
|
|
112
|
+
*/
|
|
113
|
+
|
|
114
|
+
h1 {
|
|
115
|
+
font-size: 2em;
|
|
116
|
+
margin: 0.67em 0;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
|
121
|
+
*/
|
|
122
|
+
|
|
123
|
+
abbr[title] {
|
|
124
|
+
border-bottom: 1px dotted;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
|
129
|
+
*/
|
|
130
|
+
|
|
131
|
+
b,
|
|
132
|
+
strong {
|
|
133
|
+
font-weight: bold;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Address styling not present in Safari 5 and Chrome.
|
|
138
|
+
*/
|
|
139
|
+
|
|
140
|
+
dfn {
|
|
141
|
+
font-style: italic;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Address differences between Firefox and other browsers.
|
|
146
|
+
*/
|
|
147
|
+
|
|
148
|
+
hr {
|
|
149
|
+
-moz-box-sizing: content-box;
|
|
150
|
+
box-sizing: content-box;
|
|
151
|
+
height: 0;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Address styling not present in IE 8/9.
|
|
156
|
+
*/
|
|
157
|
+
|
|
158
|
+
mark {
|
|
159
|
+
background: #ff0;
|
|
160
|
+
color: #000;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Correct font family set oddly in Safari 5 and Chrome.
|
|
165
|
+
*/
|
|
166
|
+
|
|
167
|
+
code,
|
|
168
|
+
kbd,
|
|
169
|
+
pre,
|
|
170
|
+
samp {
|
|
171
|
+
font-family: monospace, serif;
|
|
172
|
+
font-size: 1em;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Improve readability of pre-formatted text in all browsers.
|
|
177
|
+
*/
|
|
178
|
+
|
|
179
|
+
pre {
|
|
180
|
+
white-space: pre-wrap;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Set consistent quote types.
|
|
185
|
+
*/
|
|
186
|
+
|
|
187
|
+
q {
|
|
188
|
+
quotes: "\201C" "\201D" "\2018" "\2019";
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Address inconsistent and variable font size in all browsers.
|
|
193
|
+
*/
|
|
194
|
+
|
|
195
|
+
small {
|
|
196
|
+
font-size: 80%;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
|
201
|
+
*/
|
|
202
|
+
|
|
203
|
+
sub,
|
|
204
|
+
sup {
|
|
205
|
+
font-size: 75%;
|
|
206
|
+
line-height: 0;
|
|
207
|
+
position: relative;
|
|
208
|
+
vertical-align: baseline;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
sup {
|
|
212
|
+
top: -0.5em;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
sub {
|
|
216
|
+
bottom: -0.25em;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/* ==========================================================================
|
|
220
|
+
Embedded content
|
|
221
|
+
========================================================================== */
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* Remove border when inside `a` element in IE 8/9.
|
|
225
|
+
*/
|
|
226
|
+
|
|
227
|
+
img {
|
|
228
|
+
border: 0;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Correct overflow displayed oddly in IE 9.
|
|
233
|
+
*/
|
|
234
|
+
|
|
235
|
+
svg:not(:root) {
|
|
236
|
+
overflow: hidden;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/* ==========================================================================
|
|
240
|
+
Figures
|
|
241
|
+
========================================================================== */
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Address margin not present in IE 8/9 and Safari 5.
|
|
245
|
+
*/
|
|
246
|
+
|
|
247
|
+
figure {
|
|
248
|
+
margin: 0;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/* ==========================================================================
|
|
252
|
+
Forms
|
|
253
|
+
========================================================================== */
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Define consistent border, margin, and padding.
|
|
257
|
+
*/
|
|
258
|
+
|
|
259
|
+
fieldset {
|
|
260
|
+
border: 1px solid #c0c0c0;
|
|
261
|
+
margin: 0 2px;
|
|
262
|
+
padding: 0.35em 0.625em 0.75em;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* 1. Correct `color` not being inherited in IE 8/9.
|
|
267
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
|
268
|
+
*/
|
|
269
|
+
|
|
270
|
+
legend {
|
|
271
|
+
border: 0; /* 1 */
|
|
272
|
+
padding: 0; /* 2 */
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* 1. Correct font family not being inherited in all browsers.
|
|
277
|
+
* 2. Correct font size not being inherited in all browsers.
|
|
278
|
+
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
|
279
|
+
*/
|
|
280
|
+
|
|
281
|
+
button,
|
|
282
|
+
input,
|
|
283
|
+
select,
|
|
284
|
+
textarea {
|
|
285
|
+
font-family: inherit; /* 1 */
|
|
286
|
+
font-size: 100%; /* 2 */
|
|
287
|
+
margin: 0; /* 3 */
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
|
292
|
+
* the UA stylesheet.
|
|
293
|
+
*/
|
|
294
|
+
|
|
295
|
+
button,
|
|
296
|
+
input {
|
|
297
|
+
line-height: normal;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
|
302
|
+
* All other form control elements do not inherit `text-transform` values.
|
|
303
|
+
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
|
|
304
|
+
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
|
305
|
+
*/
|
|
306
|
+
|
|
307
|
+
button,
|
|
308
|
+
select {
|
|
309
|
+
text-transform: none;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
|
314
|
+
* and `video` controls.
|
|
315
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
|
316
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
|
317
|
+
* `input` and others.
|
|
318
|
+
*/
|
|
319
|
+
|
|
320
|
+
button,
|
|
321
|
+
html input[type="button"], /* 1 */
|
|
322
|
+
input[type="reset"],
|
|
323
|
+
input[type="submit"] {
|
|
324
|
+
-webkit-appearance: button; /* 2 */
|
|
325
|
+
cursor: pointer; /* 3 */
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* Re-set default cursor for disabled elements.
|
|
330
|
+
*/
|
|
331
|
+
|
|
332
|
+
button[disabled],
|
|
333
|
+
html input[disabled] {
|
|
334
|
+
cursor: default;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* 1. Address box sizing set to `content-box` in IE 8/9.
|
|
339
|
+
* 2. Remove excess padding in IE 8/9.
|
|
340
|
+
*/
|
|
341
|
+
|
|
342
|
+
input[type="checkbox"],
|
|
343
|
+
input[type="radio"] {
|
|
344
|
+
box-sizing: border-box; /* 1 */
|
|
345
|
+
padding: 0; /* 2 */
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
|
350
|
+
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
|
351
|
+
* (include `-moz` to future-proof).
|
|
352
|
+
*/
|
|
353
|
+
|
|
354
|
+
input[type="search"] {
|
|
355
|
+
-webkit-appearance: textfield; /* 1 */
|
|
356
|
+
-moz-box-sizing: content-box;
|
|
357
|
+
-webkit-box-sizing: content-box; /* 2 */
|
|
358
|
+
box-sizing: content-box;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
|
363
|
+
* on OS X.
|
|
364
|
+
*/
|
|
365
|
+
|
|
366
|
+
input[type="search"]::-webkit-search-cancel-button,
|
|
367
|
+
input[type="search"]::-webkit-search-decoration {
|
|
368
|
+
-webkit-appearance: none;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* Remove inner padding and border in Firefox 4+.
|
|
373
|
+
*/
|
|
374
|
+
|
|
375
|
+
button::-moz-focus-inner,
|
|
376
|
+
input::-moz-focus-inner {
|
|
377
|
+
border: 0;
|
|
378
|
+
padding: 0;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* 1. Remove default vertical scrollbar in IE 8/9.
|
|
383
|
+
* 2. Improve readability and alignment in all browsers.
|
|
384
|
+
*/
|
|
385
|
+
|
|
386
|
+
textarea {
|
|
387
|
+
overflow: auto; /* 1 */
|
|
388
|
+
vertical-align: top; /* 2 */
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
/* ==========================================================================
|
|
392
|
+
Tables
|
|
393
|
+
========================================================================== */
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* Remove most spacing between table cells.
|
|
397
|
+
*/
|
|
398
|
+
|
|
399
|
+
table {
|
|
400
|
+
border-collapse: collapse;
|
|
401
|
+
border-spacing: 0;
|
|
402
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: reimagine2
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.0.28
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- ChallengePost, Inc.
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-11-20 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: sass-rails
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: compass-rails
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ~>
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 2.0.alpha.0
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ~>
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 2.0.alpha.0
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: coffee-rails
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: zurb-foundation
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ~>
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '4'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ~>
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '4'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rspec-rails
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ~>
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '2.0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ~>
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '2.0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: steak
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - '>='
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - '>='
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: launchy
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - '>='
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '0'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - '>='
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: pry
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - '>='
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '0'
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - '>='
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '0'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: pry-debugger
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - '>='
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '0'
|
|
146
|
+
type: :development
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - '>='
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '0'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: gemfury
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - '>='
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0'
|
|
160
|
+
type: :development
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - '>='
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '0'
|
|
167
|
+
description: Shared assets, in a gem.
|
|
168
|
+
email:
|
|
169
|
+
- tech@challengepost.com
|
|
170
|
+
executables: []
|
|
171
|
+
extensions: []
|
|
172
|
+
extra_rdoc_files: []
|
|
173
|
+
files:
|
|
174
|
+
- .gitignore
|
|
175
|
+
- Gemfile
|
|
176
|
+
- Gemfile.lock
|
|
177
|
+
- LICENSE
|
|
178
|
+
- Procfile
|
|
179
|
+
- README.md
|
|
180
|
+
- Rakefile
|
|
181
|
+
- app/assets/fonts/reimagine2/proxima/proximanova-bold.ttf
|
|
182
|
+
- app/assets/fonts/reimagine2/proxima/proximanova-bold.woff
|
|
183
|
+
- app/assets/fonts/reimagine2/proxima/proximanova-boldit.ttf
|
|
184
|
+
- app/assets/fonts/reimagine2/proxima/proximanova-boldit.woff
|
|
185
|
+
- app/assets/fonts/reimagine2/proxima/proximanova-regular.ttf
|
|
186
|
+
- app/assets/fonts/reimagine2/proxima/proximanova-regular.woff
|
|
187
|
+
- app/assets/fonts/reimagine2/proxima/proximanova-regularit.ttf
|
|
188
|
+
- app/assets/fonts/reimagine2/proxima/proximanova-regularit.woff
|
|
189
|
+
- app/assets/fonts/reimagine2/ss-social/ss-social-circle.eot
|
|
190
|
+
- app/assets/fonts/reimagine2/ss-social/ss-social-circle.svg
|
|
191
|
+
- app/assets/fonts/reimagine2/ss-social/ss-social-circle.ttf
|
|
192
|
+
- app/assets/fonts/reimagine2/ss-social/ss-social-circle.woff
|
|
193
|
+
- app/assets/fonts/reimagine2/ss-social/ss-social-regular.eot
|
|
194
|
+
- app/assets/fonts/reimagine2/ss-social/ss-social-regular.svg
|
|
195
|
+
- app/assets/fonts/reimagine2/ss-social/ss-social-regular.ttf
|
|
196
|
+
- app/assets/fonts/reimagine2/ss-social/ss-social-regular.woff
|
|
197
|
+
- app/assets/fonts/reimagine2/ss-standard/ss-standard.eot
|
|
198
|
+
- app/assets/fonts/reimagine2/ss-standard/ss-standard.svg
|
|
199
|
+
- app/assets/fonts/reimagine2/ss-standard/ss-standard.ttf
|
|
200
|
+
- app/assets/fonts/reimagine2/ss-standard/ss-standard.woff
|
|
201
|
+
- app/assets/images/reimagine2/favicon.ico
|
|
202
|
+
- app/assets/javascripts/reimagine2.js
|
|
203
|
+
- app/assets/javascripts/reimagine2/accessible_custom_select.coffee
|
|
204
|
+
- app/assets/javascripts/reimagine2/base.coffee
|
|
205
|
+
- app/assets/javascripts/reimagine2/foundation.js
|
|
206
|
+
- app/assets/stylesheets/reimagine2.css.sass
|
|
207
|
+
- app/assets/stylesheets/reimagine2/_challengepost.sass
|
|
208
|
+
- app/assets/stylesheets/reimagine2/_components.sass
|
|
209
|
+
- app/assets/stylesheets/reimagine2/_config.sass
|
|
210
|
+
- app/assets/stylesheets/reimagine2/_export.sass
|
|
211
|
+
- app/assets/stylesheets/reimagine2/_fonts.sass
|
|
212
|
+
- app/assets/stylesheets/reimagine2/_foundation.sass
|
|
213
|
+
- app/assets/stylesheets/reimagine2/_foundation_and_overrides.sass
|
|
214
|
+
- app/assets/stylesheets/reimagine2/_helpers.sass
|
|
215
|
+
- app/assets/stylesheets/reimagine2/_ie.sass
|
|
216
|
+
- app/assets/stylesheets/reimagine2/challengepost/_footer.sass
|
|
217
|
+
- app/assets/stylesheets/reimagine2/challengepost/_simple_form.sass
|
|
218
|
+
- app/assets/stylesheets/reimagine2/components/.keep
|
|
219
|
+
- app/assets/stylesheets/reimagine2/components/_tabs.sass
|
|
220
|
+
- app/assets/stylesheets/reimagine2/config/_challengepost_config.sass
|
|
221
|
+
- app/assets/stylesheets/reimagine2/config/_colors.sass
|
|
222
|
+
- app/assets/stylesheets/reimagine2/fonts/proxima/_proxima.css.scss
|
|
223
|
+
- app/assets/stylesheets/reimagine2/fonts/symbolset/_ss-social.css.scss
|
|
224
|
+
- app/assets/stylesheets/reimagine2/fonts/symbolset/_ss-standard.css.scss
|
|
225
|
+
- app/assets/stylesheets/reimagine2/foundation/_build.scss
|
|
226
|
+
- app/assets/stylesheets/reimagine2/foundation/_config.sass
|
|
227
|
+
- app/assets/stylesheets/reimagine2/foundation/_extensions.sass
|
|
228
|
+
- app/assets/stylesheets/reimagine2/foundation/_foundation_config.scss
|
|
229
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_accessible_custom_select.sass
|
|
230
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_block_grid.sass
|
|
231
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_buttons.sass
|
|
232
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_custom_forms.sass
|
|
233
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_forms.sass
|
|
234
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_global.sass
|
|
235
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_inline_list.sass
|
|
236
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_pricing_table.sass
|
|
237
|
+
- app/assets/stylesheets/reimagine2/foundation/extensions/_type.sass
|
|
238
|
+
- app/assets/stylesheets/reimagine2/helpers/_block_wrapper_link.sass
|
|
239
|
+
- app/assets/stylesheets/reimagine2/helpers/_cleafix.sass
|
|
240
|
+
- app/assets/stylesheets/reimagine2/helpers/_effects.sass
|
|
241
|
+
- app/assets/stylesheets/reimagine2/helpers/_text.sass
|
|
242
|
+
- app/assets/stylesheets/reimagine2/helpers/_visibility.sass
|
|
243
|
+
- app/assets/stylesheets/reimagine2/ie/_grid.sass
|
|
244
|
+
- app/assets/stylesheets/reimagine2/ie/_visibility.sass
|
|
245
|
+
- app/assets/stylesheets/reimagine2/mixins/_bold.sass
|
|
246
|
+
- app/assets/stylesheets/reimagine2/reimagine1/_reset_row.sass
|
|
247
|
+
- app/views/layout/reimagine2/_typekit.html.erb
|
|
248
|
+
- app/views/reimagine2/_accessible_custom_select.html.erb
|
|
249
|
+
- app/views/reimagine2/_twelve_columns.html.erb
|
|
250
|
+
- app/views/reimagine2/challengepost/_footer.html.erb
|
|
251
|
+
- lib/reimagine2.rb
|
|
252
|
+
- lib/reimagine2/engine.rb
|
|
253
|
+
- lib/reimagine2/version.rb
|
|
254
|
+
- reimagine2.gemspec
|
|
255
|
+
- spec/acceptance/acceptance_helper.rb
|
|
256
|
+
- spec/acceptance/reimagine2_integration_spec.rb
|
|
257
|
+
- spec/acceptance/shared_views_spec.rb
|
|
258
|
+
- spec/dummy/Rakefile
|
|
259
|
+
- spec/dummy/app/assets/javascripts/application.js
|
|
260
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
|
261
|
+
- spec/dummy/app/assets/stylesheets/reimagine2/_foundation_and_overrides.sass
|
|
262
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
263
|
+
- spec/dummy/app/controllers/shared_views_controller.rb
|
|
264
|
+
- spec/dummy/app/views/application/buttons.html.erb
|
|
265
|
+
- spec/dummy/app/views/application/forms.html.erb
|
|
266
|
+
- spec/dummy/app/views/application/show.html.erb
|
|
267
|
+
- spec/dummy/app/views/application/tabs.html.erb
|
|
268
|
+
- spec/dummy/app/views/application/type.html.erb
|
|
269
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
270
|
+
- spec/dummy/app/views/shared_views/large_12.html.erb
|
|
271
|
+
- spec/dummy/config.ru
|
|
272
|
+
- spec/dummy/config/application.rb
|
|
273
|
+
- spec/dummy/config/boot.rb
|
|
274
|
+
- spec/dummy/config/environment.rb
|
|
275
|
+
- spec/dummy/config/environments/development.rb
|
|
276
|
+
- spec/dummy/config/environments/test.rb
|
|
277
|
+
- spec/dummy/config/initializers/secret_token.rb
|
|
278
|
+
- spec/dummy/config/initializers/session_store.rb
|
|
279
|
+
- spec/dummy/config/routes.rb
|
|
280
|
+
- spec/dummy/log/.gitkeep
|
|
281
|
+
- spec/dummy/public/doc1.html
|
|
282
|
+
- spec/dummy/public/doc2.html
|
|
283
|
+
- spec/dummy/script/rails
|
|
284
|
+
- spec/spec_helper.rb
|
|
285
|
+
- vendor/assets/stylesheets/_normalize.scss
|
|
286
|
+
homepage: http://challengepost.com
|
|
287
|
+
licenses: []
|
|
288
|
+
metadata: {}
|
|
289
|
+
post_install_message:
|
|
290
|
+
rdoc_options: []
|
|
291
|
+
require_paths:
|
|
292
|
+
- lib
|
|
293
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
294
|
+
requirements:
|
|
295
|
+
- - '>='
|
|
296
|
+
- !ruby/object:Gem::Version
|
|
297
|
+
version: '0'
|
|
298
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
299
|
+
requirements:
|
|
300
|
+
- - '>='
|
|
301
|
+
- !ruby/object:Gem::Version
|
|
302
|
+
version: '0'
|
|
303
|
+
requirements: []
|
|
304
|
+
rubyforge_project:
|
|
305
|
+
rubygems_version: 2.0.3
|
|
306
|
+
signing_key:
|
|
307
|
+
specification_version: 4
|
|
308
|
+
summary: An assets gem
|
|
309
|
+
test_files:
|
|
310
|
+
- spec/acceptance/acceptance_helper.rb
|
|
311
|
+
- spec/acceptance/reimagine2_integration_spec.rb
|
|
312
|
+
- spec/acceptance/shared_views_spec.rb
|
|
313
|
+
- spec/dummy/Rakefile
|
|
314
|
+
- spec/dummy/app/assets/javascripts/application.js
|
|
315
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
|
316
|
+
- spec/dummy/app/assets/stylesheets/reimagine2/_foundation_and_overrides.sass
|
|
317
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
318
|
+
- spec/dummy/app/controllers/shared_views_controller.rb
|
|
319
|
+
- spec/dummy/app/views/application/buttons.html.erb
|
|
320
|
+
- spec/dummy/app/views/application/forms.html.erb
|
|
321
|
+
- spec/dummy/app/views/application/show.html.erb
|
|
322
|
+
- spec/dummy/app/views/application/tabs.html.erb
|
|
323
|
+
- spec/dummy/app/views/application/type.html.erb
|
|
324
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
325
|
+
- spec/dummy/app/views/shared_views/large_12.html.erb
|
|
326
|
+
- spec/dummy/config.ru
|
|
327
|
+
- spec/dummy/config/application.rb
|
|
328
|
+
- spec/dummy/config/boot.rb
|
|
329
|
+
- spec/dummy/config/environment.rb
|
|
330
|
+
- spec/dummy/config/environments/development.rb
|
|
331
|
+
- spec/dummy/config/environments/test.rb
|
|
332
|
+
- spec/dummy/config/initializers/secret_token.rb
|
|
333
|
+
- spec/dummy/config/initializers/session_store.rb
|
|
334
|
+
- spec/dummy/config/routes.rb
|
|
335
|
+
- spec/dummy/log/.gitkeep
|
|
336
|
+
- spec/dummy/public/doc1.html
|
|
337
|
+
- spec/dummy/public/doc2.html
|
|
338
|
+
- spec/dummy/script/rails
|
|
339
|
+
- spec/spec_helper.rb
|