-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmongoid_money.gemspec
34 lines (32 loc) · 1009 Bytes
/
mongoid_money.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{mongoid_money}
s.version = "0.2.1"
s.authors = ["Jeff Bozek"]
s.date = %q{2011-05-30}
s.description = %q{Money datatype for Mongoid. Inspired by Ruby Money. Makes handling money simple. Stores the value in the db as cents. Currently handles USD.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE.txt",
"README.markdown"
]
s.files = [
"lib/mongoid_money.rb",
"lib/mongoid_money/conversions.rb",
"lib/mongoid_money/money.rb"
]
s.homepage = %q{http://github.com/jeffbozek/mongoid_money}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.summary = %q{Money datatype for Mongoid. Inspired by Ruby Money.}
s.test_files = [
"spec/conversion_spec.rb",
"spec/money_spec.rb",
"spec/spec_helper.rb",
"spec/support/dummy_money.rb"
]
end
end