fullstack-cms 0.3.18 → 0.3.19

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.
Files changed (36) hide show
  1. data/VERSION +1 -1
  2. data/fullstack-cms.gemspec +25 -9
  3. data/lib/generators/fullstack/cms/install_generator.rb +20 -29
  4. data/lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/bootstrap.js +2170 -0
  5. data/lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/facebox.js +309 -0
  6. data/lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/jquery.cycle.lite.js +232 -0
  7. data/lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/lightbox.js +351 -0
  8. data/lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/site.js.coffee +4 -12
  9. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap-large-desktops.css +335 -0
  10. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap-narrow-tablets-and-below.css +158 -0
  11. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap-responsive.css +207 -0
  12. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap-tablets-to-desktops.css +326 -0
  13. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap.css +5117 -0
  14. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/facebox.css +80 -0
  15. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/lightbox.css +181 -0
  16. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/site.css +1 -28
  17. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/src/global.css +0 -0
  18. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/src/helpers.css +9 -0
  19. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/src/print.css +18 -0
  20. data/lib/generators/fullstack/cms/templates/rails/app/views/site/_footer.html.erb +10 -18
  21. data/lib/generators/fullstack/cms/templates/rails/app/views/site/_header.html.erb +3 -1
  22. data/lib/generators/fullstack/cms/templates/rails/app/views/site/site/home.html.erb +0 -17
  23. data/lib/generators/fullstack/cms/templates/rails/config/{fullstack.rb → initializers/fullstack.rb} +0 -0
  24. data/lib/generators/fullstack/cms/templates/rails/public/img/{glyphicons-halflings-white.png → bootstrap/glyphicons-halflings-white.png} +0 -0
  25. data/lib/generators/fullstack/cms/templates/rails/public/img/{glyphicons-halflings.png → bootstrap/glyphicons-halflings.png} +0 -0
  26. data/lib/generators/fullstack/cms/templates/rails/public/img/facebox/closelabel.png +0 -0
  27. data/lib/generators/fullstack/cms/templates/rails/public/img/facebox/loading.gif +0 -0
  28. data/lib/generators/fullstack/cms/templates/rails/public/img/lightbox/close.png +0 -0
  29. data/lib/generators/fullstack/cms/templates/rails/public/img/lightbox/loading.gif +0 -0
  30. data/lib/generators/fullstack/cms/templates/rails/public/img/lightbox/next.png +0 -0
  31. data/lib/generators/fullstack/cms/templates/rails/public/img/lightbox/prev.png +0 -0
  32. metadata +26 -10
  33. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/bootstrap.overrides.css +0 -3
  34. data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap.min.css +0 -722
  35. data/lib/generators/fullstack/cms/templates/rails/public/admin/rotate-left.png +0 -0
  36. data/lib/generators/fullstack/cms/templates/rails/public/admin/rotate-right.png +0 -0
