erp_financial_accounting 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. data/lib/erp_financial_accounting/engine.rb +7 -1
  2. data/lib/erp_financial_accounting/version.rb +7 -1
  3. data/lib/erp_financial_accounting.rb +1 -0
  4. data/spec/dummy/Rakefile +7 -0
  5. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  6. data/spec/dummy/app/assets/stylesheets/application.css +7 -0
  7. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  8. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  9. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  10. data/spec/dummy/config/application.rb +50 -0
  11. data/spec/dummy/config/boot.rb +10 -0
  12. data/spec/dummy/config/database.yml +8 -0
  13. data/spec/dummy/config/environment.rb +5 -0
  14. data/spec/dummy/config/environments/spec.rb +27 -0
  15. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  16. data/spec/dummy/config/initializers/inflections.rb +10 -0
  17. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  18. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  19. data/spec/dummy/config/initializers/session_store.rb +8 -0
  20. data/spec/dummy/config/initializers/wrap_parameters.rb +12 -0
  21. data/spec/dummy/config/locales/en.yml +5 -0
  22. data/spec/dummy/config/routes.rb +3 -0
  23. data/spec/dummy/config.ru +4 -0
  24. data/spec/dummy/public/404.html +26 -0
  25. data/spec/dummy/public/422.html +26 -0
  26. data/spec/dummy/public/500.html +26 -0
  27. data/spec/dummy/public/favicon.ico +0 -0
  28. data/spec/dummy/script/rails +6 -0
  29. data/spec/models/gl_account_spec.rb +11 -0
  30. data/spec/models/price_plan_comp_gl_account_spec.rb +12 -0
  31. data/spec/spec_helper.rb +60 -0
  32. metadata +93 -37
@@ -1,6 +1,12 @@
1
1
  module ErpFinancialAccounting
2
2
  class Engine < Rails::Engine
3
3
  isolate_namespace ErpFinancialAccounting
4
-
4
+
5
+ #TODO
6
+ #this will be removed once rails 3.2 adds the ability to set the order of engine loading
7
+ engine = self
8
+ config.to_prepare do
9
+ ErpBaseErpSvcs.register_compass_ae_engine(engine)
10
+ end
5
11
  end
6
12
  end
@@ -1,3 +1,9 @@
1
1
  module ErpFinancialAccounting
2
- VERSION = "3.0.0"
2
+ module VERSION #:nodoc:
3
+ MAJOR = 3
4
+ MINOR = 0
5
+ TINY = 1
6
+
7
+ STRING = [MAJOR, MINOR, TINY].compact.join('.')
8
+ end
3
9
  end
@@ -1,3 +1,4 @@
1
+ require "erp_financial_accounting/version"
1
2
  require "erp_financial_accounting/engine"
2
3
 
3
4
  module ErpFinancialAccounting
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,9 @@
1
+ // This is a manifest file that'll be compiled into including all the files listed below.
2
+ // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
+ // be included in the compiled file accessible from http://example.com/assets/application.js
4
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
+ // the compiled file.
6
+ //
7
+ //= require jquery
8
+ //= require jquery_ujs
9
+ //= require_tree .
@@ -0,0 +1,7 @@
1
+ /*
2
+ * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
+ * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
+ * the top of the compiled file, but it's generally better to create a new file per style scope.
5
+ *= require_self
6
+ *= require_tree .
7
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,50 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require 'erp_base_erp_svcs'
7
+ require 'erp_tech_svcs'
8
+ require 'erp_app'
9
+ require 'erp_txns_and_accts'
10
+ require 'erp_agreements'
11
+ require 'erp_products'
12
+ require 'erp_orders'
13
+ require 'erp_commerce'
14
+ require "erp_financial_accounting"
15
+
16
+ module Dummy
17
+ class Application < Rails::Application
18
+ # Settings in config/environments/* take precedence over those specified here.
19
+ # Application configuration should go into files in config/initializers
20
+ # -- all .rb files in that directory are automatically loaded.
21
+
22
+ # Custom directories with classes and modules you want to be autoloadable.
23
+ # config.autoload_paths += %W(#{config.root}/extras)
24
+
25
+ # Only load the plugins named here, in the order given (default is alphabetical).
26
+ # :all can be used as a placeholder for all plugins not explicitly named.
27
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
28
+
29
+ # Activate observers that should always be running.
30
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
31
+
32
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
33
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
34
+ # config.time_zone = 'Central Time (US & Canada)'
35
+
36
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
37
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
38
+ # config.i18n.default_locale = :de
39
+
40
+ # Configure the default encoding used in templates for Ruby 1.9.
41
+ config.encoding = "utf-8"
42
+
43
+ # Configure sensitive parameters which will be filtered from the log file.
44
+ config.filter_parameters += [:password]
45
+
46
+ # Enable the asset pipeline
47
+ config.assets.enabled = true
48
+ end
49
+ end
50
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,8 @@
1
+ # Warning: The database defined as "test" will be erased and
2
+ # re-generated from your development database when you run "rake".
3
+ # Do not set this db to the same as development or production.
4
+ spec:
5
+ adapter: sqlite3
6
+ database: db/spec.sqlite3
7
+ pool: 5
8
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,27 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Do not compress assets
26
+ config.assets.compress = false
27
+ end
@@ -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,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -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
+ Dummy::Application.config.secret_token = 'ae0d58840f73a49e40850c9d815a6a135e169865cdb8721cec7f335a738af09f3483de0f99d7c131f8fdecf2d8b508f8fd5e2e33c8d0565dcc9030eadb227695'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_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
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActionController::Base.wrap_parameters :format => [:json]
8
+
9
+ # Disable root element in JSON by default.
10
+ if defined?(ActiveRecord)
11
+ ActiveRecord::Base.include_root_in_json = false
12
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount ErpFinancialAccounting::Engine => "/erp_financial_accounting"
3
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe GlAccount do
4
+ it "can be instantiated" do
5
+ GlAccount.new.should be_an_instance_of(GlAccount)
6
+ end
7
+
8
+ it "can be saved successfully" do
9
+ GlAccount.create().should be_persisted
10
+ end
11
+ end
@@ -0,0 +1,12 @@
1
+ require 'spec_helper'
2
+
3
+ describe PricePlanCompGlAccount do
4
+ it "can be instantiated" do
5
+ PricePlanCompGlAccount.new.should be_an_instance_of(PricePlanCompGlAccount)
6
+ end
7
+
8
+ it "can be saved successfully" do
9
+ PricePlanCompGlAccount.create().should be_persisted
10
+ end
11
+ end
12
+
@@ -0,0 +1,60 @@
1
+ require 'spork'
2
+ require 'rake'
3
+
4
+ Spork.prefork do
5
+ # Loading more in this block will cause your tests to run faster. However,
6
+ # if you change any configuration or code from libraries loaded here, you'll
7
+ # need to restart spork for it take effect.
8
+
9
+ ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../')
10
+ DUMMY_APP_ROOT=File.join(File.dirname(__FILE__), '/dummy')
11
+
12
+ require 'active_support'
13
+ require 'active_model'
14
+ require 'active_record'
15
+ require 'action_controller'
16
+
17
+ # Configure Rails Envinronment
18
+ ENV["RAILS_ENV"] = "spec"
19
+ require File.expand_path(DUMMY_APP_ROOT + "/config/environment.rb", __FILE__)
20
+
21
+ ActiveRecord::Base.configurations = YAML::load(IO.read(DUMMY_APP_ROOT + "/config/database.yml"))
22
+ ActiveRecord::Base.establish_connection(ENV["DB"] || "spec")
23
+ ActiveRecord::Migration.verbose = false
24
+
25
+ # Requires supporting ruby files with custom matchers and macros, etc,
26
+ # in spec/support/ and its subdirectories.
27
+ Dir[File.join(ENGINE_RAILS_ROOT, "spec/support/**/*.rb")].each {|f| require f }
28
+
29
+ require 'rspec/rails'
30
+ require 'erp_dev_svcs'
31
+
32
+ RSpec.configure do |config|
33
+ config.use_transactional_fixtures = true
34
+ config.include Sorcery::TestHelpers::Rails
35
+ config.include ErpDevSvcs
36
+ config.include ErpDevSvcs::ControllerSupport, :type => :controller
37
+ end
38
+ end
39
+
40
+ Spork.each_run do
41
+ #We have to execute the migrations from dummy app directory
42
+ Dir.chdir DUMMY_APP_ROOT
43
+ `rake db:drop`
44
+ Dir.chdir ENGINE_RAILS_ROOT
45
+
46
+ #We have to execute the migrations from dummy app directory
47
+ Dir.chdir DUMMY_APP_ROOT
48
+ `rake db:migrate`
49
+ Dir.chdir ENGINE_RAILS_ROOT
50
+
51
+ ErpDevSvcs::FactorySupport.load_engine_factories
52
+
53
+ require 'simplecov'
54
+ SimpleCov.start 'rails' do
55
+ add_filter "spec/"
56
+ end
57
+ #Need to explictly load the files in lib/ until we figure out how to
58
+ #get rails to autoload them for spec like it used to...
59
+ Dir[File.join(ENGINE_RAILS_ROOT, "lib/**/*.rb")].each {|f| load f}
60
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erp_financial_accounting
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,85 +9,85 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-01-06 00:00:00.000000000Z
12
+ date: 2012-05-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: erp_app
16
- requirement: &2157185540 !ruby/object:Gem::Requirement
16
+ requirement: &81165440 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ! '>='
19
+ - - =
20
20
  - !ruby/object:Gem::Version
