itamae-plugin-recipe-rtn_git 0.1.0 → 0.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: ce6104055dd2c6a9687e823aee08b97e896bc008
4
- data.tar.gz: ba1e3303de793e01e4d0d45c2cf56945d7deb9da
3
+ metadata.gz: 9c5a48a58da4d6bd012b92940cf261da79d6edca
4
+ data.tar.gz: e48c2f779d5b7714de4b77ee415e111c22bb731a
5
5
  SHA512:
6
- metadata.gz: 4f24c3923addc807142e2525d935fc801d42b41c459d02913c3d0cc258d8ccce4fc1d373c5610bb171d256abe0b5d2b9d1cb044506acd18a10daaa8a3c74ec51
7
- data.tar.gz: ad0886780e9cb5116a4ebb6e640f282b8b3637cf09580b37e53df49c5b4dc62e3c2786d2370e6c404aacfbab3b176e93904ff70cb0d1774384bfa1a043fc5b2d
6
+ metadata.gz: 2023b192458f660b0f2c89bef59fe51ee3c8d1ccb3c47cdf0e804a2a805554ec2a300b6bffc5faea0ded0f8a4dae2a3471237691e52f204c7bd94205c1aed5f3
7
+ data.tar.gz: 61c4f0a30d33f517bd7aa86c41fc0e127af638f62d85bb739f28ac83637a1653bb7bf1166df6803008a9718a040bcab833e2bf325ae04ce9786099edc337ec6d
@@ -0,0 +1,4 @@
1
+ # encoding: utf-8
2
+
3
+ include_recipe 'rtn_git::system'
4
+
@@ -29,7 +29,7 @@ define :git_install, install_path: nil, archive_url: nil do
29
29
  end
30
30
  packages.each &method(:package)
31
31
 
32
- execute "cd #{tmp_dir} && wget #{params[:archive_url]}" do
32
+ execute "cd #{tmp_dir} && wget #{params[:archive_url]} -O #{tmp_dir}/#{filename}" do
33
33
  not_if "test -O #{tmp_dir}/#{filename}"
34
34
  end
35
35
 
@@ -49,3 +49,4 @@ git_install node[:rtn_git][:version] do
49
49
  archive_url node[:rtn_git][:archive_url]
50
50
  not_if ". /etc/profile && git --version | grep '#{node[:rtn_git][:version]}'"
51
51
  end
52
+
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module RtnGit
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-rtn_git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ru/MuckRu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-21 00:00:00.000000000 Z
11
+ date: 2015-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -80,6 +80,7 @@ files:
80
80
  - Rakefile
81
81
  - Vagrantfile
82
82
  - itamae-plugin-recipe-rtn_git.gemspec
83
+ - lib/itamae/plugin/recipe/rtn_git/source.rb
83
84
  - lib/itamae/plugin/recipe/rtn_git/system.rb
84
85
  - lib/itamae/plugin/recipe/rtn_git/version.rb
85
86
  - spec/git_spec.rb