@@ -0,0 +1,80 @@
1
+ #facebox {
2
+ position: absolute;
3
+ top: 0;
4
+ left: 0;
5
+ z-index: 100;
6
+ text-align: left;
7
+ }
8
+
9
+
10
+ #facebox .popup{
11
+ position:relative;
12
+ border:3px solid rgba(0,0,0,0);
13
+ -webkit-border-radius:5px;
14
+ -moz-border-radius:5px;
15
+ border-radius:5px;
16
+ -webkit-box-shadow:0 0 18px rgba(0,0,0,0.4);
17
+ -moz-box-shadow:0 0 18px rgba(0,0,0,0.4);
18
+ box-shadow:0 0 18px rgba(0,0,0,0.4);
19
+ }
20
+
21
+ #facebox .content {
22
+ display:table;
23
+ width: 370px;
24
+ padding: 10px;
25
+ background: #fff;
26
+ -webkit-border-radius:4px;
27
+ -moz-border-radius:4px;
28
+ border-radius:4px;
29
+ }
30
+
31
+ #facebox .content > p:first-child{
32
+ margin-top:0;
33
+ }
34
+ #facebox .content > p:last-child{
35
+ margin-bottom:0;
36
+ }
37
+
38
+ #facebox .close{
39
+ position:absolute;
40
+ top:5px;
41
+ right:5px;
42
+ padding:2px;
43
+ background:#fff;
44
+ }
45
+ #facebox .close img{
46
+ opacity:0.3;
47
+ }
48
+ #facebox .close:hover img{
49
+ opacity:1.0;
50
+ }
51
+
52
+ #facebox .loading {
53
+ text-align: center;
54
+ }
55
+
56
+ #facebox .image {
57
+ text-align: center;
58
+ }
59
+
60
+ #facebox img {
61
+ border: 0;
62
+ margin: 0;
63
+ }
64
+
65
+ #facebox_overlay {
66
+ position: fixed;
67
+ top: 0px;
68
+ left: 0px;
69
+ height:100%;
70
+ width:100%;
71
+ }
72
+
73
+ .facebox_hide {
74
+ z-index:-100;
75
+ }
76
+
77
+ .facebox_overlayBG {
78
+ background-color: #000;
79
+ z-index: 99;
80
+ }
@@ -0,0 +1,181 @@
1
+ /* line 6, ../sass/lightbox.sass */
2
+ #lightboxOverlay {
3
+ position: absolute;
4
+ top: 0;
5
+ left: 0;
6
+ z-index: 9999;
7
+ background-color: black;
8
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
9
+ opacity: 0.85;
10
+ display: none;
11
+ }
12
+
13
+ /* line 15, ../sass/lightbox.sass */
14
+ #lightbox {
15
+ position: absolute;
16
+ left: 0;
17
+ width: 100%;
18
+ z-index: 10000;
19
+ text-align: center;
20
+ line-height: 0;
21
+ font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
22
+ font-weight: normal;
23
+ }
24
+ /* line 24, ../sass/lightbox.sass */
25
+ #lightbox img {
26
+ width: auto;
27
+ height: auto;
28
+ }
29
+ /* line 27, ../sass/lightbox.sass */
30
+ #lightbox a img {
31
+ border: none;
32
+ }
33
+
34
+ /* line 30, ../sass/lightbox.sass */
35
+ .lb-outerContainer {
36
+ position: relative;
37
+ background-color: white;
38
+ *zoom: 1;
39
+ width: 250px;
40
+ height: 250px;
41
+ margin: 0 auto;
42
+ -webkit-border-radius: 4px;
43
+ -moz-border-radius: 4px;
44
+ -ms-border-radius: 4px;
45
+ -o-border-radius: 4px;
46
+ border-radius: 4px;
47
+ }
48
+ /* line 38, ../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
49
+ .lb-outerContainer:after {
50
+ content: "";
51
+ display: table;
52
+ clear: both;
53
+ }
54
+
55
+ /* line 39, ../sass/lightbox.sass */
56
+ .lb-container {
57
+ padding: 10px;
58
+ }
59
+
60
+ /* line 42, ../sass/lightbox.sass */
61
+ .lb-loader {
62
+ position: absolute;
63
+ top: 40%;
64
+ left: 0%;
65
+ height: 25%;
66
+ width: 100%;
67
+ text-align: center;
68
+ line-height: 0;
69
+ }
70
+
71
+ /* line 51, ../sass/lightbox.sass */
72
+ .lb-nav {
73
+ position: absolute;
74
+ top: 0;
75
+ left: 0;
76
+ height: 100%;
77
+ width: 100%;
78
+ z-index: 10;
79
+ }
80
+
81
+ /* line 59, ../sass/lightbox.sass */
82
+ .lb-container > .nav {
83
+ left: 0;
84
+ }
85
+
86
+ /* line 62, ../sass/lightbox.sass */
87
+ .lb-nav a {
88
+ outline: none;
89
+ }
90
+
91
+ /* line 65, ../sass/lightbox.sass */
92
+ .lb-prev, .lb-next {
93
+ width: 49%;
94
+ height: 100%;
95
+ background-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
96
+ /* Trick IE into showing hover */
97
+ display: block;
98
+ }
99
+
100
+ /* line 72, ../sass/lightbox.sass */
101
+ .lb-prev {
102
+ left: 0;
103
+ float: left;
104
+ }
105
+
106
+ /* line 76, ../sass/lightbox.sass */
107
+ .lb-next {
108
+ right: 0;
109
+ float: right;
110
+ }
111
+
112
+ /* line 81, ../sass/lightbox.sass */
113
+ .lb-prev:hover {
114
+ background: url(../images/prev.png) left 48% no-repeat;
115
+ }
116
+
117
+ /* line 85, ../sass/lightbox.sass */
118
+ .lb-next:hover {
119
+ background: url(../images/next.png) right 48% no-repeat;
120
+ }
121
+
122
+ /* line 88, ../sass/lightbox.sass */
123
+ .lb-dataContainer {
124
+ margin: 0 auto;
125
+ padding-top: 5px;
126
+ *zoom: 1;
127
+ width: 100%;
128
+ -moz-border-radius-bottomleft: 4px;
129
+ -webkit-border-bottom-left-radius: 4px;
130
+ -ms-border-bottom-left-radius: 4px;
131
+ -o-border-bottom-left-radius: 4px;
132
+ border-bottom-left-radius: 4px;
133
+ -moz-border-radius-bottomright: 4px;
134
+ -webkit-border-bottom-right-radius: 4px;
135
+ -ms-border-bottom-right-radius: 4px;
136
+ -o-border-bottom-right-radius: 4px;
137
+ border-bottom-right-radius: 4px;
138
+ }
139
+ /* line 38, ../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
140
+ .lb-dataContainer:after {
141
+ content: "";
142
+ display: table;
143
+ clear: both;
144
+ }
145
+
146
+ /* line 95, ../sass/lightbox.sass */
147
+ .lb-data {
148
+ padding: 0 10px;
149
+ color: #bbbbbb;
150
+ }
151
+ /* line 98, ../sass/lightbox.sass */
152
+ .lb-data .lb-details {
153
+ width: 85%;
154
+ float: left;
155
+ text-align: left;
156
+ line-height: 1.1em;
157
+ }
158
+ /* line 103, ../sass/lightbox.sass */
159
+ .lb-data .lb-caption {
160
+ font-size: 13px;
161
+ font-weight: bold;
162
+ line-height: 1em;
163
+ }
164
+ /* line 107, ../sass/lightbox.sass */
165
+ .lb-data .lb-number {
166
+ display: block;
167
+ clear: left;
168
+ padding-bottom: 1em;
169
+ font-size: 11px;
170
+ }
171
+ /* line 112, ../sass/lightbox.sass */
172
+ .lb-data .lb-close {
173
+ width: 35px;
174
+ float: right;
175
+ padding-bottom: 0.7em;
176
+ outline: none;
177
+ }
178
+ /* line 117, ../sass/lightbox.sass */
179
+ .lb-data .lb-close:hover {
180
+ cursor: pointer;
181
+ }
@@ -1,32 +1,5 @@
1
1
  /*
2
2
  *= require site/lib/bootstrap.min
3
- *= require site/bootstrap.overrides
4
- *= require support/facebox
5
- *= require jquery.noty
3
+ *= require_tree .
6
4
  */
7
-
8
- @media print {
9
- * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; }
10
- a, a:visited { text-decoration: underline; }
11
- a[href]:after { content: " (" attr(href) ")"; }
12
- abbr[title]:after { content: " (" attr(title) ")"; }
13
- .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
14
- pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
15
- thead { display: table-header-group; }
16
- tr, img { page-break-inside: avoid; }
17
- img { max-width: 100% !important; }
18
- @page { margin: 0.5cm; }
19
- p, h2, h3 { orphans: 3; widows: 3; }
20
- h2, h3 { page-break-after: avoid; }
21
- }
22
5
 
23
-
24
- /* =========== */
25
- /* = Helpers = */
26
- /* =========== */
27
-
28
- ul.hl,ol.hl{list-style-type:none;padding:0;margin:0}ul.hl li,ol.hl li{float:left;text-align:center;margin:0 0 0 0.5em;}ul.hl li.fr, ol.hl li.fr{float: right;}.cfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.cfix{display:inline-block}* html .cfix{height:1%}.cfix{display:block}ul.hl:after,ol.hl:after{content:".";display:block;height:0;clear:both;visibility:hidden}ul.hl,ol.hl{display:inline-block}* html ul.hl,* html ul.hl ol.hl{height:1%}ul.hl,ol.hl{display:block}.fl {display: block;float: left;} .fr{display: block;float: right}li.separator,li.sep{display:block;height:1em;visibility:hidden}.clear{clear:both}
29
- ul.hl li:first-child,ol.hl li:first-child{margin:0;}
30
- .mb1 {margin-bottom: 20px;}
31
- .float.right {float: right;}
32
- .float.left {float: left; }
@@ -0,0 +1,9 @@
1
+ /* =========== */
2
+ /* = Helpers = */
3
+ /* =========== */
4
+
5
+ ul.hl,ol.hl{list-style-type:none;padding:0;margin:0}ul.hl li,ol.hl li{float:left;text-align:center;margin:0 0 0 0.5em;}ul.hl li.fr, ol.hl li.fr{float: right;}.cfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.cfix{display:inline-block}* html .cfix{height:1%}.cfix{display:block}ul.hl:after,ol.hl:after{content:".";display:block;height:0;clear:both;visibility:hidden}ul.hl,ol.hl{display:inline-block}* html ul.hl,* html ul.hl ol.hl{height:1%}ul.hl,ol.hl{display:block}.fl {display: block;float: left;} .fr{display: block;float: right}li.separator,li.sep{display:block;height:1em;visibility:hidden}.clear{clear:both}
6
+ ul.hl li:first-child,ol.hl li:first-child{margin:0;}
7
+ .mb1 {margin-bottom: 20px;}
8
+ .float.right {float: right;}
9
+ .float.left {float: left; }
@@ -0,0 +1,18 @@
1
+ /* ========= */
2
+ /* = Print = */
3
+ /* ========= */
4
+
5
+ @media print {
6
+ * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; }
7
+ a, a:visited { text-decoration: underline; }
8
+ a[href]:after { content: " (" attr(href) ")"; }
9
+ abbr[title]:after { content: " (" attr(title) ")"; }
10
+ .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
11
+ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
12
+ thead { display: table-header-group; }
13
+ tr, img { page-break-inside: avoid; }
14
+ img { max-width: 100% !important; }
15
+ @page { margin: 0.5cm; }
16
+ p, h2, h3 { orphans: 3; widows: 3; }
17
+ h2, h3 { page-break-after: avoid; }
18
+ }
@@ -1,20 +1,12 @@
1
1
  <footer class="footer">
