bard 0.25.3 → 0.26.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f122150745a2b72489549716dbea4d0c69a138ab
4
- data.tar.gz: c1677420b7a04d14dc120d23b836f60645ab194c
3
+ metadata.gz: 66249934c210a58d03da6fdee34e41b7171a44c3
4
+ data.tar.gz: 2d47f460ec6f9a7941014403249d95fbe604cd1d
5
5
  SHA512:
6
- metadata.gz: 6482e1ab6ef8ee0c9f262b684bceed67e20d27702558f4220eb8ffe8357a32a63191135b2100beb07e83ca974b0a57b94d7c104ee1ca81352f9eb18fe192a8cd
7
- data.tar.gz: dc881f2b10eb5c8b4f1c01103cd7163fcee6046d510af9d9e4c0b6fd3929e28213c551854a52bbbf555d90257103841ba80df51a403a94c890d6e9c6a2424e44
6
+ metadata.gz: 5622963001c8b10b6128515ec2bef5399f59cb1e433ead730d86eef1c09559d1fa0d579c7b902f0a532efcb3a64bf013390aeb6e0659d8711a1a657c94b2d5af
7
+ data.tar.gz: c22e74560e5ed7aba90f6c4927cc062f9aac00c17dc7c13d0ad3ca43218608f4bbe938c4f8c111df2ddadebeb7781a894b1f565a5adb5b66f0609802e7b2cbc8
@@ -1 +1 @@
1
- ruby-2.1.2
1
+ ruby-2.2.6
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency "thor", "= 0.11.7"
21
+ spec.add_dependency "thor", "~> 0.19.0"
22
22
  spec.add_dependency "capistrano", "= 2.5.10"
23
23
  spec.add_dependency "net-ssh", "= 3.0.1"
24
24
  spec.add_dependency "rvm-capistrano"
@@ -19,7 +19,7 @@ class Bard::CLI < Thor
19
19
  branch = Git.current_branch
20
20
 
21
21
  run_crucial "git pull --rebase origin #{branch}", options.verbose?
22
- run_crucial "bundle && bundle exec rake bootstrap", options.verbose?
22
+ run_crucial "bin/setup", options.verbose?
23
23
  end
24
24
 
25
25
  method_options %w( verbose -v ) => :boolean
@@ -68,7 +68,7 @@ Capistrano::Configuration.instance(:must_exist).load do
68
68
  system "heroku run rake bootstrap:production:post"
69
69
  else
70
70
  system "git push github" if `git remote` =~ /\bgithub\b/
71
- run "cd #{application} && git pull origin master && bundle && bundle exec rake bootstrap:production", :roles => :production
71
+ run "cd #{application} && git pull origin master && bin/setup", :roles => :production
72
72
  end
73
73
  end
74
74
 
@@ -79,7 +79,7 @@ Capistrano::Configuration.instance(:must_exist).load do
79
79
  system "heroku run rake bootstrap:production:post"
80
80
  else
81
81
  branch = ENV.fetch("BRANCH")
82
- run "cd #{application} && git fetch && git checkout -f origin/#{branch} && bundle && bundle exec rake bootstrap:production", :roles => :staging
82
+ run "cd #{application} && git fetch && git checkout -f origin/#{branch} && bin/setup", :roles => :staging
83
83
  end
84
84
  end
85
85
 
@@ -1,4 +1,4 @@
1
1
  module Bard
2
- VERSION = "0.25.3"
2
+ VERSION = "0.26.0"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.3
4
+ version: 0.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Micah Geisel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-16 00:00:00.000000000 Z
11
+ date: 2017-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '='
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.7
19
+ version: 0.19.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '='
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.11.7
26
+ version: 0.19.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: capistrano
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
209
  version: '0'
210
210
  requirements: []
211
211
  rubyforge_project:
212
- rubygems_version: 2.4.7
212
+ rubygems_version: 2.4.8
213
213
  signing_key:
214
214
  specification_version: 4
215
215
  summary: CLI to automate common development tasks.