oliver 2.1.6 → 2.2.0

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: 4937eeb6801207decdbdfd903f7ed9f0bfb111ca
4
- data.tar.gz: fe01a74c7b82b6430a458b37b2284d8567e14406
3
+ metadata.gz: bb3b76482d06d7a9f6e484dc0ed2af574850eb82
4
+ data.tar.gz: 6a99fc533ad4540744bf10be8a2e717ba0fe205e
5
5
  SHA512:
6
- metadata.gz: f562067065f8207fbafd772a65e73f4925cf99a84df442cb37fad3c6d5a91ad07c401329a2a27580582b576974f9e395a3ce81105271ffdfb3fb205f474ac68a
7
- data.tar.gz: dd507dfc77ee6f5a213a99c0f5a146f3adc0c720736f9124d63da6c25e3f2f97eda00cceb029a7870f8a18985029b275aa8982e22a4759e1a12d7d63c17e0922
6
+ metadata.gz: fad27482ce88a68e754a0691e4760fd184f1027584c515ad012d04a1ec9678cfb9e1edef1212f34dc88a733dc39221221b4f9cbcfd08540c71707ec1c539154f
7
+ data.tar.gz: 573be24933aa74f967ab523a2f3cf6729a94a89da91ad0495e0f4d9bec63a1c71ea2de4b9902ffa14b0152c50b73d57cbc9cee35f740cda1f0bb206e404891aa
data/README.md CHANGED
@@ -93,13 +93,13 @@ The + (plus sign) next to the repo shows that it'll be cloned on the next
93
93
  `olive install`. The # (pound sign) next to the repo
94
94
  means it'll remain unaffected.
95
95
 
96
- ### Update repos
96
+ ### Pull/Update repos
97
97
 
98
98
  Essentially run `git pull` in each
99
99
  individual repo
100
100
 
101
101
  ```bash
102
- $ olive update
102
+ $ olive pull
103
103
  ```
104
104
 
105
105
  To-Do
@@ -93,7 +93,7 @@ module Oliver
93
93
  end
94
94
 
95
95
  # Still buggy, afaik
96
- def update
96
+ def pull
97
97
  dirs = Dir.glob('*').select { |f| File.directory? f }
98
98
  dirs.each do |dir|
99
99
  Dir.chdir(dir)
@@ -1,8 +1,8 @@
1
1
  module Oliver
2
2
  module Version
3
3
  MAJOR = 2
4
- MINOR = 1
5
- PATCH = 6
4
+ MINOR = 2
5
+ PATCH = 0
6
6
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  end
8
8
  end
data/lib/oliver.rb CHANGED
@@ -55,7 +55,7 @@ module Oliver
55
55
  init: 'initializes the main directory by creating a base dotfile',
56
56
  install: 'clones/removes repos if they\'re listed',
57
57
  list: 'list user repos',
58
- update: 'pull updates from each tracked repo',
58
+ pull: 'pull updates from each tracked repo',
59
59
  version: 'return the current version',
60
60
  help: 'return this help menu',
61
61
  }
@@ -78,8 +78,8 @@ module Oliver
78
78
  install
79
79
  when 'list'
80
80
  list
81
- when 'update'
82
- update
81
+ when 'pull'
82
+ pull
83
83
  else end
84
84
  end
85
85
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oliver
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.6
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Trommel