2
- <%= row do %>
3
- <%= span(6) do %>
4
- <div class="footer-logo">
5
- <%= image_tag "/img/logo-footer.png" %>
6
- </div>
7
- <% end %>
8
- <%= span(6) do %>
9
- <address>
10
- <strong><%= setting(:title).try(:titleize) %></strong>
11
- <p><%= simple_format setting("contacts/address") %></p>
12
- <p><%= link_to setting("contacts/email"), "mailto:#{setting("contacts/email")}"%><br/>
13
- <%= setting("contacts/phone") %>
14
- </p>
2
+
3
+ <address>
4
+ <strong><%= setting(:title).try(:titleize) %></strong>
5
+ <p><%= simple_format setting("contacts/address") %></p>
6
+ <p><%= link_to setting("contacts/email"), "mailto:#{setting("contacts/email")}"%><br/>
7
+ <%= setting("contacts/phone") %>
8
+ </p>
15
9
 
16
- </address>
17
-
18
- <% end %>
19
- <% end %>
20
- </footer>
10
+ </address>
11
+
12
+ </footer>
@@ -6,7 +6,9 @@
6
6
  <a href="/" rel="home" class="clearfix main-logo"><%= image_tag "/img/logo.png", :alt => get_setting(:title, Settings.app.title) %></a>
7
7
  </h1>
8
8
  </div>
9
- <div class="tagline"><%= get_setting(:slogan, Settings.app.slogan) %></div>
9
+ <div class="tagline">
10
+ <%= get_setting(:slogan, Settings.app.slogan) %>
11
+ </div>
10
12
 
11
13
  </div>
12
14
  </div>
@@ -1,17 +0,0 @@
1
- <%
2
- social_links = (links("social") || []).to(3)
3
- %>
4
- <% if social_links.any? %>
5
-
6
- <% content_for :prefooter do -%>
7
- <% colspan = (12 / social_links.size) %>
8
- <%= row do %>
9
- <% social_links.each do |link| %>
10
- <%= span(colspan) do %>
11
- <%= link_to image_tag(link.icon.url(:i32)), menu_link_url(link), :rel => "tooltip", :title => link.label %>
12
- <% end %>
13
- <% end %>
14
- <% end %>
15
- <% end %>
16
-
17
- <% end %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fullstack-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.18
4
+ version: 0.3.19
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-29 00:00:00.000000000 Z
12
+ date: 2013-01-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: fullstack-admin
@@ -263,12 +263,24 @@ files:
263
263
  - lib/fullstack/paperclip/rotator.rb
264
264
  - lib/generators/fullstack/cms/install_generator.rb
265
265
  - lib/generators/fullstack/cms/locale_generator.rb
266
+ - lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/bootstrap.js
267
+ - lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/facebox.js
268
+ - lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/jquery.cycle.lite.js
266
269
  - lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/jquery.fitvids.js
