fullstack-cms 0.3.27 → 0.3.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.
- data/Gemfile +1 -1
- data/Gemfile.lock +12 -12
- data/VERSION +1 -1
- data/app/inputs/simple_date_select_input.rb +1 -1
- data/fullstack-cms.gemspec +6 -6
- data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap.css +2 -2
- data/lib/generators/fullstack/cms/templates/rails/app/views/site/_head.html.erb +1 -1
- data/lib/generators/fullstack/cms/templates/rails/public/img/{bootstrap/glyphicons-halflings-white.png → glyphicons-halflings-white.png} +0 -0
- data/lib/generators/fullstack/cms/templates/rails/public/img/{bootstrap/glyphicons-halflings.png → glyphicons-halflings.png} +0 -0
- metadata +6 -6
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -48,16 +48,16 @@ GEM
|
|
|
48
48
|
uuidtools (~> 2.1)
|
|
49
49
|
bcrypt-ruby (3.0.1)
|
|
50
50
|
bluecloth (2.2.0)
|
|
51
|
-
bootstrap-datepicker-rails (0.6.
|
|
51
|
+
bootstrap-datepicker-rails (0.6.35)
|
|
52
52
|
railties (>= 3.0)
|
|
53
53
|
bootstrap-helpers (0.1.8)
|
|
54
54
|
rails
|
|
55
55
|
builder (3.0.4)
|
|
56
56
|
checkin (0.5.1)
|
|
57
|
-
chosen-rails (0.9.11)
|
|
58
|
-
coffee-rails (
|
|
59
|
-
railties (
|
|
60
|
-
sass-rails (
|
|
57
|
+
chosen-rails (0.9.11.1)
|
|
58
|
+
coffee-rails (>= 3.2)
|
|
59
|
+
railties (>= 3.0)
|
|
60
|
+
sass-rails (>= 3.2)
|
|
61
61
|
chronic (0.9.0)
|
|
62
62
|
ckeditor (3.7.3)
|
|
63
63
|
mime-types
|
|
@@ -73,7 +73,7 @@ GEM
|
|
|
73
73
|
coffeebeans (1.0.1)
|
|
74
74
|
actionpack (>= 3.0.0)
|
|
75
75
|
coffee-script
|
|
76
|
-
devise (2.
|
|
76
|
+
devise (2.2.0)
|
|
77
77
|
bcrypt-ruby (~> 3.0)
|
|
78
78
|
orm_adapter (~> 0.1)
|
|
79
79
|
railties (~> 3.1)
|
|
@@ -83,9 +83,9 @@ GEM
|
|
|
83
83
|
erubis (2.7.0)
|
|
84
84
|
execjs (1.4.0)
|
|
85
85
|
multi_json (~> 1.0)
|
|
86
|
-
facebox-rails (0.
|
|
87
|
-
railties (
|
|
88
|
-
thor (
|
|
86
|
+
facebox-rails (0.2.0)
|
|
87
|
+
railties (>= 3.0, < 5.0)
|
|
88
|
+
thor (>= 0.14, < 2.0)
|
|
89
89
|
flash_cookie_session (1.1.3)
|
|
90
90
|
rails (~> 3.0)
|
|
91
91
|
formtastic (2.2.1)
|
|
@@ -121,7 +121,7 @@ GEM
|
|
|
121
121
|
remotipart
|
|
122
122
|
resource-presentation-helpers
|
|
123
123
|
squeel
|
|
124
|
-
fullstack-admin (0.2.
|
|
124
|
+
fullstack-admin (0.2.13)
|
|
125
125
|
bootstrap-datepicker-rails
|
|
126
126
|
bootstrap-helpers (~> 0.1.7)
|
|
127
127
|
chosen-rails
|
|
@@ -240,7 +240,7 @@ GEM
|
|
|
240
240
|
resource-presentation-helpers (0.1.1)
|
|
241
241
|
rails
|
|
242
242
|
rinku (1.2.2)
|
|
243
|
-
sass (3.2.
|
|
243
|
+
sass (3.2.5)
|
|
244
244
|
sass-rails (3.2.5)
|
|
245
245
|
railties (~> 3.2.0)
|
|
246
246
|
sass (>= 3.1.10)
|
|
@@ -276,7 +276,7 @@ DEPENDENCIES
|
|
|
276
276
|
ars-permalink
|
|
277
277
|
awesome_nested_set
|
|
278
278
|
bluecloth
|
|
279
|
-
fullstack-admin (~> 0.2.
|
|
279
|
+
fullstack-admin (~> 0.2.13)
|
|
280
280
|
jeweler
|
|
281
281
|
rails_i18n_gettext
|
|
282
282
|
rinku (~> 1.2.2)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.28
|
|
@@ -7,7 +7,7 @@ class SimpleDateSelectInput < FormtasticBootstrap::Inputs::DateSelectInput
|
|
|
7
7
|
include FormtasticBootstrap::Inputs::Base::Hints
|
|
8
8
|
|
|
9
9
|
def to_html
|
|
10
|
-
|
|
10
|
+
bootstrap_wrapping do
|
|
11
11
|
builder.date_select(method, {:start_year => 100.years.ago.year, :include_blank => true}, {:class => "datetime-selector"})
|
|
12
12
|
end
|
|
13
13
|
end
|
data/fullstack-cms.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "fullstack-cms"
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.28"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["mcasimir"]
|
|
@@ -158,10 +158,10 @@ Gem::Specification.new do |s|
|
|
|
158
158
|
"lib/generators/fullstack/cms/templates/rails/public/crossdomain.xml",
|
|
159
159
|
"lib/generators/fullstack/cms/templates/rails/public/favicon.ico",
|
|
160
160
|
"lib/generators/fullstack/cms/templates/rails/public/img/.gitignore",
|
|
161
|
-
"lib/generators/fullstack/cms/templates/rails/public/img/bootstrap/glyphicons-halflings-white.png",
|
|
162
|
-
"lib/generators/fullstack/cms/templates/rails/public/img/bootstrap/glyphicons-halflings.png",
|
|
163
161
|
"lib/generators/fullstack/cms/templates/rails/public/img/facebox/closelabel.png",
|
|
164
162
|
"lib/generators/fullstack/cms/templates/rails/public/img/facebox/loading.gif",
|
|
163
|
+
"lib/generators/fullstack/cms/templates/rails/public/img/glyphicons-halflings-white.png",
|
|
164
|
+
"lib/generators/fullstack/cms/templates/rails/public/img/glyphicons-halflings.png",
|
|
165
165
|
"lib/generators/fullstack/cms/templates/rails/public/img/lightbox/close.png",
|
|
166
166
|
"lib/generators/fullstack/cms/templates/rails/public/img/lightbox/loading.gif",
|
|
167
167
|
"lib/generators/fullstack/cms/templates/rails/public/img/lightbox/next.png",
|
|
@@ -179,7 +179,7 @@ Gem::Specification.new do |s|
|
|
|
179
179
|
s.specification_version = 3
|
|
180
180
|
|
|
181
181
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
182
|
-
s.add_runtime_dependency(%q<fullstack-admin>, ["~> 0.2.
|
|
182
|
+
s.add_runtime_dependency(%q<fullstack-admin>, ["~> 0.2.13"])
|
|
183
183
|
s.add_runtime_dependency(%q<ars-permalink>, [">= 0"])
|
|
184
184
|
s.add_runtime_dependency(%q<acts-as-taggable-on>, [">= 0"])
|
|
185
185
|
s.add_runtime_dependency(%q<acts_as_indexed>, [">= 0"])
|
|
@@ -190,7 +190,7 @@ Gem::Specification.new do |s|
|
|
|
190
190
|
s.add_runtime_dependency(%q<bluecloth>, [">= 0"])
|
|
191
191
|
s.add_development_dependency(%q<jeweler>, [">= 0"])
|
|
192
192
|
else
|
|
193
|
-
s.add_dependency(%q<fullstack-admin>, ["~> 0.2.
|
|
193
|
+
s.add_dependency(%q<fullstack-admin>, ["~> 0.2.13"])
|
|
194
194
|
s.add_dependency(%q<ars-permalink>, [">= 0"])
|
|
195
195
|
s.add_dependency(%q<acts-as-taggable-on>, [">= 0"])
|
|
196
196
|
s.add_dependency(%q<acts_as_indexed>, [">= 0"])
|
|
@@ -202,7 +202,7 @@ Gem::Specification.new do |s|
|
|
|
202
202
|
s.add_dependency(%q<jeweler>, [">= 0"])
|
|
203
203
|
end
|
|
204
204
|
else
|
|
205
|
-
s.add_dependency(%q<fullstack-admin>, ["~> 0.2.
|
|
205
|
+
s.add_dependency(%q<fullstack-admin>, ["~> 0.2.13"])
|
|
206
206
|
s.add_dependency(%q<ars-permalink>, [">= 0"])
|
|
207
207
|
s.add_dependency(%q<acts-as-taggable-on>, [">= 0"])
|
|
208
208
|
s.add_dependency(%q<acts_as_indexed>, [">= 0"])
|
data/lib/generators/fullstack/cms/templates/rails/app/assets/stylesheets/site/lib/bootstrap.css
CHANGED
|
@@ -2368,7 +2368,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
2368
2368
|
*margin-right: .3em;
|
|
2369
2369
|
line-height: 14px;
|
|
2370
2370
|
vertical-align: text-top;
|
|
2371
|
-
background-image: url("/img/
|
|
2371
|
+
background-image: url("/img/glyphicons-halflings.png");
|
|
2372
2372
|
background-position: 14px 14px;
|
|
2373
2373
|
background-repeat: no-repeat;
|
|
2374
2374
|
margin-top: 1px;
|
|
@@ -2387,7 +2387,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
2387
2387
|
.dropdown-menu > .active > a > [class*=" icon-"],
|
|
2388
2388
|
.dropdown-submenu:hover > a > [class^="icon-"],
|
|
2389
2389
|
.dropdown-submenu:hover > a > [class*=" icon-"] {
|
|
2390
|
-
background-image: url("/img/
|
|
2390
|
+
background-image: url("/img/glyphicons-halflings-white.png");
|
|
2391
2391
|
}
|
|
2392
2392
|
.icon-glass {
|
|
2393
2393
|
background-position: 0 0;
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
meta.merge!({
|
|
48
48
|
:title => "#{meta_title || title_for(@object)} « #{site_title}",
|
|
49
49
|
:description => meta_description || description_for(@object),
|
|
50
|
-
:og => {:image => (meta_image || image_for(@object)
|
|
50
|
+
:og => {:image => (meta_image || image_for(@object)), :type => (meta_type || "article")}
|
|
51
51
|
})
|
|
52
52
|
|
|
53
53
|
elsif current_page
|
|
File without changes
|
|
File without changes
|
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.
|
|
4
|
+
version: 0.3.28
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.2.
|
|
21
|
+
version: 0.2.13
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ~>
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.2.
|
|
29
|
+
version: 0.2.13
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: ars-permalink
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -320,10 +320,10 @@ files:
|
|
|
320
320
|
- lib/generators/fullstack/cms/templates/rails/public/crossdomain.xml
|
|
321
321
|
- lib/generators/fullstack/cms/templates/rails/public/favicon.ico
|
|
322
322
|
- lib/generators/fullstack/cms/templates/rails/public/img/.gitignore
|
|
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
323
|
- lib/generators/fullstack/cms/templates/rails/public/img/facebox/closelabel.png
|
|
326
324
|
- lib/generators/fullstack/cms/templates/rails/public/img/facebox/loading.gif
|
|
325
|
+
- lib/generators/fullstack/cms/templates/rails/public/img/glyphicons-halflings-white.png
|
|
326
|
+
- lib/generators/fullstack/cms/templates/rails/public/img/glyphicons-halflings.png
|
|
327
327
|
- lib/generators/fullstack/cms/templates/rails/public/img/lightbox/close.png
|
|
328
328
|
- lib/generators/fullstack/cms/templates/rails/public/img/lightbox/loading.gif
|
|
329
329
|
- lib/generators/fullstack/cms/templates/rails/public/img/lightbox/next.png
|
|
@@ -345,7 +345,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
345
345
|
version: '0'
|
|
346
346
|
segments:
|
|
347
347
|
- 0
|
|
348
|
-
hash:
|
|
348
|
+
hash: 1478844864127579102
|
|
349
349
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
350
350
|
none: false
|
|
351
351
|
requirements:
|