shoulda-lotus 0.0.5 → 0.0.6

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: 723616540123072d341e364b0a6a656c03c297b9
4
- data.tar.gz: 11d7861df93066e92882773e5f9ea58d60e303cc
3
+ metadata.gz: 31a69a24500edd858e80300cabd105375a9a703e
4
+ data.tar.gz: 2c2edad6201ae425ce6e24d71e9ab0777fc023cc
5
5
  SHA512:
6
- metadata.gz: ebc69db52057fe77cc700c3eaddfeb0a064e4ca541778326cb0230959a82bb2eed77868afe7f237ca4f1be73bd3da493df96c5c3a2509bea5d87c73260c5a842
7
- data.tar.gz: 2b9ee61080a1743fa2972f224a4a05294c24bc40d957758ef042a7d9fc9a8d1f71d9e882adc4f69b5e6c03ba10675826fd91827e4e2a0891264603392f62566b
6
+ metadata.gz: 40aa049ae183efe3faac7a72dc3e2c465daea15ecc3fb296d4461830963e1cf9c3e4cb94a03fb53850c0509cd8fbcdd9a864f29bb1b389844867e1be36435ba6
7
+ data.tar.gz: cebe972ade2d8ab060d95364bafe7efb01fd53bc84ed5471975203b1dffcc8e01a2702cc25391e82d9a6d4ea1d82c6deb82c678f79d377d546688b5199bf9c9d
data/.travis.yml CHANGED
@@ -8,12 +8,28 @@ rvm:
8
8
  - 2.1.4
9
9
  - 2.1.5
10
10
  - 2.1.6
11
+ - 2.1.7
12
+ - 2.1.8
11
13
  - 2.2.0
12
14
  - 2.2.1
13
15
  - 2.2.2
16
+ - 2.2.3
17
+ - 2.2.4
18
+ - 2.3.0
14
19
  - rbx-2
20
+ - jruby-9000
21
+ - jruby-9.0.1.0
22
+ - jruby-9.0.3.0
15
23
  - jruby-head
16
24
  - ruby-head
25
+ matrix:
26
+ allow_failures:
27
+ - rvm: rbx-2
28
+ - rvm: jruby-head
29
+ - rvm: ruby-head
30
+ - rvm: jruby-9000
31
+ - rvm: jruby-9.0.1.0
32
+ - rvm: jruby-9.0.3.0
17
33
  before_install: gem install bundler -v 1.10.5
18
34
  env:
19
35
  - TRAVIS=true
data/.yardopts ADDED
@@ -0,0 +1,7 @@
1
+ --no-private
2
+ --protected
3
+ --readme README.md
4
+ --files LICENSE.txt
5
+ --markup markdown
6
+ --hide-tag return
7
+ --hide-tag param
data/Gemfile CHANGED
@@ -1,3 +1,8 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
+ gem 'codeclimate-test-reporter'
5
+
6
+ # documentation
7
+ gem 'inch'
8
+ gem 'yard'
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # shoulda-lotus
2
- [![Gem Version](https://badge.fury.io/rb/shoulda-lotus.svg)](http://badge.fury.io/rb/shoulda-lotus) [![Build Status](https://travis-ci.org/mcorp/shoulda-lotus.svg?branch=master)](https://travis-ci.org/mcorp/shoulda-lotus) [![Code Climate](https://codeclimate.com/github/mcorp/shoulda-lotus/badges/gpa.svg)](https://codeclimate.com/github/mcorp/shoulda-lotus) [![Test Coverage](https://codeclimate.com/github/mcorp/shoulda-lotus/badges/coverage.svg)](https://codeclimate.com/github/mcorp/shoulda-lotus/coverage) [![Dependency Status](https://gemnasium.com/mcorp/shoulda-lotus.svg)](https://gemnasium.com/mcorp/shoulda-lotus)
2
+ [![Gem Version](https://badge.fury.io/rb/shoulda-lotus.svg)](http://badge.fury.io/rb/shoulda-lotus) [![Build Status](https://travis-ci.org/mcorp/shoulda-lotus.svg?branch=master)](https://travis-ci.org/mcorp/shoulda-lotus) [![Code Climate](https://codeclimate.com/github/mcorp/shoulda-lotus/badges/gpa.svg)](https://codeclimate.com/github/mcorp/shoulda-lotus) [![Test Coverage](https://codeclimate.com/github/mcorp/shoulda-lotus/badges/coverage.svg)](https://codeclimate.com/github/mcorp/shoulda-lotus/coverage) [![Dependency Status](https://gemnasium.com/mcorp/shoulda-lotus.svg)](https://gemnasium.com/mcorp/shoulda-lotus) [![Inline docs](http://inch-ci.org/github/mcorp/shoulda-lotus.svg?branch=master)](http://inch-ci.org/github/mcorp/shoulda-lotus)
3
3
 
4
4
  Making tests easy on the fingers and eyes, but on lotus.
5
5
 
@@ -74,4 +74,3 @@ it { is_expected.to validate_inclusion_of(:year).in_array(1979..1990) }
74
74
  ## License
75
75
 
76
76
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
77
-
@@ -1,5 +1,5 @@
1
1
  module Shoulda
2
2
  module Lotus
3
- VERSION = '0.0.5'.freeze
3
+ VERSION = '0.0.6'.freeze
4
4
  end
5
5
  end
@@ -21,7 +21,6 @@ Gem::Specification.new do |spec|
21
21
  spec.add_development_dependency "bundler", "~> 1.10"
22
22
  spec.add_development_dependency "rake", "~> 10.0"
23
23
  spec.add_development_dependency "rspec"
24
- spec.add_development_dependency 'codeclimate-test-reporter'
25
24
 
26
- spec.add_dependency 'lotus-validations', '~> 0.3.2'
25
+ spec.add_dependency 'lotus-validations', '~> 0.4.0'
27
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shoulda-lotus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leonardo Saraiva
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-07-07 00:00:00.000000000 Z
11
+ date: 2016-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,34 +52,20 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: codeclimate-test-reporter
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: lotus-validations
71
57
  requirement: !ruby/object:Gem::Requirement
72
58
  requirements:
73
59
  - - "~>"
74
60
  - !ruby/object:Gem::Version
75
- version: 0.3.2
61
+ version: 0.4.0
76
62
  type: :runtime
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
66
  - - "~>"
81
67
  - !ruby/object:Gem::Version
82
- version: 0.3.2
68
+ version: 0.4.0
83
69
  description:
84
70
  email:
85
71
  - vyper@maneh.org
@@ -90,6 +76,7 @@ files:
90
76
  - ".gitignore"
91
77
  - ".rspec"
92
78
  - ".travis.yml"
79
+ - ".yardopts"
93
80
  - Gemfile
94
81
  - LICENSE.txt
95
82
  - README.md
@@ -123,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
110
  version: '0'
124
111
  requirements: []
125
112
  rubyforge_project:
126
- rubygems_version: 2.4.8
113
+ rubygems_version: 2.5.1
127
114
  signing_key:
128
115
  specification_version: 4
129
116
  summary: Making tests easy on the fingers and eyes, but on lotus.