dotstrap 0.3.0 → 0.3.1
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.
- checksums.yaml +4 -4
- data/bin/dotstrap +2 -2
- data/dotstrap.gemspec +2 -2
- data/lib/dotstrap.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 249a0a5f9933e523230f50d14e42f7780ea07003
|
|
4
|
+
data.tar.gz: 8c5d0586c07392f18d4e7fabed00f4a0f72128d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 672a96c0590edabeed903de3cfd2b3f82f69779885eb6c7d7d556fee9f368026edcd51d16f14241d3790cf028f1a51d52a72a11c080ae01d2ee1b37ae75b69ef
|
|
7
|
+
data.tar.gz: 7a5fbcac243f56b355fd2baaf8a88980bc30ae516f15cc74b3a3ec03a9e9c86ba1fc78eba75927cb183e8e25c0b50f8606592b61b86dafb50463f0307ad1c329
|
data/bin/dotstrap
CHANGED
|
@@ -72,14 +72,14 @@ module Dotstrap
|
|
|
72
72
|
Download all the repositories listed in the file ~/.config/repos.txt
|
|
73
73
|
\x5 $ ds install ~/.config/repos.txt
|
|
74
74
|
LONGDESC
|
|
75
|
-
option :
|
|
75
|
+
option :fetch, :type => :boolean, :default => :fetch
|
|
76
76
|
def install(repo, *args)
|
|
77
77
|
args << repo # so thor will not complain when you call `install` with no args
|
|
78
78
|
repos = __determine_repos(args)
|
|
79
79
|
__set_log_level
|
|
80
80
|
$LOG.debug { "REPO ARGS:#{repos}" }
|
|
81
81
|
ds = Dotstrap::Configuration.new(repos)
|
|
82
|
-
options[:
|
|
82
|
+
options[:fetch] ? ds.install : ds.configure
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
desc 'uninstall REPO...', 'Remove specified REPO'
|
data/dotstrap.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: dotstrap 0.3.
|
|
5
|
+
# stub: dotstrap 0.3.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "dotstrap"
|
|
9
|
-
s.version = "0.3.
|
|
9
|
+
s.version = "0.3.1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.metadata = { "documentation" => "http://www.rubydoc.info/github/mkwmms/dotstrap/master/Dotstrap", "source_code" => "http://github.com/mkwmms/dotstrap" } if s.respond_to? :metadata=
|
data/lib/dotstrap.rb
CHANGED
|
@@ -8,7 +8,7 @@ require_relative 'dotstrap/shell'
|
|
|
8
8
|
module Dotstrap
|
|
9
9
|
NAME = 'dotstrap'
|
|
10
10
|
EXE_NAME = 'dotstrap'
|
|
11
|
-
VERSION = '0.3.
|
|
11
|
+
VERSION = '0.3.1'
|
|
12
12
|
AUTHOR = 'William Myers'
|
|
13
13
|
HOMEPAGE = 'http://github.com/mkwmms/dotstrap'
|
|
14
14
|
SOURCE_URL = 'http://github.com/mkwmms/dotstrap'
|