rocket_cms 0.6.8 → 0.6.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6a6782a8e5e57f95b6ec8f6fabbc54ad91c4e834
4
- data.tar.gz: b0a2d3db5748a442d4f0e8ccac7dfd30931d41a6
3
+ metadata.gz: 03d10f86fb40035db78f01c96da06f40241f4efc
4
+ data.tar.gz: 61bc88fd28c5b0399c85f2ec019028d1829ab0d1
5
5
  SHA512:
6
- metadata.gz: a609b779eb3ca4a7e5d7d7778b4abe19a3b3c47b7cb8255d6a9efe2d1da7885f56d3426312689ab72cdc58b746733d4dc4f0aa853ccf4004fd27ce85207e036a
7
- data.tar.gz: 2d37bcdffa4c012dca000489ec1523b6cab6654fa780a81bf6907decd833a9cb54b5dbf363804994952fa1794242f81287b3dc931f3376624c0a1f886aed1e9c
6
+ metadata.gz: 9537af25cd5acd0c7e83c29c1bd748aee3bfcd4f207cb93d5f2cec4552e5072d7f877320e085247856408e7ac4f0c8928743714e49d85535e8f7cc2ab95efe2c
7
+ data.tar.gz: 40600c89a7b217994cf312c70db6adfaa3cd8ee328c5dbc26d35edc14cc0064c1a6841d310102c137b6131ec51deba3c8ef9701613c1b93ad07a62290a6878a4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rocket_cms (0.6.8)
4
+ rocket_cms (0.6.9)
5
5
  addressable
6
6
  coffee-rails
7
7
  devise
@@ -173,7 +173,7 @@ GEM
173
173
  responders (2.1.0)
174
174
  railties (>= 4.2.0, < 5)
175
175
  safe_yaml (1.0.4)
176
- sass (3.4.10)
176
+ sass (3.4.11)
177
177
  sass-rails (5.0.1)
178
178
  railties (>= 4.0.0, < 5.0)
179
179
  sass (~> 3.1)
@@ -13,7 +13,7 @@ set :deploy_to, "<%= deploy_to %>"
13
13
  # set :hipchat_announce, false
14
14
 
15
15
  set :rvm_type, :user
16
- set :rvm_ruby_version, "2.1.5@#{fetch :application}"
16
+ set :rvm_ruby_version, "2.2.0@#{fetch :application}"
17
17
  set :use_sudo, false
18
18
 
19
19
  set :keep_releases, 20
@@ -1,3 +1,3 @@
1
1
  module RocketCMS
2
- VERSION = "0.6.8"
2
+ VERSION = "0.6.9"
3
3
  end
data/template.rb CHANGED
@@ -14,14 +14,14 @@ remove_file 'Gemfile'
14
14
  create_file 'Gemfile' do <<-TEXT
15
15
  source 'https://rubygems.org'
16
16
 
17
- gem 'rails', '4.1.8'
17
+ gem 'rails', '4.2.0'
18
18
  #{if mongoid then "gem 'mongoid', '~> 4.0.0'" else "gem 'pg'" end}
19
19
 
20
20
  gem 'sass', '~> 3.4.4'
21
21
 
22
- #{if mongoid then "gem 'rocket_cms_mongoid'" else "gem 'rocket_cms_activerecord'" end}, '~> 0.5.5'
22
+ #{if mongoid then "gem 'rocket_cms_mongoid'" else "gem 'rocket_cms_activerecord'" end}, '~> 0.6.8'
23
23
 
24
- gem 'sass-rails', github: 'rails/sass-rails', ref: '3a9e47db7d769221157c82229fc1bade55b580f0'
24
+ gem 'sass-rails'
25
25
  gem 'compass-rails', '~> 2.0.0'
26
26
  gem 'compass', '~> 1.0.0'
27
27
 
@@ -113,7 +113,7 @@ end
113
113
 
114
114
  create_file 'README.md', "## #{app_name}\nProject generated by RocketCMS\nORM: #{if mongoid then 'Mongoid' else 'ActiveRecord' end}\n\n"
115
115
 
116
- create_file '.ruby-version', "2.1.5\n"
116
+ create_file '.ruby-version', "2.2.0\n"
117
117
  create_file '.ruby-gemset', "#{app_name}\n"
118
118
 
119
119
  run 'bundle install --without production'
@@ -254,38 +254,66 @@ TEXT
254
254
  end
255
255
 
256
256
  create_file 'app/assets/stylesheets/rails_admin/custom/theming.css.sass' do <<-TEXT
257
- body.rails_admin .form-horizontal textarea
258
- width: 563px
259
- height: 120px
257
+ .navbar-brand
258
+ margin-left: 0 !important
259
+
260
+ .input-small
261
+ width: 150px
262
+
263
+ input[type=text]
264
+ width: 380px !important
265
+ input.ra-filtering-select-input[type=text]
266
+ width: 180px !important
267
+ input.hasDatepicker
268
+ width: 180px !important
269
+
270
+ .sidebar-nav
271
+ a
272
+ padding: 6px 10px !important
273
+ .dropdown-header
274
+ padding: 10px 0px 3px 9px
275
+
276
+ .label-important
277
+ background-color: #d9534f
278
+ .alert-notice
279
+ color: #5bc0de
260
280
 
261
281
  .page-header
262
- display: none !important
282
+ display: none
283
+ .breadcrumb
284
+ margin-top: 20px
263
285
 
264
- body > .container-fluid > .row-fluid > .span3
265
- max-width: 140px
286
+ .control-group
287
+ clear: both
266
288
 
267
- @media screen and (min-width: 910px)
268
- body > .container-fluid > .row-fluid > .span9
269
- width: 81.5%
289
+ .container-fluid
290
+ padding-left: 0
291
+ > .row
292
+ margin: 0
270
293
 
271
- @media screen and (min-width: 1005px)
272
- body > .container-fluid > .row-fluid > .span9
273
- width: 83%
294
+ .last.links
295
+ a
296
+ display: inline-block
297
+ padding: 3px
298
+ font-size: 20px
274
299
 
275
- @media screen and (min-width: 1150px)
276
- body > .container-fluid > .row-fluid > .span9
277
- width: 85%
300
+ .remove_nested_fields
301
+ display: block !important
302
+ z-index: 5
303
+ right: 0
304
+ left: auto
278
305
 
279
- body.rails_admin .form-horizontal
280
- .string_type input, .integer_type input, .text_type textarea
281
- width: 60%
306
+ .modal
307
+ width: 800px !important
282
308
 
283
- body.rails_admin .modal
284
- margin-left: -495px !important
285
- width: 990px !important
286
-
287
- input[type=checkbox]
288
- width: 30px !important
309
+ .bank_row .logo_field, #edit_bank img
310
+ background: #ccc !important
311
+
312
+ .ui-menu-item
313
+ border: 1px solid transparent
314
+
315
+ .content > .alert
316
+ margin-top: 20px
289
317
  TEXT
290
318
  end
291
319
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rocket_cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.8
4
+ version: 0.6.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - glebtv
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-30 00:00:00.000000000 Z
11
+ date: 2015-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler