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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a6016fbd92decde355720ff51ef93c6088ed92a
4
- data.tar.gz: 5b6022631cac42976a638be55c09d5fb323a6d31
3
+ metadata.gz: c31b216fef2dab8c641de4902034fb843a5c952b
4
+ data.tar.gz: a327fb7ffa5919429a90f00e433985cdfdc8a328
5
5
  SHA512:
6
- metadata.gz: 5c3b796fe62ec4b130c73d0ff5557af35819dae1246b0206de46011739c516ffd5127d7d87491d79af45fe88eb4ea402daee3649d6ea169e548d795929d00f56
7
- data.tar.gz: 1928b3dfb36fb9118aa285a45a46f40393098b3a2a47aae8b89b4cff21e1341e57df19b9cf29a5fc0ee69358a45547a63feffd6bb110025146d3b0e3963b9c7a
6
+ metadata.gz: 84b3296a9c4410cb1e0880cbfdbf07231e4b5d1d20fa9f23004ee8e3e22fe77f1689cf8def567ac95429a7fbae5078f37e949dd57eca1a9a5d95c31232840948
7
+ data.tar.gz: 0e703a9b7a764772767c0155f12fe5a7cbab0763238f4347f633ecd056b20043455fb22937229f7cd99adcca32106537ca32f632ca1649937bcbdd0aec6bfff4
@@ -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][])
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  #
8
8
  # TODO: Remove Config.repository in 0.3
9
9
  #
10
- s.version = '0.4.0'
10
+ s.version = '0.4.1'
11
11
 
12
12
  s.authors = ["Felipe Kaufmann"]
13
13
  s.email = ["felipekaufmann@gmail.com"]
@@ -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.0
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: 2013-08-03 00:00:00.000000000 Z
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.0.3
289
+ rubygems_version: 2.1.10
290
290
  signing_key:
291
291
  specification_version: 4
292
292
  summary: git push deployment helper