blazing 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -2
- data/blazing.gemspec +1 -1
- data/lib/blazing/commands.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c31b216fef2dab8c641de4902034fb843a5c952b
|
4
|
+
data.tar.gz: a327fb7ffa5919429a90f00e433985cdfdc8a328
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84b3296a9c4410cb1e0880cbfdbf07231e4b5d1d20fa9f23004ee8e3e22fe77f1689cf8def567ac95429a7fbae5078f37e949dd57eca1a9a5d95c31232840948
|
7
|
+
data.tar.gz: 0e703a9b7a764772767c0155f12fe5a7cbab0763238f4347f633ecd056b20043455fb22937229f7cd99adcca32106537ca32f632ca1649937bcbdd0aec6bfff4
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
## master
|
4
4
|
|
5
|
+
## 0.4.1 - February 17, 2014
|
6
|
+
|
7
|
+
* Make blazing goto command also work if stdin is not a terminal e.g. cronjob
|
8
|
+
|
5
9
|
## 0.4.0 - August 3, 2013
|
6
10
|
|
7
11
|
* Implement blazing goto command:
|
@@ -12,7 +16,7 @@
|
|
12
16
|
## 0.3.0 - January 23, 2013
|
13
17
|
|
14
18
|
* target name is passed to recipe at runtime
|
15
|
-
* Add alias for rvm_scripts (env_scripts) which enables the use of rbenv et al.
|
19
|
+
* Add alias for rvm_scripts (env_scripts) which enables the use of rbenv et al.
|
16
20
|
|
17
21
|
## 0.2.14 - October 23, 2012
|
18
22
|
|
@@ -30,7 +34,7 @@
|
|
30
34
|
* add quick and dirty fix for [#69][] (blazing requiring itself when using
|
31
35
|
git as source in Gemfile)
|
32
36
|
|
33
|
-
## 0.2.11 - July 11, 2012
|
37
|
+
## 0.2.11 - July 11, 2012
|
34
38
|
|
35
39
|
* add pimpmychangelog and pimp changelog
|
36
40
|
* fix git/bundler related issue ([#60][])
|
data/blazing.gemspec
CHANGED
data/lib/blazing/commands.rb
CHANGED
@@ -50,9 +50,9 @@ module Blazing
|
|
50
50
|
# TODO: Would be nice to detect zsh and use it instead of bash?
|
51
51
|
@targets.each do |target|
|
52
52
|
if @cli_options[:run]
|
53
|
-
system "ssh -t #{target.user}@#{target.host} 'cd #{target.path} && RAILS_ENV=#{target.options[:rails_env]} bash --login -c \"#{@cli_options[:run]}\"'"
|
53
|
+
system "ssh -t -t #{target.user}@#{target.host} 'cd #{target.path} && RAILS_ENV=#{target.options[:rails_env]} bash --login -c \"#{@cli_options[:run]}\"'"
|
54
54
|
else
|
55
|
-
system "ssh -t #{target.user}@#{target.host} 'cd #{target.path} && RAILS_ENV=#{target.options[:rails_env]} bash --login'"
|
55
|
+
system "ssh -t -t #{target.user}@#{target.host} 'cd #{target.path} && RAILS_ENV=#{target.options[:rails_env]} bash --login'"
|
56
56
|
end
|
57
57
|
end
|
58
58
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blazing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felipe Kaufmann
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rdoc
|
@@ -286,7 +286,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
286
286
|
version: '0'
|
287
287
|
requirements: []
|
288
288
|
rubyforge_project: blazing
|
289
|
-
rubygems_version: 2.
|
289
|
+
rubygems_version: 2.1.10
|
290
290
|
signing_key:
|
291
291
|
specification_version: 4
|
292
292
|
summary: git push deployment helper
|