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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 06b5a3debbd877e85d7b1c418dd75cb7e0a29f30
4
- data.tar.gz: 0b0fd86545433c553c8be7e9c7cec3f68f530d3e
3
+ metadata.gz: 249a0a5f9933e523230f50d14e42f7780ea07003
4
+ data.tar.gz: 8c5d0586c07392f18d4e7fabed00f4a0f72128d2
5
5
  SHA512:
6
- metadata.gz: 95cccf83f393fe078fa1b6c219f4f5ef233bf28be19283eda275a4cff9ecb668e84cea290fdaa3f6933df1b3e350edf39ede3223964d573f53155946b8e433cd
7
- data.tar.gz: 022ddb81f1a5b47d8c354c9fae1e0ff4ec15419e4a86974cf0883ba6980d0ee83f4270438dbf514398ff067eeefd5d3754ac81094f0af74926d18f17039df39e
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 :no_fetch, :type => :boolean
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[:no_fetch] ? ds.configure : ds.install
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.0 ruby lib
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.0"
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.0'
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'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dotstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Myers