divisible 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/divisible.gemspec +1 -1
- data/lib/divisible.rb +1 -0
- data/lib/divisible/version.rb +1 -1
- metadata +5 -5
data/divisible.gemspec
CHANGED
@@ -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
|
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"
|
data/lib/divisible.rb
CHANGED
data/lib/divisible/version.rb
CHANGED
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:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
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-
|
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
|
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: []
|