capistrano-bundler 1.1.0 → 1.1.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: 8d7ca44025f1e0e1242d78934c73c3b489251f69
4
- data.tar.gz: 95d08ddf1f27b656f2c9df0fec26d45f7253cc1d
3
+ metadata.gz: 156c9c34a8f9f71ee38ea7bd2edf04fc66bc97be
4
+ data.tar.gz: 33f87d10fbf56c7b9ca4f80fdfd79c0a47d93fa9
5
5
  SHA512:
6
- metadata.gz: 4a1ae11c987e417c00255fcdba6e63f4f58bca6c22d5b447c11e9278eb88f76c603dd9e20a6c61e008fad1426059c4ca3e76e4173328844cb7d805acf246b410
7
- data.tar.gz: 263a43bf5d594aeabb26264a59155082dd8f427fd03fa1751497cb2e21776ecd386070876f4a79850399bb9fb987533862741a2a970dd439cfd2bc95b594b1fb
6
+ metadata.gz: 0a97bb24202d0ed4b982801c3b17f0748e28113d70be6550843ecbedeb6226086ee37fb46c3e196ea212db841c1c64d1456f31ad60940da0bf3d01f36c3dd43e
7
+ data.tar.gz: b712023a13f38b268016e3153ca52517833221131b41de6a34085bcd0262c569836ae3f62f33da73bf157fd9d1148e7cbae5b579d486c1d92c435f558e4b06a5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 1.1.1
2
+
3
+ * ruby is not prefixed with `bundle exec` anymore by default
4
+ * prefix rails with `bundle exec` by default
5
+
1
6
  # 1.1.0
2
7
 
3
8
  * Switching to new command map (https://github.com/capistrano/sshkit/pull/45)
data/README.md CHANGED
@@ -34,7 +34,7 @@ Configurable options, shown here with defaults:
34
34
  set :bundle_without, %w{development test}.join(' ')
35
35
  set :bundle_binstubs, -> { shared_path.join('bin') }
36
36
  set :bundle_roles, :all
37
- set :bundle_bins, %w(gem rake ruby)
37
+ set :bundle_bins, %w(gem rake rails)
38
38
 
39
39
  By default, the plugin adds `bundle exec` prefix to common executables listed in `bundle_bins` option. You can add any custom executable to this list:
40
40
 
@@ -4,9 +4,9 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'capistrano-bundler'
7
- spec.version = '1.1.0'
8
- spec.authors = ['Tom Clements', 'Lee Hambley']
9
- spec.email = ['seenmyfate@gmail.com', 'lee.hambley@gmail.com']
7
+ spec.version = '1.1.1'
8
+ spec.authors = ['Tom Clements', 'Lee Hambley', 'Kir Shatrov']
9
+ spec.email = ['seenmyfate@gmail.com', 'lee.hambley@gmail.com', 'shatrov@me.com']
10
10
  spec.description = %q{Bundler support for Capistrano 3.x}
11
11
  spec.summary = %q{Bundler support for Capistrano 3.x}
12
12
  spec.homepage = 'https://github.com/capistrano/bundler'
@@ -47,6 +47,6 @@ namespace :load do
47
47
  set :bundle_without, %w{development test}.join(' ')
48
48
  set :bundle_binstubs, -> { shared_path.join('bin') }
49
49
  set :bundle_roles, :all
50
- set :bundle_bins, %w{gem rake ruby}
50
+ set :bundle_bins, %w{gem rake rails}
51
51
  end
52
52
  end
metadata CHANGED
@@ -1,15 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Clements
8
8
  - Lee Hambley
9
+ - Kir Shatrov
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2013-11-23 00:00:00.000000000 Z
13
+ date: 2013-11-29 00:00:00.000000000 Z
13
14
  dependencies:
14
15
  - !ruby/object:Gem::Dependency
15
16
  name: capistrano
@@ -71,6 +72,7 @@ description: Bundler support for Capistrano 3.x
71
72
  email:
72
73
  - seenmyfate@gmail.com
73
74
  - lee.hambley@gmail.com
75
+ - shatrov@me.com
74
76
  executables: []
75
77
  extensions: []
76
78
  extra_rdoc_files: []