rocket_cms 0.5.21 → 0.5.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 93821dd64e38c2cba0c1b8df382f67b95213a641
4
- data.tar.gz: 76ffee3cd546f074d7400a0c916e965abeed38a5
3
+ metadata.gz: 1e7b07b8c7d43dd2a5d754cd7ec4eabd48b88b6e
4
+ data.tar.gz: 32b6c6941929e43ac03e7bac6fdb2140ce82fbed
5
5
  SHA512:
6
- metadata.gz: 07cba499da79fa9184d3431643cf32cd253b0373e6a860ce6d194cf58ee6b02e10177385f3b05245f50fa762e391a9ccb464c5280483f0579b8b475f779063b3
7
- data.tar.gz: 5ed17db9dcad5df57b928cc3b5fc42f752622bbdc13f82241c9467986b5a30eed89e41bbd38e6b69db2ac531fb93cb43321487c2291ec1878fa48d4388d9d029
6
+ metadata.gz: e2fb1c2d5c7fef619425d9e152acaa6a350fe7814c5d217917012aa5487e18e610c95cee22e92f8303ab4cffb604301a7a8defcfa00b3c90c780167878495a50
7
+ data.tar.gz: 8e6dcfd30db4299e41fcc68b7dbf2f6ec40e5be5480a99e61b1cb38084c5790efeaee33b356041b0508a50af0dbcceb6b79415be745afa3c54ff3e2c2d8ffadb
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rocket_cms (0.5.21)
4
+ rocket_cms (0.5.22)
5
5
  addressable
6
6
  coffee-rails
7
7
  devise
@@ -81,7 +81,7 @@ GEM
81
81
  orm_adapter (~> 0.5.0)
82
82
  rails (~> 4.0)
83
83
  glebtv-simple_captcha (0.6.7)
84
- haml (4.0.5)
84
+ haml (4.0.6)
85
85
  tilt
86
86
  hike (1.2.3)
87
87
  htmlentities (4.3.2)
@@ -89,7 +89,7 @@ GEM
89
89
  jquery-rails (3.1.2)
90
90
  railties (>= 3.0, < 5.0)
91
91
  thor (>= 0.14, < 2.0)
92
- jquery-ui-rails (5.0.2)
92
+ jquery-ui-rails (5.0.3)
93
93
  railties (>= 3.2.16)
94
94
  json (1.8.1)
95
95
  kaminari (0.16.1)
@@ -143,7 +143,7 @@ GEM
143
143
  activesupport (= 4.1.8)
144
144
  rake (>= 0.8.7)
145
145
  thor (>= 0.18.1, < 2.0)
146
- rake (10.4.0)
146
+ rake (10.4.1)
147
147
  remotipart (1.2.1)
148
148
  responders (1.1.2)
149
149
  railties (>= 3.2, < 4.2)
@@ -169,7 +169,7 @@ GEM
169
169
  multi_json (~> 1.0)
170
170
  rack (~> 1.0)
171
171
  tilt (~> 1.1, != 1.3.0)
172
- sprockets-rails (2.2.1)
172
+ sprockets-rails (2.2.2)
173
173
  actionpack (>= 3.0)
174
174
  activesupport (>= 3.0)
175
175
  sprockets (>= 2.8, < 4.0)
@@ -19,7 +19,7 @@ class RocketCmsCreatePages < ActiveRecord::Migration
19
19
 
20
20
  t.string :regexp
21
21
  t.string :redirect
22
- t.string :content
22
+ t.text :content
23
23
  t.string :fullpath, null: false
24
24
  RocketCMS::Migration.seo_fields(t)
25
25
  t.timestamps
@@ -6,7 +6,7 @@ module RocketCMS
6
6
  t.string :name, null: false
7
7
  t.string :h1
8
8
  t.string :title
9
- t.string :keywords
9
+ t.text :keywords
10
10
  t.text :description
11
11
  t.string :robots
12
12
  t.string :og_title
@@ -19,9 +19,9 @@ module RocketCMS
19
19
  end
20
20
 
21
21
  def map_fields(t)
22
- t.string :address
23
- t.string :map_address
24
- t.string :map_hint
22
+ t.text :address
23
+ t.text :map_address
24
+ t.text :map_hint
25
25
  t.float :latitude
26
26
  t.float :longitude
27
27
  t.float :lat
@@ -1,3 +1,3 @@
1
1
  module RocketCMS
2
- VERSION = "0.5.21"
2
+ VERSION = "0.5.22"
3
3
  end
@@ -14,7 +14,7 @@ remove_file 'Gemfile'
14
14
  create_file 'Gemfile' do <<-TEXT
15
15
  source 'https://rubygems.org'
16
16
 
17
- gem 'rails', '4.1.6'
17
+ gem 'rails', '4.1.8'
18
18
  #{if mongoid then "gem 'mongoid', '~> 4.0.0'" else "gem 'pg'" end}
19
19
 
20
20
  gem 'sass', '~> 3.4.4'
@@ -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.3\n"
116
+ create_file '.ruby-version', "2.1.5\n"
117
117
  create_file '.ruby-gemset', "#{app_name}\n"
118
118
 
119
119
  run 'bundle install --without production'
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.5.21
4
+ version: 0.5.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - glebtv
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-28 00:00:00.000000000 Z
11
+ date: 2014-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler