capistrano-faster-rails 1.0.0 → 1.0.1
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 +4 -4
- data/capistrano-faster-rails.gemspec +11 -4
- metadata +12 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c2c3730d3b927436497b333a98319aaf7d629d683e8c6fe59c116a8eff18bcb
|
4
|
+
data.tar.gz: c848c81e5bcd3836a7ba184c83666b41124c43c4a9e1eeebbde317ad68dc6616
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db51f5f8b561eca96d5eca0ff786b29cb7b301db26dbc61ea3fb0e9bf875a18ffe52ebb56da6770a8a5ffb25cdc90365c06ef5d4fcfb8694a48250d3bdb82908
|
7
|
+
data.tar.gz: 6f0eb89c9151ee1d01f50e5dbe49b6af957722c6028ceb1142913555e876da5b6ce5465ca099d8d343992999f6003e8416a11ebd42aa81ffc19af4db7035e91f
|
@@ -4,15 +4,22 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "capistrano-faster-rails"
|
7
|
-
spec.version = "1.0.
|
7
|
+
spec.version = "1.0.1"
|
8
8
|
spec.authors = ["lifuzhong"]
|
9
9
|
spec.email = ["lifuzho@126.com"]
|
10
10
|
|
11
11
|
spec.summary = %q{Speedup deploy Ruby On Rails project when using capistrano}
|
12
12
|
spec.description = %q{
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
What does this gem do?
|
14
|
+
|
15
|
+
1. Execute copy `linked_files` and `linked_dirs` with one command on deployed servers.
|
16
|
+
Capistrano runs each command separately on their own SSH session and it takes too long to deploy an application, copy `linked_files` and `linked_dirs` on deployed servers with one command will speedup deploying process.
|
17
|
+
|
18
|
+
2. Skip `bundle install` if Gemfile isn't changed.
|
19
|
+
`bundle install` takes few or dozens of seconds, most of the time your project's Gemfile will not be changed, and you don't have to execute `bundle install` if your Gemfile isn't changed.
|
20
|
+
|
21
|
+
3. Skip `rake assets:precompile` if asset files not chagned.
|
22
|
+
`rake assets:precompile` is really slow if your Rails project has plenty of assets to precompile, even if they are not changed. You don't have to execute `rake assets:precompile` if your asset files not chagned.
|
16
23
|
}
|
17
24
|
spec.homepage = "https://github.com/ifool/capistrano-faster-rails"
|
18
25
|
spec.license = 'MIT'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-faster-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lifuzhong
|
@@ -38,13 +38,17 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
-
description: "\n
|
42
|
-
and
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
41
|
+
description: "\n What does this gem do?\n\n 1. Execute copy `linked_files`
|
42
|
+
and `linked_dirs` with one command on deployed servers.\n Capistrano runs each
|
43
|
+
command separately on their own SSH session and it takes too long to deploy an application,
|
44
|
+
copy `linked_files` and `linked_dirs` on deployed servers with one command will
|
45
|
+
speedup deploying process.\n\n 2. Skip `bundle install` if Gemfile isn't changed.\n
|
46
|
+
\ `bundle install` takes few or dozens of seconds, most of the time your project's
|
47
|
+
Gemfile will not be changed, and you don't have to execute `bundle install` if your
|
48
|
+
Gemfile isn't changed.\n\n 3. Skip `rake assets:precompile` if asset files
|
49
|
+
not chagned.\n `rake assets:precompile` is really slow if your Rails project
|
50
|
+
has plenty of assets to precompile, even if they are not changed. You don't have
|
51
|
+
to execute `rake assets:precompile` if your asset files not chagned.\n "
|
48
52
|
email:
|
49
53
|
- lifuzho@126.com
|
50
54
|
executables: []
|