plutus 0.4.2 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +12 -9
- data/VERSION.yml +2 -2
- data/config/backtrace_silencers.rb +7 -0
- data/config/inflections.rb +10 -0
- data/config/mime_types.rb +5 -0
- data/config/secret_token.rb +7 -0
- data/config/session_store.rb +8 -0
- data/doc/Account.html +1 -1
- data/doc/AccountsController.html +1 -1
- data/doc/Asset.html +1 -1
- data/doc/CreatePlutusTables.html +265 -0
- data/doc/Equity.html +1 -1
- data/doc/Expense.html +1 -1
- data/doc/Liability.html +1 -1
- data/doc/Plutus.html +91 -0
- data/doc/Plutus/Engine.html +100 -0
- data/doc/PlutusGenerator.html +312 -0
- data/doc/Revenue.html +1 -1
- data/doc/Transaction.html +1 -1
- data/doc/TransactionsController.html +1 -1
- data/doc/_index.html +39 -1
- data/doc/class_list.html +1 -1
- data/doc/file.README.html +11 -11
- data/doc/index.html +11 -11
- data/doc/method_list.html +76 -36
- data/doc/top-level-namespace.html +4 -2
- data/fixture_rails_root/.gitignore +4 -0
- data/fixture_rails_root/Gemfile +38 -0
- data/fixture_rails_root/Gemfile.lock +98 -0
- data/fixture_rails_root/README +256 -0
- data/fixture_rails_root/Rakefile +7 -0
- data/fixture_rails_root/app/controllers/application_controller.rb +3 -0
- data/fixture_rails_root/app/helpers/application_helper.rb +2 -0
- data/fixture_rails_root/app/views/layouts/application.html.erb +14 -0
- data/fixture_rails_root/config.ru +4 -0
- data/fixture_rails_root/config/application.rb +42 -0
- data/fixture_rails_root/config/boot.rb +13 -0
- data/fixture_rails_root/config/database.yml +22 -0
- data/fixture_rails_root/config/environment.rb +5 -0
- data/fixture_rails_root/config/environments/development.rb +26 -0
- data/fixture_rails_root/config/environments/production.rb +49 -0
- data/fixture_rails_root/config/environments/test.rb +35 -0
- data/fixture_rails_root/config/initializers/backtrace_silencers.rb +7 -0
- data/fixture_rails_root/config/initializers/inflections.rb +10 -0
- data/fixture_rails_root/config/initializers/mime_types.rb +5 -0
- data/fixture_rails_root/config/initializers/secret_token.rb +7 -0
- data/fixture_rails_root/config/initializers/session_store.rb +8 -0
- data/fixture_rails_root/config/locales/en.yml +5 -0
- data/fixture_rails_root/config/routes.rb +58 -0
- data/{generators/plutus/templates/plutus.rb → fixture_rails_root/db/migrate/20101203193439_create_plutus_tables.rb} +1 -1
- data/fixture_rails_root/db/schema.rb +40 -0
- data/fixture_rails_root/db/seeds.rb +7 -0
- data/fixture_rails_root/doc/README_FOR_APP +2 -0
- data/fixture_rails_root/lib/tasks/.gitkeep +0 -0
- data/fixture_rails_root/public/404.html +26 -0
- data/fixture_rails_root/public/422.html +26 -0
- data/fixture_rails_root/public/500.html +26 -0
- data/fixture_rails_root/public/favicon.ico +0 -0
- data/fixture_rails_root/public/images/rails.png +0 -0
- data/fixture_rails_root/public/index.html +239 -0
- data/fixture_rails_root/public/javascripts/application.js +2 -0
- data/fixture_rails_root/public/javascripts/controls.js +965 -0
- data/fixture_rails_root/public/javascripts/dragdrop.js +974 -0
- data/fixture_rails_root/public/javascripts/effects.js +1123 -0
- data/fixture_rails_root/public/javascripts/prototype.js +6001 -0
- data/fixture_rails_root/public/javascripts/rails.js +175 -0
- data/fixture_rails_root/public/robots.txt +5 -0
- data/fixture_rails_root/public/stylesheets/.gitkeep +0 -0
- data/fixture_rails_root/script/rails +6 -0
- data/fixture_rails_root/test/performance/browsing_test.rb +9 -0
- data/fixture_rails_root/test/test_helper.rb +13 -0
- data/fixture_rails_root/vendor/plugins/.gitkeep +0 -0
- data/{generators → lib/generators}/plutus/USAGE +1 -1
- data/lib/generators/plutus/plutus_generator.rb +26 -0
- data/lib/generators/plutus/templates/migration.rb +33 -0
- data/lib/plutus.rb +6 -0
- data/plutus.gemspec +60 -6
- data/spec/spec_helper.rb +6 -50
- metadata +63 -9
- data/generators/plutus/plutus_generator.rb +0 -9
- data/rails/init.rb +0 -1
data/README.markdown
CHANGED
|
@@ -3,18 +3,21 @@ Plutus
|
|
|
3
3
|
|
|
4
4
|
This plutus plugin is a Ruby on Rails Engine which provides a double entry accounting system for your application.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
NOTE: This version of Plutus is compatable with RAILS 3
|
|
7
|
+
=======================================================
|
|
8
|
+
|
|
9
|
+
For the rails 2 version, you can go here:
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
./script/plugin install git://github.com/mbulat/plutus.git
|
|
11
|
+
[https://github.com/mbulat/plutus/tree/rails2](https://github.com/mbulat/plutus/tree/rails2)
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Gems in RubyGems.org >= 0.5.0 support Rails 3
|
|
14
|
+
|
|
15
|
+
Installation
|
|
16
|
+
============
|
|
14
17
|
|
|
15
|
-
|
|
18
|
+
- Add the gem to your Gemfile `gem "plutus"`
|
|
16
19
|
|
|
17
|
-
- generate migration files
|
|
20
|
+
- generate migration files `rails g plutus`
|
|
18
21
|
|
|
19
22
|
- run migrations `rake db:migrate`
|
|
20
23
|
|
|
@@ -185,7 +188,7 @@ ToDo
|
|
|
185
188
|
Reference
|
|
186
189
|
=========
|
|
187
190
|
|
|
188
|
-
For a complete reference on Accounting
|
|
191
|
+
For a complete reference on Accounting principles, we recommend the following textbook
|
|
189
192
|
|
|
190
193
|
[http://amzn.com/0324662963](http://amzn.com/0324662963)
|
|
191
194
|
|
data/VERSION.yml
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
|
5
|
+
|
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Add new inflection rules using the following format
|
|
4
|
+
# (all these examples are active by default):
|
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
|
8
|
+
# inflect.irregular 'person', 'people'
|
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
|
10
|
+
# end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
7
|
+
Plutus::Application.config.secret_token = 'f6b9c48aaf200fda4bbcf1642319084d5e5cda2bd95ac0a43220aab19f4ee240f9cdab08b77c3284b3a6396b13b1fe8be12a227af04fc5f5a8b7a52b626c4fdd'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
Plutus::Application.config.session_store :cookie_store, :key => '_plutus_session'
|
|
4
|
+
|
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
|
6
|
+
# which shouldn't be used to store highly confidential information
|
|
7
|
+
# (create the session table with "rails generate session_migration")
|
|
8
|
+
# Testtest::Application.config.session_store :active_record_store
|
data/doc/Account.html
CHANGED
|
@@ -291,7 +291,7 @@ The decimal value balance of all accounts
|
|
|
291
291
|
</div>
|
|
292
292
|
|
|
293
293
|
<div id="footer">
|
|
294
|
-
Generated on Fri
|
|
294
|
+
Generated on Fri Dec 3 14:35:08 2010 by
|
|
295
295
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
296
296
|
0.6.2 (ruby-1.8.7).
|
|
297
297
|
</div>
|
data/doc/AccountsController.html
CHANGED
|
@@ -308,7 +308,7 @@ GET /</span><span class='accounts identifier id'>accounts</span><span class='dot
|
|
|
308
308
|
</div>
|
|
309
309
|
|
|
310
310
|
<div id="footer">
|
|
311
|
-
Generated on Fri
|
|
311
|
+
Generated on Fri Dec 3 14:35:09 2010 by
|
|
312
312
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
313
313
|
0.6.2 (ruby-1.8.7).
|
|
314
314
|
</div>
|
data/doc/Asset.html
CHANGED
|
@@ -601,7 +601,7 @@ The decimal value credit balance
|
|
|
601
601
|
</div>
|
|
602
602
|
|
|
603
603
|
<div id="footer">
|
|
604
|
-
Generated on Fri
|
|
604
|
+
Generated on Fri Dec 3 14:35:08 2010 by
|
|
605
605
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
606
606
|
0.6.2 (ruby-1.8.7).
|
|
607
607
|
</div>
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta name="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>Class: CreatePlutusTables</title>
|
|
7
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
|
9
|
+
|
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
|
11
|
+
relpath = '';
|
|
12
|
+
if (relpath != '') relpath += '/';
|
|
13
|
+
</script>
|
|
14
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
16
|
+
|
|
17
|
+
</head>
|
|
18
|
+
<body>
|
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
|
20
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<div id="header">
|
|
24
|
+
<div id="menu">
|
|
25
|
+
|
|
26
|
+
<a href="_index.html">Index (C)</a> »
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
<span class="title">CreatePlutusTables</span>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
<div id="search">
|
|
36
|
+
<a id="class_list_link" href="#">Class List</a>
|
|
37
|
+
<a id="method_list_link" href="#">Method List</a>
|
|
38
|
+
<a id ="file_list_link" href="#">File List</a>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div class="clear"></div>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
<iframe id="search_frame"></iframe>
|
|
45
|
+
|
|
46
|
+
<div id="content"><h1>Class: CreatePlutusTables
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
</h1>
|
|
51
|
+
|
|
52
|
+
<dl class="box">
|
|
53
|
+
|
|
54
|
+
<dt class="r1">Inherits:</dt>
|
|
55
|
+
<dd class="r1">
|
|
56
|
+
<span class="inheritName">ActiveRecord::Migration</span>
|
|
57
|
+
|
|
58
|
+
<ul class="fullTree">
|
|
59
|
+
<li>Object</li>
|
|
60
|
+
|
|
61
|
+
<li class="next">ActiveRecord::Migration</li>
|
|
62
|
+
|
|
63
|
+
<li class="next">CreatePlutusTables</li>
|
|
64
|
+
|
|
65
|
+
</ul>
|
|
66
|
+
<a href="#" class="inheritanceTree">show all</a>
|
|
67
|
+
|
|
68
|
+
</dd>
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
<dt class="r2 last">Defined in:</dt>
|
|
79
|
+
<dd class="r2 last">lib/generators/plutus/templates/migration.rb</dd>
|
|
80
|
+
|
|
81
|
+
</dl>
|
|
82
|
+
<div class="clear"></div>
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
<h2>
|
|
90
|
+
Class Method Summary
|
|
91
|
+
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
|
|
92
|
+
</h2>
|
|
93
|
+
|
|
94
|
+
<ul class="summary">
|
|
95
|
+
|
|
96
|
+
<li class="public ">
|
|
97
|
+
<span class="summary_signature">
|
|
98
|
+
|
|
99
|
+
<a href="#down-class_method" title="down (class method)">+ (Object) <strong>down</strong> </a>
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
</span>
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
113
|
+
|
|
114
|
+
</li>
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
<li class="public ">
|
|
118
|
+
<span class="summary_signature">
|
|
119
|
+
|
|
120
|
+
<a href="#up-class_method" title="up (class method)">+ (Object) <strong>up</strong> </a>
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
</span>
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
134
|
+
|
|
135
|
+
</li>
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
</ul>
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
<div id="class_method_details" class="method_details_list">
|
|
145
|
+
<h2>Class Method Details</h2>
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
<div class="method_details first">
|
|
149
|
+
<p class="signature first" id="down-class_method">
|
|
150
|
+
|
|
151
|
+
+ (<tt>Object</tt>) <strong>down</strong>
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
</p><table class="source_code">
|
|
156
|
+
<tr>
|
|
157
|
+
<td>
|
|
158
|
+
<pre class="lines">
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
29
|
|
162
|
+
30
|
|
163
|
+
31
|
|
164
|
+
32</pre>
|
|
165
|
+
</td>
|
|
166
|
+
<td>
|
|
167
|
+
<pre class="code"><span class="info file"># File 'lib/generators/plutus/templates/migration.rb', line 29</span>
|
|
168
|
+
|
|
169
|
+
<span class='def def kw'>def</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='down identifier id'>down</span>
|
|
170
|
+
<span class='drop_table identifier id'>drop_table</span> <span class='symbol val'>:accounts</span>
|
|
171
|
+
<span class='drop_table identifier id'>drop_table</span> <span class='symbol val'>:transactions</span>
|
|
172
|
+
<span class='end end kw'>end</span>
|
|
173
|
+
</pre>
|
|
174
|
+
</td>
|
|
175
|
+
</tr>
|
|
176
|
+
</table>
|
|
177
|
+
</div>
|
|
178
|
+
|
|
179
|
+
<div class="method_details ">
|
|
180
|
+
<p class="signature " id="up-class_method">
|
|
181
|
+
|
|
182
|
+
+ (<tt>Object</tt>) <strong>up</strong>
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
</p><table class="source_code">
|
|
187
|
+
<tr>
|
|
188
|
+
<td>
|
|
189
|
+
<pre class="lines">
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
2
|
|
193
|
+
3
|
|
194
|
+
4
|
|
195
|
+
5
|
|
196
|
+
6
|
|
197
|
+
7
|
|
198
|
+
8
|
|
199
|
+
9
|
|
200
|
+
10
|
|
201
|
+
11
|
|
202
|
+
12
|
|
203
|
+
13
|
|
204
|
+
14
|
|
205
|
+
15
|
|
206
|
+
16
|
|
207
|
+
17
|
|
208
|
+
18
|
|
209
|
+
19
|
|
210
|
+
20
|
|
211
|
+
21
|
|
212
|
+
22
|
|
213
|
+
23
|
|
214
|
+
24
|
|
215
|
+
25
|
|
216
|
+
26
|
|
217
|
+
27</pre>
|
|
218
|
+
</td>
|
|
219
|
+
<td>
|
|
220
|
+
<pre class="code"><span class="info file"># File 'lib/generators/plutus/templates/migration.rb', line 2</span>
|
|
221
|
+
|
|
222
|
+
<span class='def def kw'>def</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='up identifier id'>up</span>
|
|
223
|
+
<span class='create_table identifier id'>create_table</span> <span class='symbol val'>:accounts</span> <span class='do do kw'>do</span> <span class='bitor op'>|</span><span class='t identifier id'>t</span><span class='bitor op'>|</span>
|
|
224
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='string identifier id'>string</span> <span class='symbol val'>:name</span>
|
|
225
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='string identifier id'>string</span> <span class='symbol val'>:type</span>
|
|
226
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='boolean identifier id'>boolean</span> <span class='symbol val'>:contra</span>
|
|
227
|
+
|
|
228
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='timestamps identifier id'>timestamps</span>
|
|
229
|
+
<span class='end end kw'>end</span>
|
|
230
|
+
|
|
231
|
+
<span class='add_index identifier id'>add_index</span> <span class='symbol val'>:accounts</span><span class='comma token'>,</span> <span class='lbrack token'>[</span><span class='symbol val'>:name</span><span class='comma token'>,</span> <span class='symbol val'>:type</span><span class='rbrack token'>]</span>
|
|
232
|
+
|
|
233
|
+
<span class='create_table identifier id'>create_table</span> <span class='symbol val'>:transactions</span> <span class='do do kw'>do</span> <span class='bitor op'>|</span><span class='t identifier id'>t</span><span class='bitor op'>|</span>
|
|
234
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='string identifier id'>string</span> <span class='symbol val'>:description</span>
|
|
235
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='integer identifier id'>integer</span> <span class='symbol val'>:credit_account_id</span>
|
|
236
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='integer identifier id'>integer</span> <span class='symbol val'>:debit_account_id</span>
|
|
237
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='decimal identifier id'>decimal</span> <span class='symbol val'>:amount</span><span class='comma token'>,</span> <span class='symbol val'>:precision</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='integer val'>20</span><span class='comma token'>,</span> <span class='symbol val'>:scale</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='integer val'>10</span>
|
|
238
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='integer identifier id'>integer</span> <span class='symbol val'>:commercial_document_id</span>
|
|
239
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='string identifier id'>string</span> <span class='symbol val'>:commercial_document_type</span>
|
|
240
|
+
|
|
241
|
+
<span class='t identifier id'>t</span><span class='dot token'>.</span><span class='timestamps identifier id'>timestamps</span>
|
|
242
|
+
<span class='end end kw'>end</span>
|
|
243
|
+
|
|
244
|
+
<span class='add_index identifier id'>add_index</span> <span class='symbol val'>:transactions</span><span class='comma token'>,</span> <span class='symbol val'>:credit_account_id</span>
|
|
245
|
+
<span class='add_index identifier id'>add_index</span> <span class='symbol val'>:transactions</span><span class='comma token'>,</span> <span class='symbol val'>:debit_account_id</span>
|
|
246
|
+
<span class='add_index identifier id'>add_index</span> <span class='symbol val'>:transactions</span><span class='comma token'>,</span> <span class='lbrack token'>[</span><span class='symbol val'>:commercial_document_id</span><span class='comma token'>,</span> <span class='symbol val'>:commercial_document_type</span><span class='rbrack token'>]</span><span class='comma token'>,</span> <span class='symbol val'>:name</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='string val'>"index_transactions_on_commercial_doc"</span>
|
|
247
|
+
<span class='end end kw'>end</span>
|
|
248
|
+
</pre>
|
|
249
|
+
</td>
|
|
250
|
+
</tr>
|
|
251
|
+
</table>
|
|
252
|
+
</div>
|
|
253
|
+
|
|
254
|
+
</div>
|
|
255
|
+
|
|
256
|
+
</div>
|
|
257
|
+
|
|
258
|
+
<div id="footer">
|
|
259
|
+
Generated on Fri Dec 3 14:35:07 2010 by
|
|
260
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
261
|
+
0.6.2 (ruby-1.8.7).
|
|
262
|
+
</div>
|
|
263
|
+
|
|
264
|
+
</body>
|
|
265
|
+
</html>
|
data/doc/Equity.html
CHANGED
|
@@ -601,7 +601,7 @@ The decimal value credit balance
|
|
|
601
601
|
</div>
|
|
602
602
|
|
|
603
603
|
<div id="footer">
|
|
604
|
-
Generated on Fri
|
|
604
|
+
Generated on Fri Dec 3 14:35:07 2010 by
|
|
605
605
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
606
606
|
0.6.2 (ruby-1.8.7).
|
|
607
607
|
</div>
|
data/doc/Expense.html
CHANGED
|
@@ -601,7 +601,7 @@ The decimal value credit balance
|
|
|
601
601
|
</div>
|
|
602
602
|
|
|
603
603
|
<div id="footer">
|
|
604
|
-
Generated on Fri
|
|
604
|
+
Generated on Fri Dec 3 14:35:07 2010 by
|
|
605
605
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
606
606
|
0.6.2 (ruby-1.8.7).
|
|
607
607
|
</div>
|
data/doc/Liability.html
CHANGED
|
@@ -579,7 +579,7 @@ The decimal value credit balance
|
|
|
579
579
|
</div>
|
|
580
580
|
|
|
581
581
|
<div id="footer">
|
|
582
|
-
Generated on Fri
|
|
582
|
+
Generated on Fri Dec 3 14:35:09 2010 by
|
|
583
583
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
584
584
|
0.6.2 (ruby-1.8.7).
|
|
585
585
|
</div>
|
data/doc/Plutus.html
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta name="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>Module: Plutus</title>
|
|
7
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
|
9
|
+
|
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
|
11
|
+
relpath = '';
|
|
12
|
+
if (relpath != '') relpath += '/';
|
|
13
|
+
</script>
|
|
14
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
16
|
+
|
|
17
|
+
</head>
|
|
18
|
+
<body>
|
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
|
20
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<div id="header">
|
|
24
|
+
<div id="menu">
|
|
25
|
+
|
|
26
|
+
<a href="_index.html">Index (P)</a> »
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
<span class="title">Plutus</span>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
<div id="search">
|
|
36
|
+
<a id="class_list_link" href="#">Class List</a>
|
|
37
|
+
<a id="method_list_link" href="#">Method List</a>
|
|
38
|
+
<a id ="file_list_link" href="#">File List</a>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div class="clear"></div>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
<iframe id="search_frame"></iframe>
|
|
45
|
+
|
|
46
|
+
<div id="content"><h1>Module: Plutus
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
</h1>
|
|
51
|
+
|
|
52
|
+
<dl class="box">
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
<dt class="r1 last">Defined in:</dt>
|
|
62
|
+
<dd class="r1 last">lib/plutus.rb</dd>
|
|
63
|
+
|
|
64
|
+
</dl>
|
|
65
|
+
<div class="clear"></div>
|
|
66
|
+
|
|
67
|
+
<h2>Defined Under Namespace</h2>
|
|
68
|
+
<p class="children">
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Plutus/Engine.html" title="Plutus::Engine (class)">Engine</a></span>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
</p>
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
</div>
|
|
83
|
+
|
|
84
|
+
<div id="footer">
|
|
85
|
+
Generated on Fri Dec 3 14:35:07 2010 by
|
|
86
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
87
|
+
0.6.2 (ruby-1.8.7).
|
|
88
|
+
</div>
|
|
89
|
+
|
|
90
|
+
</body>
|
|
91
|
+
</html>
|