act_as_time_as_boolean 0.1.1 → 0.1.2

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.
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # ActAsTimeAsBoolean
2
2
 
3
3
  [![Build Status][travis_img]][travis_url]
4
+ [![Gem Version][fury_img]][fury_url]
5
+ [![Code Climate][code_climate_img]][code_climate_url]
6
+ [![Dependency Status][gemnasium_img]][gemnasium_url]
7
+ [![Coverage Status][coveralls_img]][coveralls_url]
4
8
 
5
9
  _Add time_as_boolean feature to your ruby classes_
6
10
 
@@ -58,3 +62,11 @@ Released under the MIT License. See the [LICENSE](https://github.com/caedes/act_
58
62
 
59
63
  [travis_img]: https://travis-ci.org/caedes/act_as_time_as_boolean.png?branch=master
60
64
  [travis_url]: https://travis-ci.org/caedes/act_as_time_as_boolean
65
+ [fury_img]: https://badge.fury.io/rb/act_as_time_as_boolean.png
66
+ [fury_url]: http://badge.fury.io/rb/act_as_time_as_boolean
67
+ [code_climate_img]: https://codeclimate.com/github/caedes/act_as_time_as_boolean.png
68
+ [code_climate_url]: https://codeclimate.com/github/caedes/act_as_time_as_boolean
69
+ [gemnasium_img]: https://gemnasium.com/caedes/act_as_time_as_boolean.png
70
+ [gemnasium_url]: https://gemnasium.com/caedes/act_as_time_as_boolean
71
+ [coveralls_img]: https://coveralls.io/repos/caedes/act_as_time_as_boolean/badge.png?branch=master
72
+ [coveralls_url]: https://coveralls.io/r/caedes/act_as_time_as_boolean?branch=master
@@ -15,4 +15,5 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.add_development_dependency 'rake'
17
17
  s.add_development_dependency 'rspec', '~> 2.13'
18
+ s.add_development_dependency 'coveralls', '~> 0.6'
18
19
  end
@@ -1,3 +1,3 @@
1
1
  module ActAsTimeAsBoolean
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1 +1,4 @@
1
+ require 'coveralls'
2
+ Coveralls.wear!
3
+
1
4
  require 'act_as_time_as_boolean'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: act_as_time_as_boolean
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -43,6 +43,22 @@ dependencies:
43
43
  - - ~>
44
44
  - !ruby/object:Gem::Version
45
45
  version: '2.13'
46
+ - !ruby/object:Gem::Dependency
47
+ name: coveralls
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: '0.6'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '0.6'
46
62
  description: Add time_as_boolean feature to your ruby classes
47
63
  email:
48
64
  - laurentromain@gmail.com