oliver 1.6.2.1 → 1.6.3
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/README.md +5 -3
- data/lib/oliver/argument_files/init.rb +2 -2
- data/lib/oliver/file_manager.rb +1 -1
- data/lib/oliver/oliver_file_name.rb +1 -1
- data/lib/oliver/version.rb +1 -1
- data/lib/oliver.rb +1 -1
- metadata +2 -3
- data/lib/oliver/main.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a018083f29a78e5e8b047eecc3a7fc160c2f5298
|
4
|
+
data.tar.gz: fea413d6340a753dca2932ba446c0859b5e75385
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e3ffb1f48aa28454e092c229f160759b3260299c6533cf7aa0c2e11da61bda17eda7efd980244d7d0698831d4c42c6e8a16006a46b31807c0edee7a367ccdeb
|
7
|
+
data.tar.gz: b27bf4287ffd2436a09de7bba1186f699c14c6a16af1d4a47ae620af58316711a40a555ca703820e155780191272a6007b3d001d746804c55fcb604f323ba80b
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@ oliver
|
|
4
4
|
[](http://badge.fury.io/rb/oliver)
|
5
5
|
|
6
6
|
oliver manages your local GitHub
|
7
|
-
repositories for you with a simple
|
7
|
+
repositories for you with a simple `.Olivefile.yml`.
|
8
8
|
|
9
9
|
> "like podfiles, but for git repositories"
|
10
10
|
-- [@istx25](https://github.com/istx25)
|
@@ -105,18 +105,20 @@ docs
|
|
105
105
|
|
106
106
|
### setup the repo
|
107
107
|
|
108
|
-
create the base
|
108
|
+
create the base `.Olivefile.yml`
|
109
109
|
|
110
110
|
```bash
|
111
111
|
$ olive init
|
112
112
|
```
|
113
113
|
|
114
|
-
(and in the
|
114
|
+
(and in the `.Olivefile.yml`)
|
115
115
|
|
116
116
|
```yaml
|
117
|
+
---
|
117
118
|
repos:
|
118
119
|
- "trommel/oliver"
|
119
120
|
- "istx25/dotfiles" # add any repo(s)
|
121
|
+
---
|
120
122
|
|
121
123
|
# use 3 spaces for indentation, not tabs!
|
122
124
|
# I spent, like, an hour trying to fix a non-existent bug because of this
|
@@ -14,8 +14,8 @@ def init
|
|
14
14
|
|
15
15
|
if !File.file?(Name::OLIVER)
|
16
16
|
File.open(Name::OLIVER, 'w') do |file|
|
17
|
-
file.write("
|
18
|
-
file.write(" - \"trommel/oliver\"\n")
|
17
|
+
file.write("---\nrepos:\n")
|
18
|
+
file.write(" - \"trommel/oliver\"\n---\n")
|
19
19
|
puts "#{Rainbow(dir_name).green}/#{Rainbow(Name::OLIVER).green} has been created."
|
20
20
|
end
|
21
21
|
else
|
data/lib/oliver/file_manager.rb
CHANGED
data/lib/oliver/version.rb
CHANGED
data/lib/oliver.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oliver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -80,7 +80,6 @@ files:
|
|
80
80
|
- lib/oliver/argument_files/update.rb
|
81
81
|
- lib/oliver/arguments.rb
|
82
82
|
- lib/oliver/file_manager.rb
|
83
|
-
- lib/oliver/main.rb
|
84
83
|
- lib/oliver/oliver_file_name.rb
|
85
84
|
- lib/oliver/version.rb
|
86
85
|
- oliver.gemspec
|
data/lib/oliver/main.rb
DELETED