forked from mbulat/plutus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplutus.gemspec
More file actions
33 lines (29 loc) · 1.32 KB
/
plutus.gemspec
File metadata and controls
33 lines (29 loc) · 1.32 KB
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
$:.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'plutus/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'plutus'
s.version = Plutus::VERSION
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.authors = ['Michael Bulat']
s.date = Date.today
s.description = 'The plutus plugin provides a complete double entry accounting system for use in any Ruby on Rails application. The plugin follows general Double Entry Bookkeeping practices. All calculations are done using BigDecimal in order to prevent floating point rounding errors. The plugin requires a decimal type on your database as well.'
s.email = 'mbulat@crazydogsoftware.com'
s.extra_rdoc_files = [
'LICENSE',
'README.markdown'
]
s.add_dependency('kaminari', '~> 1.2')
s.add_dependency('rails', '> 7.0')
s.add_development_dependency('shoulda-matchers', '~> 3.1')
s.add_development_dependency('yard')
s.files = Dir['{app,config,db,lib}/**/*'] + ['LICENSE', 'Rakefile', 'README.markdown']
s.homepage = 'http://github.com/mbulat/plutus'
s.require_paths = ['lib']
s.summary = 'A Plugin providing a Double Entry Accounting Engine for Rails'
s.test_files = Dir['{spec}/**/*']
if s.respond_to? :specification_version
s.specification_version = 3
end
end