This repository has been archived by the owner on Dec 19, 2019. It is now read-only.
forked from mbulat/plutus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tyche.gemspec
44 lines (37 loc) · 1.59 KB
/
tyche.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
34
35
36
37
38
39
40
41
42
43
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "plutus/version"
require "date"
Gem::Specification.new do |s|
s.name = %q{tyche}
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 = %q{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 = %q{mbulat@crazydogsoftware.com}
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.add_dependency("rails", "> 4.0")
s.add_dependency("jquery-rails", ">= 3.0")
s.add_dependency("jquery-ui-rails", ">= 4.2.2")
s.add_dependency("kaminari", "~> 1.0")
s.add_development_dependency("yard")
s.add_development_dependency "shoulda-matchers"
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE", "Rakefile", "README.markdown"]
s.homepage = %q{http://github.com/mbulat/plutus}
s.require_paths = ["lib"]
s.required_rubygems_version = ">= 1.3.6"
s.summary = %q{A Plugin providing a Double Entry Accounting Engine for Rails}
s.test_files = Dir["{spec}/**/*"]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end