rocket_cms 0.5.22 → 0.5.23

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: 1e7b07b8c7d43dd2a5d754cd7ec4eabd48b88b6e
4
- data.tar.gz: 32b6c6941929e43ac03e7bac6fdb2140ce82fbed
3
+ metadata.gz: e6b4ec6db7fb1c7e7131979c9e9b33ed6e5de714
4
+ data.tar.gz: d422020721987a4cdc8b662f49732122011e9c81
5
5
  SHA512:
6
- metadata.gz: e2fb1c2d5c7fef619425d9e152acaa6a350fe7814c5d217917012aa5487e18e610c95cee22e92f8303ab4cffb604301a7a8defcfa00b3c90c780167878495a50
7
- data.tar.gz: 8e6dcfd30db4299e41fcc68b7dbf2f6ec40e5be5480a99e61b1cb38084c5790efeaee33b356041b0508a50af0dbcceb6b79415be745afa3c54ff3e2c2d8ffadb
6
+ metadata.gz: d4d3c511ead85d97bc784a4cc1a0f3187bc232d04f9c24644b4de9b65cbe32f939c088da3823985f834245737898d3a0f7fb7c9d4bc2a7ae3a6e1dabff5fc3f7
7
+ data.tar.gz: 5b120008f5467b46b061d29ac9eec18ca40aad21db20635950fe94e3fb0b279e74244a9025a9e6ae74057afabdda20bb5a48ca4c6aa5dc5d07ab2984ec3b2d66
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rocket_cms (0.5.22)
4
+ rocket_cms (0.5.23)
5
5
  addressable
6
6
  coffee-rails
7
7
  devise
@@ -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.1)
146
+ rake (10.4.2)
147
147
  remotipart (1.2.1)
148
148
  responders (1.1.2)
149
149
  railties (>= 3.2, < 4.2)
@@ -177,7 +177,7 @@ GEM
177
177
  thor (0.19.1)
178
178
  thread_safe (0.3.4)
179
179
  tilt (1.4.1)
180
- turbolinks (2.5.2)
180
+ turbolinks (2.5.3)
181
181
  coffee-rails
182
182
  tzinfo (1.2.2)
183
183
  thread_safe (~> 0.1)
data/README.md CHANGED
@@ -50,11 +50,11 @@ If not, uninstall rails and install again
50
50
 
51
51
  Then, for mongoid:
52
52
 
53
- rails new my_app -T -O -m https://raw.github.com/rs-pro/rocket_cms/master/template.rb
53
+ rails new my_app -T -O -m https://rscz.ru/glebtv/rocket_cms/raw/master/template.rb
54
54
 
55
55
  for ActiveRecord:
56
56
 
57
- rails new my_app -T --database=postgresql -m https://raw.github.com/rs-pro/rocket_cms/master/template.rb
57
+ rails new my_app -T --database=postgresql -m https://rscz.ru/glebtv/rocket_cms/raw/master/template.rb
58
58
 
59
59
  generator creates a new RVM gemset, so after cd'ing to app dir, you should run `bundle install` again if you use rvm.
60
60
 
@@ -14,16 +14,16 @@ module RocketCms
14
14
 
15
15
  def deploy_to
16
16
  if kind == 'data'
17
- '/data/#{fetch :application}/app'
17
+ "/data/#{app_name.downcase}/app"
18
18
  else
19
- '/home/#{fetch :user}/#{fetch :application}'
19
+ "/home/#{app_name.downcase}/#{app_name.downcase}"
20
20
  end
21
21
  end
22
22
  def tmp_path
23
23
  if kind == 'data'
24
- '/data/#{fetch :application}/tmp_dump'
24
+ "/data/#{app_name.downcase}/tmp_dump"
25
25
  else
26
- '/home/#{fetch :user}/tmp_dump'
26
+ "/home/#{app_name.downcase}/tmp_dump"
27
27
  end
28
28
  end
29
29
 
@@ -11,7 +11,7 @@ require 'capistrano/rails/assets'
11
11
 
12
12
  require 'capistrano/unicorn'
13
13
 
14
- require 'capistrano/rails/console'
14
+ # require 'capistrano/rails/console'
15
15
 
16
16
  # Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
17
17
  Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }
@@ -1,19 +1,19 @@
1
1
  set :user, "<%= app_name.downcase %>"
2
2
  set :application, '<%= app_name.downcase %>'
3
3
  set :scm, :git
4
- set :repo_url, 'git@github.com:rs-pro/<%= app_name.downcase %>.git'
4
+ set :repo_url, 'git@rscz.ru:rocket-science/<%= app_name.downcase %>.git'
5
5
 
6
6
  set :branch, ENV["REVISION"] || "master"
7
7
 
8
- set :deploy_to, "<%= deploy_to %>
8
+ set :deploy_to, "<%= deploy_to %>"
9
9
 
10
10
  # require 'hipchat/capistrano'
11
11
  # set :hipchat_token, ""
12
- # set :hipchat_room_name, "#{app_name}"
12
+ # set :hipchat_room_name, "<%= app_name %>"
13
13
  # set :hipchat_announce, false
14
14
 
15
15
  set :rvm_type, :user
16
- set :rvm_ruby_version, "2.1.2@#{fetch :application}"
16
+ set :rvm_ruby_version, "2.1.5@#{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.5.22"
2
+ VERSION = "0.5.23"
3
3
  end
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.22
4
+ version: 0.5.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - glebtv
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-02 00:00:00.000000000 Z
11
+ date: 2014-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler