rail_pass 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +20 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/rail_pass/application.js +15 -0
  5. data/app/assets/stylesheets/rail_pass/application.css +13 -0
  6. data/app/controllers/rail_pass/application_controller.rb +4 -0
  7. data/app/controllers/rail_pass/styleguide_controller.rb +7 -0
  8. data/app/helpers/rail_pass/application_helper.rb +4 -0
  9. data/app/views/rail_pass/styleguide/index.html.haml +104 -0
  10. data/config/routes.rb +3 -0
  11. data/lib/generators/rail_pass/install_generator.rb +220 -0
  12. data/lib/generators/templates/Procfile +1 -0
  13. data/lib/generators/templates/app/assets/javascripts/application.js +17 -0
  14. data/lib/generators/templates/app/assets/javascripts/html5.js +14 -0
  15. data/lib/generators/templates/app/assets/javascripts/polyfills.js +14 -0
  16. data/lib/generators/templates/app/assets/javascripts/responsive.js +14 -0
  17. data/lib/generators/templates/app/assets/javascripts/scripts.js.coffee +0 -0
  18. data/lib/generators/templates/app/assets/stylesheets/application.css.scss +26 -0
  19. data/lib/generators/templates/app/assets/stylesheets/base/_colors.scss +1 -0
  20. data/lib/generators/templates/app/assets/stylesheets/base/_defaults.scss +27 -0
  21. data/lib/generators/templates/app/assets/stylesheets/base/_forms.scss +0 -0
  22. data/lib/generators/templates/app/assets/stylesheets/base/_settings.scss +0 -0
  23. data/lib/generators/templates/app/assets/stylesheets/base/_typography.scss +3 -0
  24. data/lib/generators/templates/app/assets/stylesheets/layout/_containers.scss +18 -0
  25. data/lib/generators/templates/app/assets/stylesheets/layout/_footer.scss +1 -0
  26. data/lib/generators/templates/app/assets/stylesheets/layout/_header.scss +1 -0
  27. data/lib/generators/templates/app/assets/stylesheets/layout/_settings.scss +1 -0
  28. data/lib/generators/templates/app/assets/stylesheets/modules/_buttons.scss +15 -0
  29. data/lib/generators/templates/app/controllers/pages_controller.rb +2 -0
  30. data/lib/generators/templates/app/helpers/application_helper.rb +87 -0
  31. data/lib/generators/templates/app/views/errors/404.html.haml +3 -0
  32. data/lib/generators/templates/app/views/layouts/application.html.haml +124 -0
  33. data/lib/generators/templates/app/views/pages/index.html.haml +0 -0
  34. data/lib/generators/templates/config/deploy.rb +34 -0
  35. data/lib/generators/templates/config/initializers/dev_environment.rb +6 -0
  36. data/lib/generators/templates/config/initializers/new_relic.rb +5 -0
  37. data/lib/generators/templates/config/mongoid.yml +68 -0
  38. data/lib/generators/templates/config/newrelic.yml +255 -0
  39. data/lib/generators/templates/config/recipes/base.rb +86 -0
  40. data/lib/generators/templates/config/recipes/check.rb +13 -0
  41. data/lib/generators/templates/config/recipes/mongodb/install-outdated.rb +41 -0
  42. data/lib/generators/templates/config/recipes/mongodb/install.rb +45 -0
  43. data/lib/generators/templates/config/recipes/mongodb/manage.rb +27 -0
  44. data/lib/generators/templates/config/recipes/mongodb.rb +73 -0
  45. data/lib/generators/templates/config/recipes/mysql.rb +152 -0
  46. data/lib/generators/templates/config/recipes/nginx.rb +25 -0
  47. data/lib/generators/templates/config/recipes/nodejs.rb +9 -0
  48. data/lib/generators/templates/config/recipes/postgresql.rb +34 -0
  49. data/lib/generators/templates/config/recipes/rbenv.rb +29 -0
  50. data/lib/generators/templates/config/recipes/redis.rb +18 -0
  51. data/lib/generators/templates/config/recipes/ruby.rb +93 -0
  52. data/lib/generators/templates/config/recipes/templates/foreman.erb +2 -0
  53. data/lib/generators/templates/config/recipes/templates/gitlab.yml.erb +29 -0
  54. data/lib/generators/templates/config/recipes/templates/mongoid.yml.erb +10 -0
  55. data/lib/generators/templates/config/recipes/templates/mysql.yml.erb +7 -0
  56. data/lib/generators/templates/config/recipes/templates/nginx_unicorn.erb +27 -0
  57. data/lib/generators/templates/config/recipes/templates/postgresql.yml.erb +8 -0
  58. data/lib/generators/templates/config/recipes/templates/unicorn.rb.erb +8 -0
  59. data/lib/generators/templates/config/recipes/templates/unicorn_init.erb +84 -0
  60. data/lib/generators/templates/config/recipes/unicorn.rb +28 -0
  61. data/lib/generators/templates/config/recipes/utilities.rb +144 -0
  62. data/lib/generators/templates/config/unicorn.rb +2 -0
  63. data/lib/generators/templates/public/422.html +54 -0
  64. data/lib/generators/templates/public/500.html +54 -0
  65. data/lib/generators/templates/spec/spec_helper.rb +41 -0
  66. data/lib/generators/templates/vendor/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
  67. data/lib/generators/templates/vendor/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
  68. data/lib/generators/templates/vendor/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
  69. data/lib/generators/templates/vendor/assets/fonts/icomoon/icomoon.eot +0 -0
  70. data/lib/generators/templates/vendor/assets/fonts/icomoon/icomoon.svg +36 -0
  71. data/lib/generators/templates/vendor/assets/fonts/icomoon/icomoon.ttf +0 -0
  72. data/lib/generators/templates/vendor/assets/fonts/icomoon/icomoon.woff +0 -0
  73. data/lib/generators/templates/vendor/assets/javascripts/jquery.ui.touch-punch.min.js +11 -0
  74. data/lib/generators/templates/vendor/assets/javascripts/polyfills/html5shim.js +3 -0
  75. data/lib/generators/templates/vendor/assets/javascripts/polyfills/modernizr.js +4 -0
  76. data/lib/generators/templates/vendor/assets/javascripts/polyfills/respond.js +15 -0
  77. data/lib/generators/templates/vendor/assets/javascripts/polyfills/selectivizr.js +560 -0
  78. data/lib/generators/templates/vendor/assets/stylesheets/font-awesome.scss +493 -0
  79. data/lib/generators/templates/vendor/assets/stylesheets/icomoon.scss +22 -0
  80. data/lib/rail_pass/engine.rb +5 -0
  81. data/lib/rail_pass/version.rb +3 -0
  82. data/lib/rail_pass.rb +4 -0
  83. data/lib/tasks/rail_pass_tasks.rake +4 -0
  84. metadata +146 -0
@@ -0,0 +1,493 @@
1
+ /* Font Awesome 3.0
2
+ the iconic font designed for use with Twitter Bootstrap
3
+ -------------------------------------------------------
4
+ The full suite of pictographic icons, examples, and documentation
5
+ can be found at: http://fortawesome.github.com/Font-Awesome/
6
+
7
+ License
8
+ -------------------------------------------------------
9
+ • The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
10
+ • Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
11
+ http://opensource.org/licenses/mit-license.html
12
+ • The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
13
+ • Attribution is no longer required in Font Awesome 3.0, but much appreciated:
14
+ "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
15
+
16
+ Contact
17
+ -------------------------------------------------------
18
+ Email: dave@davegandy.com
19
+ Twitter: http://twitter.com/fortaweso_me
20
+ Work: Lead Product Designer @ http://kyruus.com
21
+
22
+ */
23
+
24
+ $borderColor: #eee;
25
+ $iconMuted: #eee;
26
+ @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; border-radius: $radius; }
27
+
28
+
29
+ @include font-face(
30
+ 'FontAwesome',
31
+ font-path('fontawesome/fontawesome-webfont')
32
+ );
33
+
34
+ /* Font Awesome styles
35
+ ------------------------------------------------------- */
36
+ /* includes sprites.less reset */
37
+ [class^="icon-"],
38
+ [class*=" icon-"] {
39
+ font-family: FontAwesome;
40
+ font-weight: normal;
41
+ font-style: normal;
42
+ text-decoration: inherit;
43
+ display: inline;
44
+ width: auto;
45
+ height: auto;
46
+ line-height: normal;
47
+ vertical-align: baseline;
48
+ background-image: none !important;
49
+ background-position: 0% 0%;
50
+ background-repeat: repeat;
51
+ }
52
+
53
+ [class^="icon-"]:before,
54
+ [class*=" icon-"]:before {
55
+ text-decoration: inherit;
56
+ display: inline-block;
57
+ speak: none;
58
+ }
59
+
60
+ /* makes sure icons active on rollover in links */
61
+ a {
62
+ [class^="icon-"],
63
+ [class*=" icon-"] {
64
+ display: inline-block;
65
+ }
66
+ }
67
+
68
+ /* makes the font 33% larger relative to the icon container */
69
+ .icon-large:before {
70
+ vertical-align: -10%;
71
+ font-size: 1.3333333333333333em;
72
+ }
73
+
74
+ .btn, .nav {
75
+ [class^="icon-"],
76
+ [class*=" icon-"] {
77
+ display: inline;
78
+ /* keeps button heights with and without icons the same */
79
+ line-height: .6em;
80
+ &.icon-spin {
81
+ display: inline-block;
82
+ }
83
+ }
84
+ }
85
+
86
+ li {
87
+ [class^="icon-"],
88
+ [class*=" icon-"] {
89
+ display: inline-block;
90
+ width: 1.25em;
91
+ text-align: center;
92
+ &.icon-large {
93
+ /* increased font size for icon-large */
94
+ width: 1.25*1.25em;
95
+ }
96
+ }
97
+ }
98
+
99
+ ul.icons {
100
+ list-style-type: none;
101
+ text-indent: -.75em;
102
+
103
+ li {
104
+ [class^="icon-"],
105
+ [class*=" icon-"] {
106
+ width: .75em;
107
+ }
108
+ }
109
+ }
110
+
111
+ .icon-muted {
112
+ color: $iconMuted;
113
+ }
114
+
115
+ // Icon Borders
116
+ // -------------------------
117
+
118
+ .icon-border {
119
+ border: solid 1px $borderColor;
120
+ padding: .2em .25em .15em;
121
+ @include border-radius(3px);
122
+ }
123
+
124
+ // Icon Sizes
125
+ // -------------------------
126
+
127
+ .icon-2x {
128
+ font-size: 2em;
129
+ &.icon-border {
130
+ border-width: 2px;
131
+ @include border-radius(4px);
132
+ }
133
+ }
134
+ .icon-3x {
135
+ font-size: 3em;
136
+ &.icon-border {
137
+ border-width: 3px;
138
+ @include border-radius(5px);
139
+ }
140
+ }
141
+ .icon-4x {
142
+ font-size: 4em;
143
+ &.icon-border {
144
+ border-width: 4px;
145
+ @include border-radius(6px);
146
+ }
147
+ }
148
+
149
+ // Floats
150
+ // -------------------------
151
+
152
+ // Quick floats
153
+ .pull-right { float: right; }
154
+ .pull-left { float: left; }
155
+
156
+ [class^="icon-"],
157
+ [class*=" icon-"] {
158
+ &.pull-left {
159
+ margin-right: .35em;
160
+ }
161
+ &.pull-right {
162
+ margin-left: .35em;
163
+ }
164
+ }
165
+
166
+ .btn {
167
+ [class^="icon-"],
168
+ [class*=" icon-"] {
169
+ &.pull-left, &.pull-right {
170
+ &.icon-2x { margin-top: .35em; }
171
+ }
172
+ &.icon-spin.icon-large { height: .75em; }
173
+ }
174
+ }
175
+
176
+ .btn.btn-small {
177
+ [class^="icon-"],
178
+ [class*=" icon-"] {
179
+ &.pull-left, &.pull-right {
180
+ &.icon-2x { margin-top: .45em; }
181
+ }
182
+ }
183
+ }
184
+
185
+ .btn.btn-large {
186
+ [class^="icon-"],
187
+ [class*=" icon-"] {
188
+ &.pull-left, &.pull-right {
189
+ &.icon-2x { margin-top: .2em; }
190
+ }
191
+ }
192
+ }
193
+
194
+
195
+ .icon-spin {
196
+ display: inline-block;
197
+ -moz-animation: spin 2s infinite linear;
198
+ -o-animation: spin 2s infinite linear;
199
+ -webkit-animation: spin 2s infinite linear;
200
+ animation: spin 2s infinite linear;
201
+ }
202
+
203
+ @-moz-keyframes spin {
204
+ 0% { -moz-transform: rotate(0deg); }
205
+ 100% { -moz-transform: rotate(359deg); }
206
+ }
207
+ @-webkit-keyframes spin {
208
+ 0% { -webkit-transform: rotate(0deg); }
209
+ 100% { -webkit-transform: rotate(359deg); }
210
+ }
211
+ @-o-keyframes spin {
212
+ 0% { -o-transform: rotate(0deg); }
213
+ 100% { -o-transform: rotate(359deg); }
214
+ }
215
+ @-ms-keyframes spin {
216
+ 0% { -ms-transform: rotate(0deg); }
217
+ 100% { -ms-transform: rotate(359deg); }
218
+ }
219
+ @keyframes spin {
220
+ 0% { transform: rotate(0deg); }
221
+ 100% { transform: rotate(359deg); }
222
+ }
223
+
224
+
225
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
226
+ readers do not read off random characters that represent icons */
227
+ .icon-glass:before { content: "\f000"; }
228
+ .icon-music:before { content: "\f001"; }
229
+ .icon-search:before { content: "\f002"; }
230
+ .icon-envelope:before { content: "\f003"; }
231
+ .icon-heart:before { content: "\f004"; }
232
+ .icon-star:before { content: "\f005"; }
233
+ .icon-star-empty:before { content: "\f006"; }
234
+ .icon-user:before { content: "\f007"; }
235
+ .icon-film:before { content: "\f008"; }
236
+ .icon-th-large:before { content: "\f009"; }
237
+ .icon-th:before { content: "\f00a"; }
238
+ .icon-th-list:before { content: "\f00b"; }
239
+ .icon-ok:before { content: "\f00c"; }
240
+ .icon-remove:before { content: "\f00d"; }
241
+ .icon-zoom-in:before { content: "\f00e"; }
242
+
243
+ .icon-zoom-out:before { content: "\f010"; }
244
+ .icon-off:before { content: "\f011"; }
245
+ .icon-signal:before { content: "\f012"; }
246
+ .icon-cog:before { content: "\f013"; }
247
+ .icon-trash:before { content: "\f014"; }
248
+ .icon-home:before { content: "\f015"; }
249
+ .icon-file:before { content: "\f016"; }
250
+ .icon-time:before { content: "\f017"; }
251
+ .icon-road:before { content: "\f018"; }
252
+ .icon-download-alt:before { content: "\f019"; }
253
+ .icon-download:before { content: "\f01a"; }
254
+ .icon-upload:before { content: "\f01b"; }
255
+ .icon-inbox:before { content: "\f01c"; }
256
+ .icon-play-circle:before { content: "\f01d"; }
257
+ .icon-repeat:before { content: "\f01e"; }
258
+
259
+ /* \f020 doesn't work in Safari. all shifted one down */
260
+ .icon-refresh:before { content: "\f021"; }
261
+ .icon-list-alt:before { content: "\f022"; }
262
+ .icon-lock:before { content: "\f023"; }
263
+ .icon-flag:before { content: "\f024"; }
264
+ .icon-headphones:before { content: "\f025"; }
265
+ .icon-volume-off:before { content: "\f026"; }
266
+ .icon-volume-down:before { content: "\f027"; }
267
+ .icon-volume-up:before { content: "\f028"; }
268
+ .icon-qrcode:before { content: "\f029"; }
269
+ .icon-barcode:before { content: "\f02a"; }
270
+ .icon-tag:before { content: "\f02b"; }
271
+ .icon-tags:before { content: "\f02c"; }
272
+ .icon-book:before { content: "\f02d"; }
273
+ .icon-bookmark:before { content: "\f02e"; }
274
+ .icon-print:before { content: "\f02f"; }
275
+
276
+ .icon-camera:before { content: "\f030"; }
277
+ .icon-font:before { content: "\f031"; }
278
+ .icon-bold:before { content: "\f032"; }
279
+ .icon-italic:before { content: "\f033"; }
280
+ .icon-text-height:before { content: "\f034"; }
281
+ .icon-text-width:before { content: "\f035"; }
282
+ .icon-align-left:before { content: "\f036"; }
283
+ .icon-align-center:before { content: "\f037"; }
284
+ .icon-align-right:before { content: "\f038"; }
285
+ .icon-align-justify:before { content: "\f039"; }
286
+ .icon-list:before { content: "\f03a"; }
287
+ .icon-indent-left:before { content: "\f03b"; }
288
+ .icon-indent-right:before { content: "\f03c"; }
289
+ .icon-facetime-video:before { content: "\f03d"; }
290
+ .icon-picture:before { content: "\f03e"; }
291
+
292
+ .icon-pencil:before { content: "\f040"; }
293
+ .icon-map-marker:before { content: "\f041"; }
294
+ .icon-adjust:before { content: "\f042"; }
295
+ .icon-tint:before { content: "\f043"; }
296
+ .icon-edit:before { content: "\f044"; }
297
+ .icon-share:before { content: "\f045"; }
298
+ .icon-check:before { content: "\f046"; }
299
+ .icon-move:before { content: "\f047"; }
300
+ .icon-step-backward:before { content: "\f048"; }
301
+ .icon-fast-backward:before { content: "\f049"; }
302
+ .icon-backward:before { content: "\f04a"; }
303
+ .icon-play:before { content: "\f04b"; }
304
+ .icon-pause:before { content: "\f04c"; }
305
+ .icon-stop:before { content: "\f04d"; }
306
+ .icon-forward:before { content: "\f04e"; }
307
+
308
+ .icon-fast-forward:before { content: "\f050"; }
309
+ .icon-step-forward:before { content: "\f051"; }
310
+ .icon-eject:before { content: "\f052"; }
311
+ .icon-chevron-left:before { content: "\f053"; }
312
+ .icon-chevron-right:before { content: "\f054"; }
313
+ .icon-plus-sign:before { content: "\f055"; }
314
+ .icon-minus-sign:before { content: "\f056"; }
315
+ .icon-remove-sign:before { content: "\f057"; }
316
+ .icon-ok-sign:before { content: "\f058"; }
317
+ .icon-question-sign:before { content: "\f059"; }
318
+ .icon-info-sign:before { content: "\f05a"; }
319
+ .icon-screenshot:before { content: "\f05b"; }
320
+ .icon-remove-circle:before { content: "\f05c"; }
321
+ .icon-ok-circle:before { content: "\f05d"; }
322
+ .icon-ban-circle:before { content: "\f05e"; }
323
+
324
+ .icon-arrow-left:before { content: "\f060"; }
325
+ .icon-arrow-right:before { content: "\f061"; }
326
+ .icon-arrow-up:before { content: "\f062"; }
327
+ .icon-arrow-down:before { content: "\f063"; }
328
+ .icon-share-alt:before { content: "\f064"; }
329
+ .icon-resize-full:before { content: "\f065"; }
330
+ .icon-resize-small:before { content: "\f066"; }
331
+ .icon-plus:before { content: "\f067"; }
332
+ .icon-minus:before { content: "\f068"; }
333
+ .icon-asterisk:before { content: "\f069"; }
334
+ .icon-exclamation-sign:before { content: "\f06a"; }
335
+ .icon-gift:before { content: "\f06b"; }
336
+ .icon-leaf:before { content: "\f06c"; }
337
+ .icon-fire:before { content: "\f06d"; }
338
+ .icon-eye-open:before { content: "\f06e"; }
339
+
340
+ .icon-eye-close:before { content: "\f070"; }
341
+ .icon-warning-sign:before { content: "\f071"; }
342
+ .icon-plane:before { content: "\f072"; }
343
+ .icon-calendar:before { content: "\f073"; }
344
+ .icon-random:before { content: "\f074"; }
345
+ .icon-comment:before { content: "\f075"; }
346
+ .icon-magnet:before { content: "\f076"; }
347
+ .icon-chevron-up:before { content: "\f077"; }
348
+ .icon-chevron-down:before { content: "\f078"; }
349
+ .icon-retweet:before { content: "\f079"; }
350
+ .icon-shopping-cart:before { content: "\f07a"; }
351
+ .icon-folder-close:before { content: "\f07b"; }
352
+ .icon-folder-open:before { content: "\f07c"; }
353
+ .icon-resize-vertical:before { content: "\f07d"; }
354
+ .icon-resize-horizontal:before { content: "\f07e"; }
355
+
356
+ .icon-bar-chart:before { content: "\f080"; }
357
+ .icon-twitter-sign:before { content: "\f081"; }
358
+ .icon-facebook-sign:before { content: "\f082"; }
359
+ .icon-camera-retro:before { content: "\f083"; }
360
+ .icon-key:before { content: "\f084"; }
361
+ .icon-cogs:before { content: "\f085"; }
362
+ .icon-comments:before { content: "\f086"; }
363
+ .icon-thumbs-up:before { content: "\f087"; }
364
+ .icon-thumbs-down:before { content: "\f088"; }
365
+ .icon-star-half:before { content: "\f089"; }
366
+ .icon-heart-empty:before { content: "\f08a"; }
367
+ .icon-signout:before { content: "\f08b"; }
368
+ .icon-linkedin-sign:before { content: "\f08c"; }
369
+ .icon-pushpin:before { content: "\f08d"; }
370
+ .icon-external-link:before { content: "\f08e"; }
371
+
372
+ .icon-signin:before { content: "\f090"; }
373
+ .icon-trophy:before { content: "\f091"; }
374
+ .icon-github-sign:before { content: "\f092"; }
375
+ .icon-upload-alt:before { content: "\f093"; }
376
+ .icon-lemon:before { content: "\f094"; }
377
+ .icon-phone:before { content: "\f095"; }
378
+ .icon-check-empty:before { content: "\f096"; }
379
+ .icon-bookmark-empty:before { content: "\f097"; }
380
+ .icon-phone-sign:before { content: "\f098"; }
381
+ .icon-twitter:before { content: "\f099"; }
382
+ .icon-facebook:before { content: "\f09a"; }
383
+ .icon-github:before { content: "\f09b"; }
384
+ .icon-unlock:before { content: "\f09c"; }
385
+ .icon-credit-card:before { content: "\f09d"; }
386
+ .icon-rss:before { content: "\f09e"; }
387
+
388
+ .icon-hdd:before { content: "\f0a0"; }
389
+ .icon-bullhorn:before { content: "\f0a1"; }
390
+ .icon-bell:before { content: "\f0a2"; }
391
+ .icon-certificate:before { content: "\f0a3"; }
392
+ .icon-hand-right:before { content: "\f0a4"; }
393
+ .icon-hand-left:before { content: "\f0a5"; }
394
+ .icon-hand-up:before { content: "\f0a6"; }
395
+ .icon-hand-down:before { content: "\f0a7"; }
396
+ .icon-circle-arrow-left:before { content: "\f0a8"; }
397
+ .icon-circle-arrow-right:before { content: "\f0a9"; }
398
+ .icon-circle-arrow-up:before { content: "\f0aa"; }
399
+ .icon-circle-arrow-down:before { content: "\f0ab"; }
400
+ .icon-globe:before { content: "\f0ac"; }
401
+ .icon-wrench:before { content: "\f0ad"; }
402
+ .icon-tasks:before { content: "\f0ae"; }
403
+
404
+ .icon-filter:before { content: "\f0b0"; }
405
+ .icon-briefcase:before { content: "\f0b1"; }
406
+ .icon-fullscreen:before { content: "\f0b2"; }
407
+
408
+ .icon-group:before { content: "\f0c0"; }
409
+ .icon-link:before { content: "\f0c1"; }
410
+ .icon-cloud:before { content: "\f0c2"; }
411
+ .icon-beaker:before { content: "\f0c3"; }
412
+ .icon-cut:before { content: "\f0c4"; }
413
+ .icon-copy:before { content: "\f0c5"; }
414
+ .icon-paper-clip:before { content: "\f0c6"; }
415
+ .icon-save:before { content: "\f0c7"; }
416
+ .icon-sign-blank:before { content: "\f0c8"; }
417
+ .icon-reorder:before { content: "\f0c9"; }
418
+ .icon-list-ul:before { content: "\f0ca"; }
419
+ .icon-list-ol:before { content: "\f0cb"; }
420
+ .icon-strikethrough:before { content: "\f0cc"; }
421
+ .icon-underline:before { content: "\f0cd"; }
422
+ .icon-table:before { content: "\f0ce"; }
423
+
424
+ .icon-magic:before { content: "\f0d0"; }
425
+ .icon-truck:before { content: "\f0d1"; }
426
+ .icon-pinterest:before { content: "\f0d2"; }
427
+ .icon-pinterest-sign:before { content: "\f0d3"; }
428
+ .icon-google-plus-sign:before { content: "\f0d4"; }
429
+ .icon-google-plus:before { content: "\f0d5"; }
430
+ .icon-money:before { content: "\f0d6"; }
431
+ .icon-caret-down:before { content: "\f0d7"; }
432
+ .icon-caret-up:before { content: "\f0d8"; }
433
+ .icon-caret-left:before { content: "\f0d9"; }
434
+ .icon-caret-right:before { content: "\f0da"; }
435
+ .icon-columns:before { content: "\f0db"; }
436
+ .icon-sort:before { content: "\f0dc"; }
437
+ .icon-sort-down:before { content: "\f0dd"; }
438
+ .icon-sort-up:before { content: "\f0de"; }
439
+
440
+ .icon-envelope-alt:before { content: "\f0e0"; }
441
+ .icon-linkedin:before { content: "\f0e1"; }
442
+ .icon-undo:before { content: "\f0e2"; }
443
+ .icon-legal:before { content: "\f0e3"; }
444
+ .icon-dashboard:before { content: "\f0e4"; }
445
+ .icon-comment-alt:before { content: "\f0e5"; }
446
+ .icon-comments-alt:before { content: "\f0e6"; }
447
+ .icon-bolt:before { content: "\f0e7"; }
448
+ .icon-sitemap:before { content: "\f0e8"; }
449
+ .icon-umbrella:before { content: "\f0e9"; }
450
+ .icon-paste:before { content: "\f0ea"; }
451
+ .icon-lightbulb:before { content: "\f0eb"; }
452
+ .icon-exchange:before { content: "\f0ec"; }
453
+ .icon-cloud-download:before { content: "\f0ed"; }
454
+ .icon-cloud-upload:before { content: "\f0ee"; }
455
+
456
+ .icon-user-md:before { content: "\f0f0"; }
457
+ .icon-stethoscope:before { content: "\f0f1"; }
458
+ .icon-suitcase:before { content: "\f0f2"; }
459
+ .icon-bell-alt:before { content: "\f0f3"; }
460
+ .icon-coffee:before { content: "\f0f4"; }
461
+ .icon-food:before { content: "\f0f5"; }
462
+ .icon-file-alt:before { content: "\f0f6"; }
463
+ .icon-building:before { content: "\f0f7"; }
464
+ .icon-hospital:before { content: "\f0f8"; }
465
+ .icon-ambulance:before { content: "\f0f9"; }
466
+ .icon-medkit:before { content: "\f0fa"; }
467
+ .icon-fighter-jet:before { content: "\f0fb"; }
468
+ .icon-beer:before { content: "\f0fc"; }
469
+ .icon-h-sign:before { content: "\f0fd"; }
470
+ .icon-plus-sign-alt:before { content: "\f0fe"; }
471
+
472
+ .icon-double-angle-left:before { content: "\f100"; }
473
+ .icon-double-angle-right:before { content: "\f101"; }
474
+ .icon-double-angle-up:before { content: "\f102"; }
475
+ .icon-double-angle-down:before { content: "\f103"; }
476
+ .icon-angle-left:before { content: "\f104"; }
477
+ .icon-angle-right:before { content: "\f105"; }
478
+ .icon-angle-up:before { content: "\f106"; }
479
+ .icon-angle-down:before { content: "\f107"; }
480
+ .icon-desktop:before { content: "\f108"; }
481
+ .icon-laptop:before { content: "\f109"; }
482
+ .icon-tablet:before { content: "\f10a"; }
483
+ .icon-mobile-phone:before { content: "\f10b"; }
484
+ .icon-circle-blank:before { content: "\f10c"; }
485
+ .icon-quote-left:before { content: "\f10d"; }
486
+ .icon-quote-right:before { content: "\f10e"; }
487
+
488
+ .icon-spinner:before { content: "\f110"; }
489
+ .icon-circle:before { content: "\f111"; }
490
+ .icon-reply:before { content: "\f112"; }
491
+ .icon-github-alt:before { content: "\f113"; }
492
+ .icon-folder-close-alt:before { content: "\f114"; }
493
+ .icon-folder-open-alt:before { content: "\f115"; }
@@ -0,0 +1,22 @@
1
+ /* IcoMoon -- Icon Font
2
+ */
3
+
4
+ @include font-face(
5
+ 'icomoon',
6
+ font-path('icomoon/icomoon')
7
+ );
8
+
9
+ [data-icon]:before {
10
+ font-family: 'icomoon';
11
+ content: attr(data-icon);
12
+ speak: none;
13
+ font-weight: normal;
14
+ line-height: 1;
15
+ display: inline-block;
16
+ -webkit-font-smoothing: antialiased;
17
+ font-style: normal;
18
+ }
19
+
20
+ [data-icon]{
21
+ display: inline-block;
22
+ }
@@ -0,0 +1,5 @@
1
+ module RailPass
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace RailPass
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module RailPass
2
+ VERSION = "0.1.1"
3
+ end
data/lib/rail_pass.rb ADDED
@@ -0,0 +1,4 @@
1
+ require "rail_pass/engine"
2
+
3
+ module RailPass
4
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :rail_pass do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,146 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rail_pass
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Michael LaCroix
9
+ - James LaCroix
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2013-01-15 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rails
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 3.2.11
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ version: 3.2.11
31
+ description: Rail Pass is a Ruby on Rails engine to configure new projects with the
32
+ default settings and templates used at LaCroix Design Co.
33
+ email:
34
+ - info@lacroixdesign.net
35
+ executables: []
36
+ extensions: []
37
+ extra_rdoc_files: []
38
+ files:
39
+ - app/assets/javascripts/rail_pass/application.js
40
+ - app/assets/stylesheets/rail_pass/application.css
41
+ - app/controllers/rail_pass/application_controller.rb
42
+ - app/controllers/rail_pass/styleguide_controller.rb
43
+ - app/helpers/rail_pass/application_helper.rb
44
+ - app/views/rail_pass/styleguide/index.html.haml
45
+ - config/routes.rb
46
+ - lib/generators/rail_pass/install_generator.rb
47
+ - lib/generators/templates/app/assets/javascripts/application.js
48
+ - lib/generators/templates/app/assets/javascripts/html5.js
49
+ - lib/generators/templates/app/assets/javascripts/polyfills.js
50
+ - lib/generators/templates/app/assets/javascripts/responsive.js
51
+ - lib/generators/templates/app/assets/javascripts/scripts.js.coffee
52
+ - lib/generators/templates/app/assets/stylesheets/application.css.scss
53
+ - lib/generators/templates/app/assets/stylesheets/base/_colors.scss
54
+ - lib/generators/templates/app/assets/stylesheets/base/_defaults.scss
55
+ - lib/generators/templates/app/assets/stylesheets/base/_forms.scss
56
+ - lib/generators/templates/app/assets/stylesheets/base/_settings.scss
57
+ - lib/generators/templates/app/assets/stylesheets/base/_typography.scss
58
+ - lib/generators/templates/app/assets/stylesheets/layout/_containers.scss
59
+ - lib/generators/templates/app/assets/stylesheets/layout/_footer.scss
60
+ - lib/generators/templates/app/assets/stylesheets/layout/_header.scss
61
+ - lib/generators/templates/app/assets/stylesheets/layout/_settings.scss
62
+ - lib/generators/templates/app/assets/stylesheets/modules/_buttons.scss
63
+ - lib/generators/templates/app/controllers/pages_controller.rb
64
+ - lib/generators/templates/app/helpers/application_helper.rb
65
+ - lib/generators/templates/app/views/errors/404.html.haml
66
+ - lib/generators/templates/app/views/layouts/application.html.haml
67
+ - lib/generators/templates/app/views/pages/index.html.haml
68
+ - lib/generators/templates/config/deploy.rb
69
+ - lib/generators/templates/config/initializers/dev_environment.rb
70
+ - lib/generators/templates/config/initializers/new_relic.rb
71
+ - lib/generators/templates/config/mongoid.yml
72
+ - lib/generators/templates/config/newrelic.yml
73
+ - lib/generators/templates/config/recipes/base.rb
74
+ - lib/generators/templates/config/recipes/check.rb
75
+ - lib/generators/templates/config/recipes/mongodb/install-outdated.rb
76
+ - lib/generators/templates/config/recipes/mongodb/install.rb
77
+ - lib/generators/templates/config/recipes/mongodb/manage.rb
78
+ - lib/generators/templates/config/recipes/mongodb.rb
79
+ - lib/generators/templates/config/recipes/mysql.rb
80
+ - lib/generators/templates/config/recipes/nginx.rb
81
+ - lib/generators/templates/config/recipes/nodejs.rb
82
+ - lib/generators/templates/config/recipes/postgresql.rb
83
+ - lib/generators/templates/config/recipes/rbenv.rb
84
+ - lib/generators/templates/config/recipes/redis.rb
85
+ - lib/generators/templates/config/recipes/ruby.rb
86
+ - lib/generators/templates/config/recipes/templates/foreman.erb
87
+ - lib/generators/templates/config/recipes/templates/gitlab.yml.erb
88
+ - lib/generators/templates/config/recipes/templates/mongoid.yml.erb
89
+ - lib/generators/templates/config/recipes/templates/mysql.yml.erb
90
+ - lib/generators/templates/config/recipes/templates/nginx_unicorn.erb
91
+ - lib/generators/templates/config/recipes/templates/postgresql.yml.erb
92
+ - lib/generators/templates/config/recipes/templates/unicorn.rb.erb
93
+ - lib/generators/templates/config/recipes/templates/unicorn_init.erb
94
+ - lib/generators/templates/config/recipes/unicorn.rb
95
+ - lib/generators/templates/config/recipes/utilities.rb
96
+ - lib/generators/templates/config/unicorn.rb
97
+ - lib/generators/templates/Procfile
98
+ - lib/generators/templates/public/422.html
99
+ - lib/generators/templates/public/500.html
100
+ - lib/generators/templates/spec/spec_helper.rb
101
+ - lib/generators/templates/vendor/assets/fonts/fontawesome/fontawesome-webfont.eot
102
+ - lib/generators/templates/vendor/assets/fonts/fontawesome/fontawesome-webfont.ttf
103
+ - lib/generators/templates/vendor/assets/fonts/fontawesome/fontawesome-webfont.woff
104
+ - lib/generators/templates/vendor/assets/fonts/icomoon/icomoon.eot
105
+ - lib/generators/templates/vendor/assets/fonts/icomoon/icomoon.svg
106
+ - lib/generators/templates/vendor/assets/fonts/icomoon/icomoon.ttf
107
+ - lib/generators/templates/vendor/assets/fonts/icomoon/icomoon.woff
108
+ - lib/generators/templates/vendor/assets/javascripts/jquery.ui.touch-punch.min.js
109
+ - lib/generators/templates/vendor/assets/javascripts/polyfills/html5shim.js
110
+ - lib/generators/templates/vendor/assets/javascripts/polyfills/modernizr.js
111
+ - lib/generators/templates/vendor/assets/javascripts/polyfills/respond.js
112
+ - lib/generators/templates/vendor/assets/javascripts/polyfills/selectivizr.js
113
+ - lib/generators/templates/vendor/assets/stylesheets/font-awesome.scss
114
+ - lib/generators/templates/vendor/assets/stylesheets/icomoon.scss
115
+ - lib/rail_pass/engine.rb
116
+ - lib/rail_pass/version.rb
117
+ - lib/rail_pass.rb
118
+ - lib/tasks/rail_pass_tasks.rake
119
+ - MIT-LICENSE
120
+ - Rakefile
121
+ - README.md
122
+ homepage: https://github.com/lacroixdesign/rail_pass
123
+ licenses: []
124
+ post_install_message:
125
+ rdoc_options: []
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ required_rubygems_version: !ruby/object:Gem::Requirement
135
+ none: false
136
+ requirements:
137
+ - - ! '>='
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubyforge_project:
142
+ rubygems_version: 1.8.23
143
+ signing_key:
144
+ specification_version: 3
145
+ summary: Rail Pass is a Ruby on Rails engine to configure new projects.
146
+ test_files: []