270
+ - lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/lightbox.js
267
271
  - lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/lib/plugins.js
268
272
  - lib/generators/fullstack/cms/templates/rails/app/assets/javascripts/site/site.js.coffee
269
- - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/bootstrap.overrides.css
270
- - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap.min.css
273
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap-large-desktops.css
274
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap-narrow-tablets-and-below.css
275
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap-responsive.css
276
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap-tablets-to-desktops.css
277
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap.css
278
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/facebox.css
279
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/lightbox.css
271
280
  - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/site.css
281
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/src/global.css
282
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/src/helpers.css
283
+ - lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/src/print.css
272
284
  - lib/generators/fullstack/cms/templates/rails/app/controllers/site/site_controller.rb
273
285
  - lib/generators/fullstack/cms/templates/rails/app/views/devise/_links.erb
274
286
  - lib/generators/fullstack/cms/templates/rails/app/views/devise/confirmations/new.html.erb
@@ -293,9 +305,9 @@ files:
293
305
  - lib/generators/fullstack/cms/templates/rails/app/views/site/_nav.html.erb
294
306
  - lib/generators/fullstack/cms/templates/rails/app/views/site/_share_buttons_big.html.erb
295
307
  - lib/generators/fullstack/cms/templates/rails/app/views/site/site/home.html.erb
296
- - lib/generators/fullstack/cms/templates/rails/config/fullstack.rb
297
308
  - lib/generators/fullstack/cms/templates/rails/config/initializers/ckeditor_controller.rb
298
309
  - lib/generators/fullstack/cms/templates/rails/config/initializers/devise_controller.rb
310
+ - lib/generators/fullstack/cms/templates/rails/config/initializers/fullstack.rb
299
311
  - lib/generators/fullstack/cms/templates/rails/config/schedule.rb
300
312
  - lib/generators/fullstack/cms/templates/rails/config/styles.yml
301
313
  - lib/generators/fullstack/cms/templates/rails/lib/support/content.rb
@@ -304,14 +316,18 @@ files:
304
316
  - lib/generators/fullstack/cms/templates/rails/public/422.html
305
317
  - lib/generators/fullstack/cms/templates/rails/public/500.html
306
318
  - lib/generators/fullstack/cms/templates/rails/public/admin/drag-handle.png
307
- - lib/generators/fullstack/cms/templates/rails/public/admin/rotate-left.png
308
- - lib/generators/fullstack/cms/templates/rails/public/admin/rotate-right.png
309
319
  - lib/generators/fullstack/cms/templates/rails/public/apple-touch-icon.png
310
320
  - lib/generators/fullstack/cms/templates/rails/public/crossdomain.xml
311
321
  - lib/generators/fullstack/cms/templates/rails/public/favicon.ico
312
322
  - lib/generators/fullstack/cms/templates/rails/public/img/.gitignore
313
- - lib/generators/fullstack/cms/templates/rails/public/img/glyphicons-halflings-white.png
314
- - lib/generators/fullstack/cms/templates/rails/public/img/glyphicons-halflings.png
323
+ - lib/generators/fullstack/cms/templates/rails/public/img/bootstrap/glyphicons-halflings-white.png
324
+ - lib/generators/fullstack/cms/templates/rails/public/img/bootstrap/glyphicons-halflings.png
325
+ - lib/generators/fullstack/cms/templates/rails/public/img/facebox/closelabel.png
326
+ - lib/generators/fullstack/cms/templates/rails/public/img/facebox/loading.gif
327
+ - lib/generators/fullstack/cms/templates/rails/public/img/lightbox/close.png
328
+ - lib/generators/fullstack/cms/templates/rails/public/img/lightbox/loading.gif
329
+ - lib/generators/fullstack/cms/templates/rails/public/img/lightbox/next.png
330
+ - lib/generators/fullstack/cms/templates/rails/public/img/lightbox/prev.png
315
331
  - lib/generators/fullstack/cms/templates/rails/public/js/modernizr-2.5.3.min.js
316
332
  - lib/generators/fullstack/cms/templates/rails/public/robots.txt
317
333
  homepage: http://github.com/mcasimir/kaminari-bootstrap
@@ -329,7 +345,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
329
345
  version: '0'
330
346
  segments:
331
347
  - 0
332
- hash: 1907485311474042496
348
+ hash: 2424127372487257758
333
349
  required_rubygems_version: !ruby/object:Gem::Requirement
334
350
  none: false
335
351
  requirements: