sb-styleguide 0.0.9 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. data/.codoopts +10 -0
  2. data/.env +1 -0
  3. data/.gitignore +1 -0
  4. data/.ruby-version +1 -0
  5. data/Gemfile +10 -3
  6. data/Gemfile.lock +134 -94
  7. data/Procfile +1 -0
  8. data/README.md +3 -5
  9. data/Rakefile +3 -0
  10. data/app/assets/images/layouts/basic-marketing-site.png +0 -0
  11. data/app/assets/images/layouts/jumbotron-site.png +0 -0
  12. data/app/assets/javascripts/base.js.coffee +3 -0
  13. data/app/assets/javascripts/grids.js.coffee +3 -0
  14. data/app/assets/javascripts/javascript.js.coffee +3 -0
  15. data/app/assets/javascripts/modules.js.coffee +3 -0
  16. data/app/assets/stylesheets/application-old-ie.css.scss +11 -0
  17. data/app/assets/stylesheets/application.css.scss +33 -30
  18. data/app/assets/stylesheets/base/_all.scss +6 -0
  19. data/app/assets/stylesheets/base/_reset.css.scss +16 -0
  20. data/app/assets/stylesheets/base/_type.scss +16 -0
  21. data/app/assets/stylesheets/{coderay_githubish.css.scss → modules/_coderay.css.scss} +40 -0
  22. data/app/assets/stylesheets/modules/_layout_examples.css.scss +13 -0
  23. data/app/assets/stylesheets/modules/_webfont_table.css.scss +47 -0
  24. data/app/assets/stylesheets/vanilla-normal-old-ie.css.scss +11 -0
  25. data/app/assets/stylesheets/vanilla-normal.css.scss +33 -0
  26. data/app/controllers/application_controller.rb +2 -0
  27. data/app/controllers/base_controller.rb +52 -0
  28. data/app/controllers/grids_controller.rb +48 -0
  29. data/app/controllers/javascript_controller.rb +20 -0
  30. data/app/controllers/modules_controller.rb +43 -0
  31. data/app/helpers/styleguide_helper.rb +33 -0
  32. data/app/views/base/_webfonts_social_standard.html +429 -0
  33. data/app/views/base/_webfonts_ss_standard.html +2413 -0
  34. data/app/views/base/buttons.html.haml +20 -0
  35. data/app/views/base/forms.html.haml +40 -0
  36. data/app/views/base/images.html.haml +1 -0
  37. data/app/views/base/index.html.haml +68 -0
  38. data/app/views/base/labels.html.haml +22 -0
  39. data/app/views/base/lists.html.haml +20 -0
  40. data/app/views/base/webfonts.html.haml +17 -0
  41. data/app/views/grids/index.html.haml +73 -0
  42. data/app/views/grids/layouts.html.haml +9 -0
  43. data/app/views/grids/layouts/basic-marketing-site.haml +69 -0
  44. data/app/views/grids/layouts/jumbotron-site.haml +92 -0
  45. data/app/views/layouts/_main_nav.html.haml +6 -6
  46. data/app/views/layouts/application.html.haml +6 -32
  47. data/app/views/modules/alerts.html.haml +12 -0
  48. data/app/views/modules/footer.html.haml +2 -0
  49. data/app/views/modules/index.html.haml +5 -0
  50. data/app/views/modules/nav.html.haml +12 -0
  51. data/app/views/modules/panels.html.haml +3 -0
  52. data/app/views/modules/tabs.html.haml +58 -0
  53. data/app/views/old_javascript/close.html.haml +2 -0
  54. data/app/views/old_javascript/forms.html.haml +2 -0
  55. data/app/views/old_javascript/ga_events.html.haml +2 -0
  56. data/app/views/old_javascript/index.html.haml +2 -0
  57. data/app/views/old_javascript/responsive_resize.html.haml +2 -0
  58. data/app/views/old_javascript/switch.html.haml +2 -0
  59. data/app/views/parts/base/_button.haml +3 -0
  60. data/app/views/parts/base/_button_colours.haml +4 -0
  61. data/app/views/parts/base/_button_group.haml +4 -0
  62. data/app/views/parts/base/_button_sizing.haml +3 -0
  63. data/app/views/parts/base/_button_states.haml +3 -0
  64. data/app/views/parts/base/_form_example.haml +26 -0
  65. data/app/views/parts/base/_form_example_horizontal.haml +26 -0
  66. data/app/views/parts/base/_form_group.haml +10 -0
  67. data/app/views/parts/base/_form_location.haml +3 -0
  68. data/app/views/parts/base/_labels.haml +5 -0
  69. data/app/views/parts/base/_labels_sizing.haml +3 -0
  70. data/app/views/parts/base/_list.haml +10 -0
  71. data/app/views/parts/base/_list_action.haml +5 -0
  72. data/app/views/parts/base/_list_nav.haml +12 -0
  73. data/app/views/parts/base/_list_unset.haml +10 -0
  74. data/app/views/parts/base/_type_body.haml +2 -0
  75. data/app/views/parts/base/_type_headings.haml +5 -0
  76. data/app/views/parts/base/_type_helpers.haml +3 -0
  77. data/app/views/parts/base/_type_links.haml +9 -0
  78. data/app/views/parts/base/_type_shouts.haml +4 -0
  79. data/app/views/parts/grids/_example_layout_1.haml +10 -0
  80. data/app/views/parts/grids/_live_grid.haml +29 -0
  81. data/app/views/parts/modules/_alerts.haml +11 -0
  82. data/app/views/parts/modules/_nav_footer.haml +34 -0
  83. data/app/views/parts/modules/_nav_header.haml +18 -0
  84. data/app/views/parts/modules/_panels.haml +9 -0
  85. data/app/views/parts/modules/_tabs_minimal.haml +11 -0
  86. data/app/views/parts/modules/_tabs_simple_group.haml +11 -0
  87. data/app/views/parts/modules/_tabs_simple_group_toggle.haml +11 -0
  88. data/app/views/parts/modules/_tabs_toggle.haml +5 -0
  89. data/app/views/parts/modules/_tabs_traditional.haml +11 -0
  90. data/app/views/shared/_title.html.haml +8 -0
  91. data/app/views/shared/_ui_nav.html.haml +5 -0
  92. data/app/views/ui/typography.html.haml +86 -96
  93. data/lib/sb-styleguide.rb +1 -1
  94. data/lib/sb-styleguide/version.rb +1 -1
  95. data/lib/templates/haml/scaffold/_form.html.haml +8 -0
  96. data/public/javascripts/LICENSE.html +158 -0
  97. data/public/javascripts/README.md.html +164 -0
  98. data/public/javascripts/assets/codo.css +1 -0
  99. data/public/javascripts/assets/codo.js +21 -0
  100. data/public/javascripts/assets/search_data.js +1 -0
  101. data/public/javascripts/class_index.html +215 -0
  102. data/public/javascripts/class_list.html +58 -0
  103. data/public/javascripts/classes/Close.html +259 -0
  104. data/public/javascripts/classes/GAEvent.html +231 -0
  105. data/public/javascripts/classes/ResizeHandler.html +225 -0
  106. data/public/javascripts/classes/Switch.html +318 -0
  107. data/public/javascripts/classes/TBGForm.html +373 -0
  108. data/public/javascripts/extra_list.html +36 -0
  109. data/public/javascripts/file_list.html +74 -0
  110. data/public/javascripts/files/styleguide/plugins/tbg-close.js.coffee.html +160 -0
  111. data/public/javascripts/files/styleguide/plugins/tbg-forms.js.coffee.html +160 -0
  112. data/public/javascripts/files/styleguide/plugins/tbg-ga-events.js.coffee.html +160 -0
  113. data/public/javascripts/files/styleguide/plugins/tbg-respinsiveresize.js.coffee.html +160 -0
  114. data/public/javascripts/files/styleguide/plugins/tbg-switch.js.coffee.html +160 -0
  115. data/public/javascripts/index.html +14 -0
  116. data/public/javascripts/method_list.html +187 -0
  117. data/public/javascripts/mixin_list.html +28 -0
  118. data/vendor/assets/javascripts/styleguide/plugins/doc/assets/codo.css +1 -0
  119. data/vendor/assets/javascripts/styleguide/plugins/doc/assets/codo.js +21 -0
  120. data/vendor/assets/javascripts/styleguide/plugins/doc/assets/search_data.js +1 -0
  121. data/vendor/assets/javascripts/styleguide/plugins/doc/class_index.html +194 -0
  122. data/vendor/assets/javascripts/styleguide/plugins/doc/class_list.html +58 -0
  123. data/vendor/assets/javascripts/styleguide/plugins/doc/classes/Close.html +215 -0
  124. data/vendor/assets/javascripts/styleguide/plugins/doc/classes/GAEvent.html +235 -0
  125. data/vendor/assets/javascripts/styleguide/plugins/doc/classes/ResizeHandler.html +192 -0
  126. data/vendor/assets/javascripts/styleguide/plugins/doc/classes/Switch.html +233 -0
  127. data/vendor/assets/javascripts/styleguide/plugins/doc/classes/TBGForm.html +318 -0
  128. data/vendor/assets/javascripts/styleguide/plugins/doc/extra_list.html +30 -0
  129. data/vendor/assets/javascripts/styleguide/plugins/doc/file_list.html +58 -0
  130. data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-close.js.coffee.html +154 -0
  131. data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-forms.js.coffee.html +154 -0
  132. data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-ga-events.js.coffee.html +154 -0
  133. data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-respinsiveresize.js.coffee.html +154 -0
  134. data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-switch.js.coffee.html +154 -0
  135. data/vendor/assets/javascripts/styleguide/plugins/doc/index.html +14 -0
  136. data/vendor/assets/javascripts/styleguide/plugins/doc/method_list.html +163 -0
  137. data/vendor/assets/javascripts/styleguide/plugins/doc/mixin_list.html +28 -0
  138. data/vendor/assets/javascripts/styleguide/plugins/tbg-close.js.coffee +28 -4
  139. data/vendor/assets/javascripts/styleguide/plugins/tbg-forms.js.coffee +52 -5
  140. data/vendor/assets/javascripts/styleguide/plugins/tbg-ga-events.js.coffee +28 -8
  141. data/vendor/assets/javascripts/styleguide/plugins/tbg-respinsiveresize.js.coffee +21 -2
  142. data/vendor/assets/javascripts/styleguide/plugins/tbg-switch.js.coffee +37 -2
  143. data/vendor/assets/stylesheets/_mixins.css.scss +128 -35
  144. data/vendor/assets/stylesheets/_settings.css.scss +7 -4
  145. data/vendor/assets/stylesheets/styleguide/base/_labels.css.scss +22 -6
  146. data/vendor/assets/stylesheets/styleguide/base/_lists.css.scss +23 -18
  147. data/vendor/assets/stylesheets/styleguide/base/_type.css.scss +11 -5
  148. data/vendor/assets/stylesheets/styleguide/grid/_grid.css.scss +9 -9
  149. data/vendor/assets/stylesheets/styleguide/modules/_switch.css.scss +32 -16
  150. metadata +134 -18
  151. data/.rvmrc +0 -1
  152. data/app/helpers/application_helper.rb +0 -13
  153. data/app/helpers/javascripts_helper.rb +0 -2
  154. data/app/helpers/ui_helper.rb +0 -2
  155. data/app/mailers/.gitkeep +0 -0
  156. data/app/models/.gitkeep +0 -0
  157. data/app/views/javascripts/_js_nav.html.haml +0 -5
  158. data/app/views/javascripts/index.html.haml +0 -45
  159. data/app/views/type/_headings.haml +0 -6
  160. data/app/views/type/_paragraphs.haml +0 -4
  161. data/app/views/ui/_ui_nav.html.haml +0 -13
  162. data/vendor/assets/stylesheets/styleguide/layout/_all.css.scss +0 -5
  163. data/vendor/plugins/.gitkeep +0 -0
data/.codoopts ADDED
@@ -0,0 +1,10 @@
1
+ --name "Codo"
2
+ --readme README.md
3
+ --title "Codo Documentation"
4
+ --private
5
+ --quiet
6
+ --output-dir ./public/javascripts
7
+ ./vendor/assets/javascripts
8
+ -
9
+ LICENSE
10
+ CHANGELOG.md
data/.env ADDED
@@ -0,0 +1 @@
1
+ RACK_ENV=development
data/.gitignore CHANGED
@@ -20,3 +20,4 @@ capybara-*.html
20
20
  **.orig
21
21
  rerun.txt
22
22
  pickle-email-*.html
23
+ /public/assets/*
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 1.9.3-p194
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source :rubygems
1
+ source 'https://rubygems.org'
2
2
 
3
3
  # Declare your gem's dependencies in sb-styleguide.gemspec.
4
4
  # Bundler will treat runtime dependencies like base dependencies, and
@@ -25,8 +25,11 @@ end
25
25
  gem "haml"
26
26
  gem "haml-rails"
27
27
  gem "haml-coderay"
28
- gem "maruku"
28
+ gem 'kramdown'
29
+ gem 'kramdown-haml'
29
30
  gem 'thin'
31
+ gem 'formtastic'
32
+ gem 'rb-readline'
30
33
 
31
34
  #
32
35
  # Jquery rails - @TODO Is this needed?
@@ -39,9 +42,13 @@ gem 'jquery-rails'
39
42
  # Javascript Testing
40
43
  #
41
44
 
42
- group :development, :test do
45
+ group :development, :test, :staging do
43
46
  gem 'growl'
44
47
  gem 'jasminerice', :git => "https://github.com/bradphelan/jasminerice"
45
48
  gem "guard-jasmine"
46
49
  # gem 'jsPercolator', :git => "git@github.com:adtaylor/jsPercolator.git"
50
+ gem "rails", "~> 3.2.12"
51
+ gem "capistrano"
52
+ gem "aws-sdk"
53
+ gem "net-sftp", "~> 2.1.1"
47
54
  end
data/Gemfile.lock CHANGED
@@ -1,15 +1,14 @@
1
1
  GIT
2
2
  remote: https://github.com/bradphelan/jasminerice
3
- revision: ee4681169096fb15913b90cf15832e6b15e15a22
3
+ revision: b5370e3cf2931aa5478e775369afb5ecef1c18b5
4
4
  specs:
5
- jasminerice (0.0.9)
5
+ jasminerice (0.1.0)
6
6
  coffee-rails
7
- haml
8
7
 
9
8
  PATH
10
9
  remote: .
11
10
  specs:
12
- sb-styleguide (0.0.8)
11
+ sb-styleguide (1.0.0)
13
12
  actionpack (~> 3.1)
14
13
  activesupport (~> 3.1)
15
14
  compass-rails
@@ -19,167 +18,205 @@ PATH
19
18
  sass-rails
20
19
 
21
20
  GEM
22
- remote: http://rubygems.org/
21
+ remote: https://rubygems.org/
23
22
  specs:
24
- actionmailer (3.2.8)
25
- actionpack (= 3.2.8)
26
- mail (~> 2.4.4)
27
- actionpack (3.2.8)
28
- activemodel (= 3.2.8)
29
- activesupport (= 3.2.8)
23
+ actionmailer (3.2.13)
24
+ actionpack (= 3.2.13)
25
+ mail (~> 2.5.3)
26
+ actionpack (3.2.13)
27
+ activemodel (= 3.2.13)
28
+ activesupport (= 3.2.13)
30
29
  builder (~> 3.0.0)
31
30
  erubis (~> 2.7.0)
32
31
  journey (~> 1.0.4)
33
- rack (~> 1.4.0)
32
+ rack (~> 1.4.5)
34
33
  rack-cache (~> 1.2)
35
34
  rack-test (~> 0.6.1)
36
- sprockets (~> 2.1.3)
37
- activemodel (3.2.8)
38
- activesupport (= 3.2.8)
35
+ sprockets (~> 2.2.1)
36
+ activemodel (3.2.13)
37
+ activesupport (= 3.2.13)
39
38
  builder (~> 3.0.0)
40
- activerecord (3.2.8)
41
- activemodel (= 3.2.8)
42
- activesupport (= 3.2.8)
39
+ activerecord (3.2.13)
40
+ activemodel (= 3.2.13)
41
+ activesupport (= 3.2.13)
43
42
  arel (~> 3.0.2)
44
43
  tzinfo (~> 0.3.29)
45
- activeresource (3.2.8)
46
- activemodel (= 3.2.8)
47
- activesupport (= 3.2.8)
48
- activesupport (3.2.8)
49
- i18n (~> 0.6)
44
+ activeresource (3.2.13)
45
+ activemodel (= 3.2.13)
46
+ activesupport (= 3.2.13)
47
+ activesupport (3.2.13)
48
+ i18n (= 0.6.1)
50
49
  multi_json (~> 1.0)
51
50
  arel (3.0.2)
52
- builder (3.0.0)
53
- childprocess (0.3.5)
54
- ffi (~> 1.0, >= 1.0.6)
55
- chunky_png (1.2.6)
56
- coderay (1.0.7)
51
+ aws-sdk (1.10.0)
52
+ json (~> 1.4)
53
+ nokogiri (>= 1.4.4)
54
+ uuidtools (~> 2.1)
55
+ builder (3.0.4)
56
+ capistrano (2.15.4)
57
+ highline
58
+ net-scp (>= 1.0.0)
59
+ net-sftp (>= 2.0.0)
60
+ net-ssh (>= 2.0.14)
61
+ net-ssh-gateway (>= 1.1.0)
62
+ childprocess (0.3.9)
63
+ ffi (~> 1.0, >= 1.0.11)
64
+ chunky_png (1.2.8)
65
+ coderay (1.0.9)
57
66
  coffee-rails (3.2.2)
58
67
  coffee-script (>= 2.2.0)
59
68
  railties (~> 3.2.0)
60
69
  coffee-script (2.2.0)
61
70
  coffee-script-source
62
71
  execjs
63
- coffee-script-source (1.3.3)
72
+ coffee-script-source (1.6.2)
64
73
  compass (0.12.2)
65
74
  chunky_png (~> 1.2)
66
75
  fssm (>= 0.2.7)
67
76
  sass (~> 3.1)
68
- compass-rails (1.0.2)
69
- compass (>= 0.12.0, < 0.14)
70
- daemons (1.1.8)
77
+ compass-rails (1.0.3)
78
+ compass (>= 0.12.2, < 0.14)
79
+ daemons (1.1.9)
71
80
  erubis (2.7.0)
72
- eventmachine (1.0.0)
81
+ eventmachine (1.0.3)
73
82
  execjs (1.4.0)
74
83
  multi_json (~> 1.0)
75
- ffi (1.1.5)
76
- fssm (0.2.9)
84
+ ffi (1.8.1)
85
+ formatador (0.2.4)
86
+ formtastic (2.2.1)
87
+ actionpack (>= 3.0)
88
+ fssm (0.2.10)
77
89
  growl (1.0.3)
78
- guard (1.3.2)
79
- listen (>= 0.4.2)
90
+ guard (1.8.0)
91
+ formatador (>= 0.2.4)
92
+ listen (>= 1.0.0)
93
+ lumberjack (>= 1.0.2)
94
+ pry (>= 0.9.10)
80
95
  thor (>= 0.14.6)
81
- guard-jasmine (1.7.0)
96
+ guard-jasmine (1.16.0)
82
97
  childprocess
83
98
  guard (>= 1.1.0)
84
99
  multi_json
85
100
  thor
86
- haml (3.1.7)
87
- haml-coderay (0.1.2)
101
+ tilt
102
+ haml (3.1.8)
103
+ haml-coderay (0.2.0)
88
104
  coderay
89
105
  haml
90
- haml-rails (0.3.4)
91
- actionpack (~> 3.0)
92
- activesupport (~> 3.0)
93
- haml (~> 3.0)
94
- railties (~> 3.0)
95
- hike (1.2.1)
96
- i18n (0.6.0)
106
+ haml-rails (0.4)
107
+ actionpack (>= 3.1, < 4.1)
108
+ activesupport (>= 3.1, < 4.1)
109
+ haml (>= 3.1, < 4.1)
110
+ railties (>= 3.1, < 4.1)
111
+ highline (1.6.19)
112
+ hike (1.2.2)
113
+ i18n (0.6.1)
97
114
  journey (1.0.4)
98
- jquery-rails (2.1.1)
99
- railties (>= 3.1.0, < 5.0)
100
- thor (~> 0.14)
101
- json (1.7.4)
102
- listen (0.4.7)
103
- rb-fchange (~> 0.0.5)
104
- rb-fsevent (~> 0.9.1)
105
- rb-inotify (~> 0.8.8)
106
- mail (2.4.4)
107
- i18n (>= 0.4.0)
115
+ jquery-rails (2.2.1)
116
+ railties (>= 3.0, < 5.0)
117
+ thor (>= 0.14, < 2.0)
118
+ json (1.8.0)
119
+ kramdown (1.0.2)
120
+ kramdown-haml (0.0.2)
121
+ haml
122
+ listen (1.1.3)
123
+ rb-fsevent (>= 0.9.3)
124
+ rb-inotify (>= 0.9)
125
+ rb-kqueue (>= 0.2)
126
+ lumberjack (1.0.3)
127
+ mail (2.5.4)
108
128
  mime-types (~> 1.16)
109
129
  treetop (~> 1.4.8)
110
- maruku (0.6.0)
111
- syntax (>= 1.0.0)
112
- mime-types (1.19)
130
+ method_source (0.8.1)
131
+ mime-types (1.23)
113
132
  modular-scale (1.0.6)
114
133
  compass (>= 0.12.1)
115
134
  sass (>= 3.2.0)
116
135
  sassy-math (>= 1.5)
117
- multi_json (1.3.6)
136
+ multi_json (1.7.4)
137
+ net-scp (1.1.1)
138
+ net-ssh (>= 2.6.5)
139
+ net-sftp (2.1.2)
140
+ net-ssh (>= 2.6.5)
141
+ net-ssh (2.6.7)
142
+ net-ssh-gateway (1.2.0)
143
+ net-ssh (>= 2.6.5)
144
+ nokogiri (1.5.9)
118
145
  polyglot (0.3.3)
119
- rack (1.4.1)
146
+ pry (0.9.12.2)
147
+ coderay (~> 1.0.5)
148
+ method_source (~> 0.8)
149
+ slop (~> 3.4)
150
+ rack (1.4.5)
120
151
  rack-cache (1.2)
121
152
  rack (>= 0.4)
122
- rack-ssl (1.3.2)
153
+ rack-ssl (1.3.3)
123
154
  rack
124
- rack-test (0.6.1)
155
+ rack-test (0.6.2)
125
156
  rack (>= 1.0)
126
- rails (3.2.8)
127
- actionmailer (= 3.2.8)
128
- actionpack (= 3.2.8)
129
- activerecord (= 3.2.8)
130
- activeresource (= 3.2.8)
131
- activesupport (= 3.2.8)
157
+ rails (3.2.13)
158
+ actionmailer (= 3.2.13)
159
+ actionpack (= 3.2.13)
160
+ activerecord (= 3.2.13)
161
+ activeresource (= 3.2.13)
162
+ activesupport (= 3.2.13)
132
163
  bundler (~> 1.0)
133
- railties (= 3.2.8)
134
- railties (3.2.8)
135
- actionpack (= 3.2.8)
136
- activesupport (= 3.2.8)
164
+ railties (= 3.2.13)
165
+ railties (3.2.13)
166
+ actionpack (= 3.2.13)
167
+ activesupport (= 3.2.13)
137
168
  rack-ssl (~> 1.3.2)
138
169
  rake (>= 0.8.7)
139
170
  rdoc (~> 3.4)
140
171
  thor (>= 0.14.6, < 2.0)
141
- rake (0.9.2.2)
142
- rb-fchange (0.0.5)
143
- ffi
144
- rb-fsevent (0.9.1)
145
- rb-inotify (0.8.8)
172
+ rake (10.0.4)
173
+ rb-fsevent (0.9.3)
174
+ rb-inotify (0.9.0)
146
175
  ffi (>= 0.5.0)
147
- rdoc (3.12)
176
+ rb-kqueue (0.2.0)
177
+ ffi (>= 0.5.0)
178
+ rb-readline (0.5.0)
179
+ rdoc (3.12.2)
148
180
  json (~> 1.4)
149
- sass (3.2.1)
150
- sass-rails (3.2.5)
181
+ sass (3.2.9)
182
+ sass-rails (3.2.6)
151
183
  railties (~> 3.2.0)
152
184
  sass (>= 3.1.10)
153
185
  tilt (~> 1.3)
154
186
  sassy-math (1.5)
155
187
  compass (~> 0.11)
156
- sprockets (2.1.3)
188
+ slop (3.4.5)
189
+ sprockets (2.2.2)
157
190
  hike (~> 1.2)
191
+ multi_json (~> 1.0)
158
192
  rack (~> 1.0)
159
193
  tilt (~> 1.1, != 1.3.0)
160
- sqlite3 (1.3.6)
161
- syntax (1.0.0)
162
- thin (1.3.1)
194
+ sqlite3 (1.3.7)
195
+ thin (1.5.1)
163
196
  daemons (>= 1.0.9)
164
197
  eventmachine (>= 0.12.6)
165
198
  rack (>= 1.0.0)
166
- thor (0.15.4)
167
- tilt (1.3.3)
168
- treetop (1.4.10)
199
+ thor (0.18.1)
200
+ tilt (1.4.1)
201
+ treetop (1.4.12)
169
202
  polyglot
170
203
  polyglot (>= 0.3.1)
171
- tzinfo (0.3.33)
172
- uglifier (1.2.7)
204
+ tzinfo (0.3.37)
205
+ uglifier (2.1.1)
173
206
  execjs (>= 0.3.0)
174
- multi_json (~> 1.3)
207
+ multi_json (~> 1.0, >= 1.0.2)
208
+ uuidtools (2.1.4)
175
209
 
176
210
  PLATFORMS
177
211
  ruby
178
212
 
179
213
  DEPENDENCIES
214
+ aws-sdk
180
215
  bundler
216
+ capistrano
181
217
  coffee-rails (~> 3.2.1)
182
218
  compass-rails
219
+ formtastic
183
220
  growl
184
221
  guard-jasmine
185
222
  haml
@@ -187,8 +224,11 @@ DEPENDENCIES
187
224
  haml-rails
188
225
  jasminerice!
189
226
  jquery-rails
190
- maruku
191
- rails (~> 3.1)
227
+ kramdown
228
+ kramdown-haml
229
+ net-sftp (~> 2.1.1)
230
+ rails (~> 3.2.12)
231
+ rb-readline
192
232
  sass-rails (~> 3.2.3)
193
233
  sb-styleguide!
194
234
  sqlite3
data/Procfile ADDED
@@ -0,0 +1 @@
1
+ web: bundle exec rails server thin -p $PORT -e $RACK_ENV
data/README.md CHANGED
@@ -16,12 +16,10 @@ Create a new branch for the feature you want to work on:
16
16
 
17
17
  git checkout -b feature/[name-of-feature]
18
18
 
19
- To run the site, use the middleman server:
19
+ To run the site, use the foreman:
20
20
 
21
- middleman server
22
-
23
- # Or use the alias
24
- mms
21
+ bundle install
22
+ foreman start
25
23
 
26
24
  **NB: ** Ensure that you are _adding_ and _committing_ files into your branch as you go along. It is also good practive to _push_ the branch to github at the end of your development session, this enusres global access to the markup you have changed.
27
25
 
data/Rakefile CHANGED
@@ -30,3 +30,6 @@ rescue LoadError
30
30
  abort "Jasmine is not available. In order to run jasmine, you must: (sudo) gem install jasmine"
31
31
  end
32
32
  end
33
+
34
+ require File.expand_path('../config/application', __FILE__)
35
+ SbStyleguide::Application.load_tasks
@@ -0,0 +1,3 @@
1
+ # Place all the behaviors and hooks related to the matching controller here.
2
+ # All this logic will automatically be available in application.js.
3
+ # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
@@ -0,0 +1,3 @@
1
+ # Place all the behaviors and hooks related to the matching controller here.
2
+ # All this logic will automatically be available in application.js.
3
+ # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
@@ -0,0 +1,3 @@
1
+ # Place all the behaviors and hooks related to the matching controller here.
2
+ # All this logic will automatically be available in application.js.
3
+ # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
@@ -0,0 +1,3 @@
1
+ # Place all the behaviors and hooks related to the matching controller here.
2
+ # All this logic will automatically be available in application.js.
3
+ # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
@@ -0,0 +1,11 @@
1
+ @charset "UTF-8";
2
+
3
+ // ======================================================
4
+ // Old IE!!
5
+ // ======================================================
6
+
7
+ $old-ie: true;
8
+ $fixed-mqs: true;
9
+
10
+
11
+ @import "application";