magic_recipes 0.1.4 → 0.1.5

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.
@@ -13,6 +13,8 @@ set :server_ip, "0.0.0.0" #=> IP of the Server
13
13
  set :deploy_to, "/home/deploy/apps/#{application}" #=> deploy path
14
14
  set :rails_env, "production" #=> Rails environment
15
15
 
16
+ # => set :use_sudo, true
17
+ # => set :put_via, :scp # => :sftp | :scp
16
18
 
17
19
  # rvm variables:
18
20
  # => set :rvm_ruby, '1.9.3' #=> Ruby version
data/lib/magic_recipes.rb CHANGED
@@ -58,11 +58,12 @@ module MagicRecipes
58
58
  default_run_options[:pty] = true
59
59
  ssh_options[:forward_agent] = true
60
60
 
61
+ # default put_via sftp
62
+ set_default :put_via, :sftp # => :sftp | :scp
61
63
 
62
64
  def template(from, to)
63
65
  erb = File.read(File.expand_path("../magic_recipes/templates/#{from}", __FILE__))
64
- # put ERB.new(erb).result(binding), to
65
- scp ERB.new(erb).result(binding), to
66
+ put ERB.new(erb).result(binding), to, via: put_via
66
67
  end
67
68
 
68
69
  def set_default(name, *args, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: magic_recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: