mongoid_big_decimal_integer 0.1.0 → 0.1.1

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/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 1.9.2
5
+ - jruby-19mode
6
+ - rbx-19mode
data/Gemfile CHANGED
@@ -2,3 +2,7 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in mongoid-big_decimal_integer.gemspec
4
4
  gemspec
5
+
6
+ group :test do
7
+ gem "rake"
8
+ end
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
 
@@ -1,5 +1,5 @@
1
1
  module Mongoid
2
2
  class BigDecimalInteger
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -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{The default BigDecimal type provided in Mongoid stores BigDecimals as Strings. Because of this, stuff like sorts and range queries don't work. This type multiplies the value by a (configurable) power of 10 and stores the resulting Integer.}
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.0
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-01 00:00:00.000000000 Z
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: The default BigDecimal type provided in Mongoid stores BigDecimals as
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: []