-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfixed_point_field.gemspec
More file actions
23 lines (22 loc) · 899 Bytes
/
fixed_point_field.gemspec
File metadata and controls
23 lines (22 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = "fixed_point_field"
s.version = "1.2"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Todd Willey <todd@rubidine.com>"]
s.date = "2010-07-09"
s.description = "Store numeric amounts with a known number of decial points, such as currency, as a whole number, for more precise (non-floating point) operations."
s.email = "powerup@rubidine.com"
s.extra_rdoc_files = ["README"]
s.files = [
"README",
"Rakefile",
"lib/fixed_point_field.rb",
"tasks/fixed_point_field_tasks.rake",
"test/fixed_point_field_test.rb"
]
s.homepage = "http://github.com/rubidine/fixed_point_field"
s.require_paths = ["lib"]
s.rubygems_version = "1.3.5"
s.summary = "ActiveRecord plugin for dealing with currency"
s.test_files = ["test/fixed_point_field_test.rb"]
end