openbill 0.0.0
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/LICENSE +21 -0
- data/README +64 -0
- data/test/functional/products_controller_test.rb +8 -0
- data/test/functional/sessions_controller_test.rb +8 -0
- data/test/functional/settings_controller_test.rb +8 -0
- data/test/performance/browsing_test.rb +9 -0
- data/test/test_helper.rb +38 -0
- data/test/unit/account_test.rb +8 -0
- data/test/unit/billingcycle_test.rb +8 -0
- data/test/unit/currency_test.rb +8 -0
- data/test/unit/emailtemplate_test.rb +8 -0
- data/test/unit/invoice_test.rb +8 -0
- data/test/unit/invoicedetail_test.rb +8 -0
- data/test/unit/option_test.rb +8 -0
- data/test/unit/order_test.rb +8 -0
- data/test/unit/orderdetail_test.rb +8 -0
- data/test/unit/paymentgateway_test.rb +8 -0
- data/test/unit/product_test.rb +8 -0
- data/test/unit/registrar_test.rb +8 -0
- data/test/unit/registrarlog_test.rb +8 -0
- data/test/unit/role_test.rb +8 -0
- data/test/unit/server_test.rb +8 -0
- data/test/unit/serverlog_test.rb +8 -0
- data/test/unit/setting_test.rb +8 -0
- data/test/unit/tld_test.rb +8 -0
- data/test/unit/transaction_test.rb +8 -0
- data/test/unit/user_mailer_test.rb +8 -0
- data/test/unit/user_test.rb +8 -0
- data/test/unit/userfieldname_test.rb +8 -0
- data/test/unit/userfieldvalue_test.rb +8 -0
- metadata +84 -0
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
== MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2009, Siddhartha Mukherjee - (http://rsos.in)
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
== openbill - Open source web hosting billing platform
|
2
|
+
|
3
|
+
Currently we are working to make openbill a complete open source solution web hosting companies.
|
4
|
+
And we have plans to make it a more generalized billing solution that can serve the whole e-commerce market.
|
5
|
+
|
6
|
+
== Features List
|
7
|
+
Here you will find a comprehensive list of the key features will be offered by openbill.
|
8
|
+
|
9
|
+
Billing
|
10
|
+
-Automated Invoicing
|
11
|
+
-Manual Invoicing
|
12
|
+
-Automated Payment Processing
|
13
|
+
-Tax Support
|
14
|
+
-PDF Invoices
|
15
|
+
-Email/Print Invoices
|
16
|
+
-Multiple currency
|
17
|
+
-Automated Creation
|
18
|
+
-Automated Suspension
|
19
|
+
-Reminders & Overdue Notices
|
20
|
+
|
21
|
+
User/Customer
|
22
|
+
-Fully customizable based on html/ajax
|
23
|
+
-Custom fields for user/customers
|
24
|
+
-Order and Invoice
|
25
|
+
-Choice of billing cycle per order
|
26
|
+
-Domain availability search
|
27
|
+
|
28
|
+
Admin
|
29
|
+
-Rich user interface based on built on flex/action script
|
30
|
+
-Products
|
31
|
+
-Customers
|
32
|
+
-Orders
|
33
|
+
-Invoices
|
34
|
+
-Settings
|
35
|
+
-Billing cycles
|
36
|
+
-Registrars
|
37
|
+
-TLDs
|
38
|
+
-Payment methods
|
39
|
+
-Servers
|
40
|
+
-Taxes
|
41
|
+
-Email templates
|
42
|
+
-Subdomains
|
43
|
+
-Own domain
|
44
|
+
-Domain Transfer
|
45
|
+
|
46
|
+
This is an incomplete list…more will be added soon
|
47
|
+
|
48
|
+
== License
|
49
|
+
|
50
|
+
openbill is released under the MIT license and is copyright (c) 2009
|
51
|
+
Siddhartha Mukherjee - (http://rsos.in).
|
52
|
+
A copy of the MIT license can be found in the LICENSE file.
|
53
|
+
|
54
|
+
== Installation and Setup
|
55
|
+
|
56
|
+
openbill is a traditional Ruby on Rails application, meaning that you can
|
57
|
+
configure and run it the way you would a normal Rails application.
|
58
|
+
See the INSTALL file for more details.
|
59
|
+
|
60
|
+
Enjoy!
|
61
|
+
|
62
|
+
--
|
63
|
+
Siddhartha Mukherjee
|
64
|
+
http://rsos.in
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
3
|
+
require 'test_help'
|
4
|
+
|
5
|
+
class Test::Unit::TestCase
|
6
|
+
# Transactional fixtures accelerate your tests by wrapping each test method
|
7
|
+
# in a transaction that's rolled back on completion. This ensures that the
|
8
|
+
# test database remains unchanged so your fixtures don't have to be reloaded
|
9
|
+
# between every test method. Fewer database queries means faster tests.
|
10
|
+
#
|
11
|
+
# Read Mike Clark's excellent walkthrough at
|
12
|
+
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
13
|
+
#
|
14
|
+
# Every Active Record database supports transactions except MyISAM tables
|
15
|
+
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
16
|
+
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
17
|
+
# is recommended.
|
18
|
+
#
|
19
|
+
# The only drawback to using transactional fixtures is when you actually
|
20
|
+
# need to test transactions. Since your test is bracketed by a transaction,
|
21
|
+
# any transactions started in your code will be automatically rolled back.
|
22
|
+
self.use_transactional_fixtures = true
|
23
|
+
|
24
|
+
# Instantiated fixtures are slow, but give you @david where otherwise you
|
25
|
+
# would need people(:david). If you don't want to migrate your existing
|
26
|
+
# test cases which use the @david style and don't mind the speed hit (each
|
27
|
+
# instantiated fixtures translates to a database query per test method),
|
28
|
+
# then set this back to true.
|
29
|
+
self.use_instantiated_fixtures = false
|
30
|
+
|
31
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
32
|
+
#
|
33
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
34
|
+
# -- they do not yet inherit this setting
|
35
|
+
fixtures :all
|
36
|
+
|
37
|
+
# Add more helper methods to be used by all tests here...
|
38
|
+
end
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: openbill
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Siddhartha Mukherjee
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-05-29 00:00:00 +05:30
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Open source web hosting billing platform
|
17
|
+
email: support@rsos.in
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- LICENSE
|
24
|
+
- README
|
25
|
+
files:
|
26
|
+
- LICENSE
|
27
|
+
- README
|
28
|
+
has_rdoc: true
|
29
|
+
homepage: http://rsos.in
|
30
|
+
licenses: []
|
31
|
+
|
32
|
+
post_install_message:
|
33
|
+
rdoc_options:
|
34
|
+
- --charset=UTF-8
|
35
|
+
require_paths:
|
36
|
+
- lib
|
37
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: "0"
|
42
|
+
version:
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: "0"
|
48
|
+
version:
|
49
|
+
requirements: []
|
50
|
+
|
51
|
+
rubyforge_project: openbill
|
52
|
+
rubygems_version: 1.3.3
|
53
|
+
signing_key:
|
54
|
+
specification_version: 3
|
55
|
+
summary: Open source web hosting billing platform
|
56
|
+
test_files:
|
57
|
+
- test/functional/products_controller_test.rb
|
58
|
+
- test/functional/sessions_controller_test.rb
|
59
|
+
- test/functional/settings_controller_test.rb
|
60
|
+
- test/performance/browsing_test.rb
|
61
|
+
- test/test_helper.rb
|
62
|
+
- test/unit/account_test.rb
|
63
|
+
- test/unit/billingcycle_test.rb
|
64
|
+
- test/unit/currency_test.rb
|
65
|
+
- test/unit/emailtemplate_test.rb
|
66
|
+
- test/unit/invoicedetail_test.rb
|
67
|
+
- test/unit/invoice_test.rb
|
68
|
+
- test/unit/option_test.rb
|
69
|
+
- test/unit/orderdetail_test.rb
|
70
|
+
- test/unit/order_test.rb
|
71
|
+
- test/unit/paymentgateway_test.rb
|
72
|
+
- test/unit/product_test.rb
|
73
|
+
- test/unit/registrarlog_test.rb
|
74
|
+
- test/unit/registrar_test.rb
|
75
|
+
- test/unit/role_test.rb
|
76
|
+
- test/unit/serverlog_test.rb
|
77
|
+
- test/unit/server_test.rb
|
78
|
+
- test/unit/setting_test.rb
|
79
|
+
- test/unit/tld_test.rb
|
80
|
+
- test/unit/transaction_test.rb
|
81
|
+
- test/unit/userfieldname_test.rb
|
82
|
+
- test/unit/userfieldvalue_test.rb
|
83
|
+
- test/unit/user_mailer_test.rb
|
84
|
+
- test/unit/user_test.rb
|