rebuild 0.4.2 → 0.4.3

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: e4136940bdf93abef19c6a1e0bebfcf468dab97b
4
- data.tar.gz: f5ba90fa461f4f4572eeb06b085ad49f9dc007d3
3
+ metadata.gz: 2a7575b09b41fd4f14f726a60a9397b4c418b06c
4
+ data.tar.gz: 7f46253e1cb540fa95cf4ba102506cb7ba57d945
5
5
  SHA512:
6
- metadata.gz: bf4c17bc2bfa90ce5a946a46aaeab89a969e459f4d758b7e1f02a8b5bac855c29e6c0b76005c808be21b4da482da46a55005184fa0fd7eef316892b9b0d72aae
7
- data.tar.gz: 5cdc34c285e344cdddee657ef7ddbc5b37ec76d2633be915bb5e40bd65fc73af3e73e390b3d4e78c8c3b25dedfa526693c107a974833702a84abddd50345e740
6
+ metadata.gz: f9ed8d867c7dd5c9daf83aeeb64d6f64a1cbf835caaa7896dd632b3515c4526ae66f0504db960791bab6991e137cc77f7f27f1a454b58b3cc5d2949d8690dceb
7
+ data.tar.gz: 208da4cf0dc9d5285a855394066267d6cf736f8501c762c1dce9067a03d3840abf71cf48ce980d6f3990ab29ffcbf9f184b106bce3eb563a64a0d021d0aae8f9
data/README.md CHANGED
@@ -83,6 +83,9 @@ You can skip choosing option by ~/.gitconfig
83
83
 
84
84
  # cloned directory path
85
85
  directory = ~/src/github.com/k0kubun/dotfiles
86
+
87
+ # selected scripts are executed primarily in this order
88
+ dependency = brew.sh ruby.sh
86
89
  ```
87
90
 
88
91
  ## Supported OS
@@ -48,7 +48,7 @@ module Rebuild
48
48
 
49
49
  def bootstrap(repo, stdin, options)
50
50
  repo_path = Repository.new(repo, options).fetch
51
- primary_scripts = (stdin || '').split
51
+ primary_scripts = (stdin || options[:dependency] || '').split
52
52
 
53
53
  runner = Runner.new(repo_path, primary_scripts, options[:scriptdir])
54
54
  runner.run
@@ -1,3 +1,3 @@
1
1
  module Rebuild
2
- VERSION = '0.4.2'
2
+ VERSION = '0.4.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rebuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun