yamlet 0.1.0 → 0.1.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/README.md +7 -1
- data/lib/yamlet/version.rb +1 -1
- data/lib/yamlet.rb +0 -1
- metadata +1 -2
- data/.travis.yml +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ba1e2e97362129370483d162b62a47388c36bcb
|
|
4
|
+
data.tar.gz: f51785662ec9de4345195ed747aa14e571809fcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35b52027910fc1892bdec86da00c5076c89a72859f8bb2609e95ffd5450e5c31a6daeb1b96567274847c54982312dd24a689ea02ad0cf7f258a8959583697847
|
|
7
|
+
data.tar.gz: ef9115a0e81641643bbadcad6746eac354e4eb47189d41e13080c602c2751a541d885e18088940ce5dc276de89be856e36362ea52b9967bcdd14600186bfb539
|
data/README.md
CHANGED
|
@@ -33,7 +33,7 @@ Usage
|
|
|
33
33
|
First, create a YAML file somewhere then tell Yamlet where to find that file which we'll be using for storing data.
|
|
34
34
|
|
|
35
35
|
```ruby
|
|
36
|
-
|
|
36
|
+
Yamlet.repository_file = "/path/to/repository.yml"
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
**NOTE: A `RepositoryNotFound` error will be raised when Yamlet can't locate the YAML file.**
|
|
@@ -107,6 +107,12 @@ user: []
|
|
|
107
107
|
User.destroy_all #=> []
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
+
## Run the tests
|
|
111
|
+
|
|
112
|
+
```terminal
|
|
113
|
+
$ rspec spec
|
|
114
|
+
```
|
|
115
|
+
|
|
110
116
|
## Contributing
|
|
111
117
|
|
|
112
118
|
1. Fork it ( https://github.com/[my-github-username]/yamlet/fork )
|
data/lib/yamlet/version.rb
CHANGED
data/lib/yamlet.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yamlet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robbie Marcelo
|
|
@@ -61,7 +61,6 @@ extensions: []
|
|
|
61
61
|
extra_rdoc_files: []
|
|
62
62
|
files:
|
|
63
63
|
- ".gitignore"
|
|
64
|
-
- ".travis.yml"
|
|
65
64
|
- Gemfile
|
|
66
65
|
- README.md
|
|
67
66
|
- Rakefile
|
data/.travis.yml
DELETED