yamlet 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c14bd6ad734910c22346d831a4b48e2748696d27
4
- data.tar.gz: 1d732ca97ab906be3746e00523e6f1659c8855be
3
+ metadata.gz: 0ba1e2e97362129370483d162b62a47388c36bcb
4
+ data.tar.gz: f51785662ec9de4345195ed747aa14e571809fcf
5
5
  SHA512:
6
- metadata.gz: 98ccb512e83c59fbfae23b12a29c8e6c951bc1873aee373d36cdf59dd1e63ad0cd23de2719d7922bae4bd649b8b720482f9871cd5fca685c9dcaa3ca2d8cca15
7
- data.tar.gz: 060becb5ec15352c24fdb180633808339cefc5e0d6e03f2e148b561e9b72de33ce1d6952b72bef269ca7c6c537743a58f6f81ed2ed62297cc5feffe472ac7208
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
- Yamlet.repository_file = "/path/to/repository.yml"
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 )
@@ -1,3 +1,3 @@
1
1
  module Yamlet
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/yamlet.rb CHANGED
@@ -25,7 +25,6 @@ module Yamlet
25
25
  end
26
26
 
27
27
  module Model
28
- Error = Class.new(StandardError)
29
28
 
30
29
  def self.included(klass)
31
30
  klass.define_singleton_method :resource_name, -> {
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.0
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
@@ -1,3 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.2