forked from ryanwood/money_column
-
Notifications
You must be signed in to change notification settings - Fork 1
/
money_column.gemspec
22 lines (19 loc) · 922 Bytes
/
money_column.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "money_column/version"
Gem::Specification.new do |s|
s.name = "money_column"
s.version = MoneyColumn::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Tobias Lütke"]
s.email = ["[email protected]"]
s.homepage = "http://blog.leetsoft.com"
s.summary = %q{Simplifies dealing with money values in the database.}
s.description = %q{Rails plugin that makes handling of money values in the database convenient. On assignment the money column will
parse the input and apply heuristics to normalize oddball user input.}
s.rubyforge_project = "money_column"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end