-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmoney-heuristics.gemspec
29 lines (24 loc) · 1.12 KB
/
money-heuristics.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "money-heuristics/version"
Gem::Specification.new do |s|
s.name = "money-heuristics"
s.version = MoneyHeuristics::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Shane Emmons', 'Anthony Dmitriyev']
s.email = ['[email protected]']
s.homepage = 'https://rubymoney.github.io/money-heuristics'
s.summary = 'Heuristic module for for the money gem'
s.description = 'This is a module for heuristic analysis of the string input for the money gem. It was formerly part of the gem.'
s.license = 'MIT'
s.add_dependency 'money', '>= 6.9.0'
s.add_dependency 'sixarm_ruby_unaccent', ['>= 1.1.1', '< 2']
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 3.4.0"
s.add_development_dependency "yard", "~> 0.9.11"
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
end