21
- version: '0'
21
+ version: 3.0.1
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2157185540
24
+ version_requirements: *81165440
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: erp_txns_and_accts
27
- requirement: &2157185080 !ruby/object:Gem::Requirement
27
+ requirement: &81162840 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
- - - ! '>='
30
+ - - =
31
31
  - !ruby/object:Gem::Version
32
- version: '0'
32
+ version: 3.0.1
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2157185080
35
+ version_requirements: *81162840
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: erp_agreements
38
- requirement: &2157184520 !ruby/object:Gem::Requirement
38
+ requirement: &81161150 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
- - - ! '>='
41
+ - - =
42
42
  - !ruby/object:Gem::Version
43
- version: '0'
43
+ version: 3.0.1
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *2157184520
46
+ version_requirements: *81161150
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: erp_products
49
- requirement: &2157183940 !ruby/object:Gem::Requirement
49
+ requirement: &81185770 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
- - - ! '>='
52
+ - - =
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: 3.0.1
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *2157183940
57
+ version_requirements: *81185770
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: erp_orders
60
- requirement: &2157183060 !ruby/object:Gem::Requirement
60
+ requirement: &81184890 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
- - - ! '>='
63
+ - - =
64
64
  - !ruby/object:Gem::Version
65
- version: '0'
65
+ version: 3.0.1
66
66
  type: :runtime
67
67
  prerelease: false
68
- version_requirements: *2157183060
68
+ version_requirements: *81184890
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: erp_commerce
71
- requirement: &2157181980 !ruby/object:Gem::Requirement
71
+ requirement: &81184310 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
- - - ! '>='
74
+ - - =
75
75
  - !ruby/object:Gem::Version
76
- version: '0'
76
+ version: 3.0.1
77
77
  type: :runtime
78
78
  prerelease: false
79
- version_requirements: *2157181980
79
+ version_requirements: *81184310
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: erp_dev_svcs
82
- requirement: &2157181340 !ruby/object:Gem::Requirement
82
+ requirement: &81182980 !ruby/object:Gem::Requirement
83
83
  none: false
84
84
  requirements:
85
- - - ! '>='
85
+ - - =
86
86
  - !ruby/object:Gem::Version
87
- version: '0'
87
+ version: 3.0.1
88
88
  type: :development
89
89
  prerelease: false
90
- version_requirements: *2157181340
90
+ version_requirements: *81182980
91
91
  description: The CompassAE Financial Accounting Engine implements the basic classes
92
92
  that allow either interface or implementation of general ledger, accounts payable
93
93
  and accounts receivable modules. This module is experimental at this stage.
@@ -97,14 +97,14 @@ executables: []
97
97
  extensions: []
98
98
  extra_rdoc_files: []
99
99
  files:
100
- - app/assets/javascripts/erp_financial_accounting/application.js
101
100
  - app/assets/stylesheets/erp_financial_accounting/application.css
102
- - app/controllers/erp_financial_accounting/application_controller.rb
103
- - app/helpers/erp_financial_accounting/application_helper.rb
104
- - app/models/extensions/pricing_plan_component.rb
105
- - app/models/gl_account.rb
106
- - app/models/price_plan_comp_gl_account.rb
101
+ - app/assets/javascripts/erp_financial_accounting/application.js
107
102
  - app/views/layouts/erp_financial_accounting/application.html.erb
