capistrano-faster-assets 1.0.0 → 1.0.1

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: 6c029f3933f8e608e67b0e33918f69942106c77b
4
- data.tar.gz: 8ceeb7e6ed9c3973067974fba7d2a60894ea2109
3
+ metadata.gz: 36829495d58ac910ec5572654cead41caf511dd0
4
+ data.tar.gz: 90a2a0a14022603e4862d4222dccbf2b4778bf1d
5
5
  SHA512:
6
- metadata.gz: 6a115fa608107fca63f12f9cedbc2cbbd1af613c04310db3d7026184a1a02a986c135695c454f5b58063348117e642bfb8316b8d1182af17641a7e5c539f2570
7
- data.tar.gz: 3508d145118aca2c9a6a7bf5ce5a5ff5765ad966c6fb3d61c9ca7722d7c2abef726e90fc385dfa2eebfd18906aa356ef48697c249cf065f742ba9a24841e352f
6
+ metadata.gz: 220d41e79bceaa1dbd352442b5475b1f7b30a882b2cdf9f83400ba785d4459471d65172f2ced8c4f7c46df4eb8270064c40342b4ad753fce31083d03ca0f4bad
7
+ data.tar.gz: 80c8fbfd54c484c60061e9bd4ac4f15da617c35a93aca2d237fe9918ca99cb6b95fd63476b7e2eb9860ae93b54c77342f6abfdfd484cdfa149f52df41b15f5cf
data/README.md CHANGED
@@ -20,7 +20,7 @@ And then:
20
20
 
21
21
  ### Setup and usage
22
22
 
23
- Add this line to `Capfile`
23
+ Add this line to `Capfile`, after `require 'capistrano/rails/assets'`
24
24
 
25
25
  require 'capistrano/faster_assets'
26
26
 
@@ -46,4 +46,4 @@ app on the server (default `/var/www/myapp`), this is what you need!
46
46
  ### Thanks
47
47
 
48
48
  [@athal7](https://github.com/athal7) - for the original idea and implementation. See https://coderwall.com/p/aridag
49
- for more details
49
+ for more details
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module FasterAssets
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -30,7 +30,7 @@ namespace :deploy do
30
30
 
31
31
  fetch(:assets_dependencies).each do |dep|
32
32
  # execute raises if there is a diff
33
- execute(:diff, '-Naur', release_path.join(dep), latest_release_path.join(dep)) rescue raise(PrecompileRequired)
33
+ execute(:diff, '-Nqr', release_path.join(dep), latest_release_path.join(dep)) rescue raise(PrecompileRequired)
34
34
  end
35
35
 
36
36
  info("Skipping asset precompile, no asset diff found")
@@ -45,4 +45,4 @@ namespace :deploy do
45
45
  end
46
46
  end
47
47
  end
48
- end
48
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-faster-assets
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
  - Andrew Thal
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-10-02 00:00:00.000000000 Z
12
+ date: 2014-11-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano