divisible 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.email = ["vlado@cingel.hr"]
11
11
  s.homepage = "https://github.com/vlado/divisible"
12
12
  s.summary = "Useful to find out if one number is divisible by another"
13
- s.description = "Useful to find out if one number is divisible by another. For example 9.divisible_by(3) will return true, and 10.divisible_by(3) will return false"
13
+ s.description = "Useful to find out if one number is divisible by another. For example 9.divisible_by?(3) will return true, and 9.divisible_by?(2) will return false"
14
14
 
15
15
  s.required_rubygems_version = ">= 1.3.6"
16
16
  s.rubyforge_project = "divisible"
@@ -1,3 +1,4 @@
1
+ require "divisible/version"
1
2
  require "divisible/core_ext"
2
3
 
3
4
  module Divisible
@@ -1,3 +1,3 @@
1
1
  module Divisible
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: divisible
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Vlado Cingel
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-02-27 00:00:00 Z
18
+ date: 2012-02-28 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  prerelease: false
@@ -31,7 +31,7 @@ dependencies:
31
31
  version: "0"
32
32
  type: :development
33
33
  requirement: *id001
34
- description: Useful to find out if one number is divisible by another. For example 9.divisible_by(3) will return true, and 10.divisible_by(3) will return false
34
+ description: Useful to find out if one number is divisible by another. For example 9.divisible_by?(3) will return true, and 9.divisible_by?(2) will return false
35
35
  email:
36
36
  - vlado@cingel.hr
37
37
  executables: []