mongoid_big_decimal_integer 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +6 -0
- data/Gemfile +4 -0
- data/README.md +1 -1
- data/lib/mongoid/big_decimal_integer/version.rb +1 -1
- data/mongoid_big_decimal_integer.gemspec +2 -2
- metadata +5 -6
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Mongoid::BigDecimalInteger
|
1
|
+
# Mongoid::BigDecimalInteger [![Build Status](https://secure.travis-ci.org/gcirne/mongoid_big_decimal_integer.png?branch=master)](https://travis-ci.org/gcirne/mongoid_big_decimal_integer)
|
2
2
|
|
3
3
|
Mongoid type which stores BigDecimals as Integers.
|
4
4
|
|
@@ -4,9 +4,9 @@ require File.expand_path('../lib/mongoid/big_decimal_integer/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Guilherme Cirne"]
|
6
6
|
gem.email = ["gcirne@gmail.com"]
|
7
|
-
gem.description = %q{
|
7
|
+
gem.description = %q{Mongoid type which stores BigDecimals as Integers.}
|
8
8
|
gem.summary = %q{Mongoid type which stores BigDecimals as Integers.}
|
9
|
-
gem.homepage = ""
|
9
|
+
gem.homepage = "https://github.com/gcirne/mongoid_big_decimal_integer"
|
10
10
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
12
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongoid_big_decimal_integer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-12-
|
12
|
+
date: 2012-12-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -27,9 +27,7 @@ dependencies:
|
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '0'
|
30
|
-
description:
|
31
|
-
Strings. Because of this, stuff like sorts and range queries don't work. This type
|
32
|
-
multiplies the value by a (configurable) power of 10 and stores the resulting Integer.
|
30
|
+
description: Mongoid type which stores BigDecimals as Integers.
|
33
31
|
email:
|
34
32
|
- gcirne@gmail.com
|
35
33
|
executables: []
|
@@ -39,6 +37,7 @@ files:
|
|
39
37
|
- .gitignore
|
40
38
|
- .rspec
|
41
39
|
- .rvmrc
|
40
|
+
- .travis.yml
|
42
41
|
- Gemfile
|
43
42
|
- LICENSE
|
44
43
|
- README.md
|
@@ -49,7 +48,7 @@ files:
|
|
49
48
|
- mongoid_big_decimal_integer.gemspec
|
50
49
|
- spec/mongoid/big_decimal_integer_spec.rb
|
51
50
|
- spec/spec_helper.rb
|
52
|
-
homepage:
|
51
|
+
homepage: https://github.com/gcirne/mongoid_big_decimal_integer
|
53
52
|
licenses: []
|
54
53
|
post_install_message:
|
55
54
|
rdoc_options: []
|