capistrano-faster-rails 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/capistrano-faster-rails.gemspec +11 -4
  3. metadata +12 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 267f8d4165d2dfd5a34f51ee33ab376057ee609b8ea3d18db05b4138a657b078
4
- data.tar.gz: 0267eb20da80f65880cce0189cae1e7fb0df4a1192f307558091e944cc78e6a4
3
+ metadata.gz: 9c2c3730d3b927436497b333a98319aaf7d629d683e8c6fe59c116a8eff18bcb
4
+ data.tar.gz: c848c81e5bcd3836a7ba184c83666b41124c43c4a9e1eeebbde317ad68dc6616
5
5
  SHA512:
6
- metadata.gz: be5dca1f91d6a8df868d167b37f9dc899920e2c90b8682a92ef3d67177d912528780827fdfb5ab2a408e597f172173a98adf90d42d68b5b44a40d98332faa383
7
- data.tar.gz: 780b849843a81098dad49205f4986fd9921eafd17699da96aa2a07bbc28c2cc095af4277e2bebc6f229a585514ea044b1fc5a623a5d0cfd24d1994b686dfcb54
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.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
- 1. Capistrano runs each command separately on their own SSH session and that's why it takes so long to deploy an application, copy `linked_files` and `linked_dirs` with one command will speedup deploying process.
14
- 2. `bundle install` takes few or dozens of seconds. generally, you don't have to execute `bundle install` if your Gemfile and Gemfile.lock not changed
15
- 3. `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 precompile them if not chagned.
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.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 1. Capistrano runs each command separately on their own SSH session
42
- and that's why it takes so long to deploy an application, copy `linked_files` and
43
- `linked_dirs` with one command will speedup deploying process.\n 2. `bundle install`
44
- takes few or dozens of seconds. generally, you don't have to execute `bundle install`
45
- if your Gemfile and Gemfile.lock not changed\n 3. `rake assets:precompile` is
46
- really slow if your Rails project has plenty of assets to precompile, even if they
47
- are not changed. You don't have to precompile them if not chagned.\n "
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: []