103
+ - app/models/price_plan_comp_gl_account.rb
104
+ - app/models/gl_account.rb
105
+ - app/models/extensions/pricing_plan_component.rb
106
+ - app/helpers/erp_financial_accounting/application_helper.rb
107
+ - app/controllers/erp_financial_accounting/application_controller.rb
108
108
  - config/routes.rb
109
109
  - db/migrate/20101025003639_financial_accounting_services.rb
110
110
  - lib/erp_financial_accounting/engine.rb
@@ -114,6 +114,34 @@ files:
114
114
  - GPL-3-LICENSE
115
115
  - Rakefile
116
116
  - README.rdoc
117
+ - spec/spec_helper.rb
118
+ - spec/models/gl_account_spec.rb
119
+ - spec/models/price_plan_comp_gl_account_spec.rb
120
+ - spec/dummy/public/422.html
121
+ - spec/dummy/public/404.html
122
+ - spec/dummy/public/500.html
123
+ - spec/dummy/public/favicon.ico
124
+ - spec/dummy/config.ru
125
+ - spec/dummy/app/assets/stylesheets/application.css
126
+ - spec/dummy/app/assets/javascripts/application.js
127
+ - spec/dummy/app/views/layouts/application.html.erb
128
+ - spec/dummy/app/helpers/application_helper.rb
129
+ - spec/dummy/app/controllers/application_controller.rb
130
+ - spec/dummy/config/routes.rb
131
+ - spec/dummy/config/locales/en.yml
132
+ - spec/dummy/config/boot.rb
133
+ - spec/dummy/config/application.rb
134
+ - spec/dummy/config/environments/spec.rb
135
+ - spec/dummy/config/initializers/mime_types.rb
136
+ - spec/dummy/config/initializers/session_store.rb
137
+ - spec/dummy/config/initializers/backtrace_silencers.rb
138
+ - spec/dummy/config/initializers/wrap_parameters.rb
139
+ - spec/dummy/config/initializers/inflections.rb
140
+ - spec/dummy/config/initializers/secret_token.rb
141
+ - spec/dummy/config/environment.rb
142
+ - spec/dummy/config/database.yml
143
+ - spec/dummy/Rakefile
144
+ - spec/dummy/script/rails
117
145
  homepage: http://development.compassagile.com
118
146
  licenses: []
119
147
  post_install_message:
@@ -140,4 +168,32 @@ specification_version: 3
140
168
  summary: The CompassAE Financial Accounting Engine implements the basic classes that
141
169
  allow either interface or implementation of general ledger, accounts payable and
142
170
  accounts receivable modules.
143
- test_files: []
171
+ test_files:
172
+ - spec/spec_helper.rb
173
+ - spec/models/gl_account_spec.rb
174
+ - spec/models/price_plan_comp_gl_account_spec.rb
175
+ - spec/dummy/public/422.html
176
+ - spec/dummy/public/404.html
177
+ - spec/dummy/public/500.html
178
+ - spec/dummy/public/favicon.ico
179
+ - spec/dummy/config.ru
180
+ - spec/dummy/app/assets/stylesheets/application.css
181
+ - spec/dummy/app/assets/javascripts/application.js
182
+ - spec/dummy/app/views/layouts/application.html.erb
183
+ - spec/dummy/app/helpers/application_helper.rb
184
+ - spec/dummy/app/controllers/application_controller.rb
185
+ - spec/dummy/config/routes.rb
186
+ - spec/dummy/config/locales/en.yml
187
+ - spec/dummy/config/boot.rb
188
+ - spec/dummy/config/application.rb
189
+ - spec/dummy/config/environments/spec.rb
190
+ - spec/dummy/config/initializers/mime_types.rb
191
+ - spec/dummy/config/initializers/session_store.rb
192
+ - spec/dummy/config/initializers/backtrace_silencers.rb
193
+ - spec/dummy/config/initializers/wrap_parameters.rb
194
+ - spec/dummy/config/initializers/inflections.rb
195
+ - spec/dummy/config/initializers/secret_token.rb
196
+ - spec/dummy/config/environment.rb
197
+ - spec/dummy/config/database.yml
198
+ - spec/dummy/Rakefile
199
+ - spec/dummy/script/rails