lieu 1.0.0 → 1.0.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: e394c13ae4c6fff4a3931320af5dbe933017417e
4
- data.tar.gz: 9e3b609e92d29e93fee60ce0bb1ece5d4bf1981a
3
+ metadata.gz: aea763023dcdc3bd926e379186a1d5da268fd498
4
+ data.tar.gz: 9490d61b9ddfbfc2ab4963db26f0f324a97321ae
5
5
  SHA512:
6
- metadata.gz: 793d79dccd5240f699cb4261f5c714a3a34402a5c88c1d2052158a1593699dade407cff69322c1a34bab82e3b033a12aee502586a078ae4cda9fc0ba472052bf
7
- data.tar.gz: df5a98efd715f561f8d0da18788ea6038aab058a6e95de37d445ae397f19bb721a37b9eca40f1ac96b5892dd35934265b974bc84909f534988786221774d7bda
6
+ metadata.gz: c7007a0ec0fe843ea041bdec4305354fbe554f6fd1739c0caabf86a19d8bf9677946b8d6a5fefb5b604ec703ed61d01044edff82c98166b4aef0b1ccce044ce6
7
+ data.tar.gz: cde71d8f5b17c8ca65c5a4715b3e67962175346393f42d4298d7ef244f38108284b4dedb528cc16184c2a6590c8070f22b7bbc06bbefc3ed40295c97fa3f1f0f
data/.yardopts ADDED
@@ -0,0 +1,4 @@
1
+ --no-private
2
+ --quiet
3
+ --markup=markdown
4
+ --exclude lib/lieu/response
data/README.md CHANGED
@@ -26,7 +26,7 @@ Install via Rubygems
26
26
 
27
27
  or add to your Gemfile
28
28
 
29
- gem 'lieu', '~> 1.0'
29
+ gem 'lieu'
30
30
 
31
31
  ### Configuration
32
32
 
@@ -102,11 +102,11 @@ Lieu follows the principles of [semantic versioning](http://semver.org).
102
102
 
103
103
  Pull Requests are welcome !
104
104
 
105
- Please refer to the [Contributing guide](https://github.com/sush/lieu/master/CONTRIBUTING.md) for more details on how to run the test suite and to contribute.
105
+ Please refer to the [Contributing guide](https://github.com/sush/lieu/blob/master/CONTRIBUTING.md) for more details on how to run the test suite and to contribute.
106
106
 
107
107
 
108
108
  ## Copyright
109
109
 
110
110
  Copyright © 2013 Aylic Petit
111
111
 
112
- Released under the terms of the MIT licence. See the [LICENSE](https://github.com/sush/lieu/master/LICENSE) file for more details.
112
+ Released under the terms of the MIT licence. See the [LICENSE](https://github.com/sush/lieu/blob/master/LICENSE) file for more details.
data/lib/lieu/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Lieu
2
2
  # Current version
3
3
  # @return [String]
4
- VERSION = '1.0.0'.freeze
4
+ VERSION = '1.0.1'.freeze
5
5
  end
data/lieu.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
17
17
 
18
18
  gem.required_ruby_version = '>= 1.9.2'
19
19
 
20
- gem.files = %w[LICENSE README.md CONTRIBUTING.md Rakefile lieu.gemspec]
20
+ gem.files = %w[.yardopts LICENSE README.md CONTRIBUTING.md Rakefile lieu.gemspec]
21
21
  gem.files += Dir.glob('{spec,lib}/**/*.rb')
22
22
  gem.require_paths = ['lib']
23
23
  gem.test_files = Dir.glob('spec/**/*')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lieu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aylic Petit
@@ -31,6 +31,7 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - .yardopts
34
35
  - LICENSE
35
36
  - README.md
36
37
  - CONTRIBUTING.md