erp_work_effort 3.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/GPL-3-LICENSE +674 -0
- data/README.rdoc +1 -0
- data/Rakefile +31 -0
- data/app/assets/javascripts/erp_work_effort/application.js +9 -0
- data/app/assets/stylesheets/erp_work_effort/application.css +7 -0
- data/app/controllers/erp_work_effort/application_controller.rb +4 -0
- data/app/helpers/erp_work_effort/application_helper.rb +4 -0
- data/app/models/cost.rb +3 -0
- data/app/models/extensions/party.rb +3 -0
- data/app/models/party_resource_availability.rb +5 -0
- data/app/models/party_resource_availability_type.rb +7 -0
- data/app/models/project_effort.rb +2 -0
- data/app/models/project_requirement.rb +2 -0
- data/app/models/support_effort.rb +2 -0
- data/app/models/support_requirement.rb +2 -0
- data/app/models/valid_work_assignment.rb +8 -0
- data/app/models/valid_work_assignment_attribute.rb +3 -0
- data/app/models/work_effort.rb +135 -0
- data/app/models/work_effort_assignment.rb +15 -0
- data/app/models/work_effort_status.rb +4 -0
- data/app/models/work_effort_status_type.rb +13 -0
- data/app/models/work_requirement.rb +76 -0
- data/app/models/work_requirement_work_effort_status_type.rb +4 -0
- data/app/views/layouts/erp_work_effort/application.html.erb +14 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20100220000000_base_work_efforts.rb +208 -0
- data/lib/erp_work_effort.rb +5 -0
- data/lib/erp_work_effort/engine.rb +13 -0
- data/lib/erp_work_effort/extensions.rb +4 -0
- data/lib/erp_work_effort/extensions/active_record/acts_as_project_effort.rb +66 -0
- data/lib/erp_work_effort/extensions/active_record/acts_as_project_requirement.rb +64 -0
- data/lib/erp_work_effort/extensions/active_record/acts_as_support_effort.rb +61 -0
- data/lib/erp_work_effort/extensions/active_record/acts_as_support_requirement.rb +68 -0
- data/lib/erp_work_effort/version.rb +3 -0
- data/lib/tasks/erp_work_effort_tasks.rake +4 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +9 -0
- data/spec/dummy/app/assets/stylesheets/application.css +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +43 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +8 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/spec.rb +27 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +12 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/models/cost_spec.rb +11 -0
- data/spec/models/party_resource_availability_spec.rb +11 -0
- data/spec/models/party_resource_availability_type_spec.rb +11 -0
- data/spec/models/project_effort_spec.rb +11 -0
- data/spec/models/project_requirement_spec.rb +11 -0
- data/spec/models/support_effort_spec.rb +11 -0
- data/spec/models/support_requirement_spec.rb +11 -0
- data/spec/models/valid_work_assignment_attribute_spec.rb +11 -0
- data/spec/models/valid_work_assignment_spec.rb +11 -0
- data/spec/models/work_effort_assignment_spec.rb +13 -0
- data/spec/models/work_effort_spec.rb +11 -0
- data/spec/models/work_effort_status_spec.rb +11 -0
- data/spec/models/work_effort_status_type_spec.rb +11 -0
- data/spec/models/work_requirement_spec.rb +11 -0
- data/spec/models/work_requirement_work_effort_status_type._spec.rb +11 -0
- data/spec/spec_helper.rb +60 -0
- metadata +195 -0
@@ -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
|
+
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,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 PartyResourceAvailability do
|
4
|
+
it "can be instantiated" do
|
5
|
+
PartyResourceAvailability.new.should be_an_instance_of(PartyResourceAvailability)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
PartyResourceAvailability.create().should be_persisted
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe PartyResourceAvailabilityType do
|
4
|
+
it "can be instantiated" do
|
5
|
+
PartyResourceAvailabilityType.new.should be_an_instance_of(PartyResourceAvailabilityType)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
PartyResourceAvailabilityType.create().should be_persisted
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ProjectRequirement do
|
4
|
+
it "can be instantiated" do
|
5
|
+
ProjectRequirement.new.should be_an_instance_of(ProjectRequirement)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
ProjectRequirement.create().should be_persisted
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe SupportRequirement do
|
4
|
+
it "can be instantiated" do
|
5
|
+
SupportRequirement.new.should be_an_instance_of(SupportRequirement)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
SupportRequirement.create().should be_persisted
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ValidWorkAssignmentAttribute do
|
4
|
+
it "can be instantiated" do
|
5
|
+
ValidWorkAssignmentAttribute.new.should be_an_instance_of(ValidWorkAssignmentAttribute)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
ValidWorkAssignmentAttribute.create().should be_persisted
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ValidWorkAssignment do
|
4
|
+
it "can be instantiated" do
|
5
|
+
ValidWorkAssignment.new.should be_an_instance_of(ValidWorkAssignment)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
ValidWorkAssignment.create().should be_persisted
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe WorkEffortAssignment do
|
4
|
+
it "can be instantiated" do
|
5
|
+
WorkEffortAssignment.new.should be_an_instance_of(WorkEffortAssignment)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
party = Party.new(:description => 'Test Party')
|
10
|
+
work_effort = WorkEffort.new
|
11
|
+
WorkEffortAssignment.create(:assigned_to => party, :assigned_by => party, :work_effort => work_effort).should be_persisted
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe WorkEffortStatusType do
|
4
|
+
it "can be instantiated" do
|
5
|
+
WorkEffortStatusType.new.should be_an_instance_of(WorkEffortStatusType)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
WorkEffortStatusType.create().should be_persisted
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe WorkRequirementWorkEffortStatusType do
|
4
|
+
it "can be instantiated" do
|
5
|
+
WorkRequirementWorkEffortStatusType.new.should be_an_instance_of(WorkRequirementWorkEffortStatusType)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "can be saved successfully" do
|
9
|
+
WorkRequirementWorkEffortStatusType.create().should be_persisted
|
10
|
+
end
|
11
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -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
ADDED
@@ -0,0 +1,195 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: erp_work_effort
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Rick Koloski, Russell Holmes
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-01-06 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: erp_tech_svcs
|
16
|
+
requirement: &2157337500 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *2157337500
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: erp_base_erp_svcs
|
27
|
+
requirement: &2157336660 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *2157336660
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: erp_dev_svcs
|
38
|
+
requirement: &2157335720 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :development
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *2157335720
|
47
|
+
description: Description of ErpWorkEffort.
|
48
|
+
email:
|
49
|
+
- russonrails@gmail.com
|
50
|
+
executables: []
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- app/assets/javascripts/erp_work_effort/application.js
|
55
|
+
- app/assets/stylesheets/erp_work_effort/application.css
|
56
|
+
- app/controllers/erp_work_effort/application_controller.rb
|
57
|
+
- app/helpers/erp_work_effort/application_helper.rb
|
58
|
+
- app/models/cost.rb
|
59
|
+
- app/models/extensions/party.rb
|
60
|
+
- app/models/party_resource_availability.rb
|
61
|
+
- app/models/party_resource_availability_type.rb
|
62
|
+
- app/models/project_effort.rb
|
63
|
+
- app/models/project_requirement.rb
|
64
|
+
- app/models/support_effort.rb
|
65
|
+
- app/models/support_requirement.rb
|
66
|
+
- app/models/valid_work_assignment.rb
|
67
|
+
- app/models/valid_work_assignment_attribute.rb
|
68
|
+
- app/models/work_effort.rb
|
69
|
+
- app/models/work_effort_assignment.rb
|
70
|
+
- app/models/work_effort_status.rb
|
71
|
+
- app/models/work_effort_status_type.rb
|
72
|
+
- app/models/work_requirement.rb
|
73
|
+
- app/models/work_requirement_work_effort_status_type.rb
|
74
|
+
- app/views/layouts/erp_work_effort/application.html.erb
|
75
|
+
- config/routes.rb
|
76
|
+
- db/migrate/20100220000000_base_work_efforts.rb
|
77
|
+
- lib/erp_work_effort/engine.rb
|
78
|
+
- lib/erp_work_effort/extensions/active_record/acts_as_project_effort.rb
|
79
|
+
- lib/erp_work_effort/extensions/active_record/acts_as_project_requirement.rb
|
80
|
+
- lib/erp_work_effort/extensions/active_record/acts_as_support_effort.rb
|
81
|
+
- lib/erp_work_effort/extensions/active_record/acts_as_support_requirement.rb
|
82
|
+
- lib/erp_work_effort/extensions.rb
|
83
|
+
- lib/erp_work_effort/version.rb
|
84
|
+
- lib/erp_work_effort.rb
|
85
|
+
- lib/tasks/erp_work_effort_tasks.rake
|
86
|
+
- GPL-3-LICENSE
|
87
|
+
- Rakefile
|
88
|
+
- README.rdoc
|
89
|
+
- spec/dummy/app/assets/javascripts/application.js
|
90
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
91
|
+
- spec/dummy/app/controllers/application_controller.rb
|
92
|
+
- spec/dummy/app/helpers/application_helper.rb
|
93
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
94
|
+
- spec/dummy/config/application.rb
|
95
|
+
- spec/dummy/config/boot.rb
|
96
|
+
- spec/dummy/config/database.yml
|
97
|
+
- spec/dummy/config/environment.rb
|
98
|
+
- spec/dummy/config/environments/spec.rb
|
99
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
100
|
+
- spec/dummy/config/initializers/inflections.rb
|
101
|
+
- spec/dummy/config/initializers/mime_types.rb
|
102
|
+
- spec/dummy/config/initializers/secret_token.rb
|
103
|
+
- spec/dummy/config/initializers/session_store.rb
|
104
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
105
|
+
- spec/dummy/config/locales/en.yml
|
106
|
+
- spec/dummy/config/routes.rb
|
107
|
+
- spec/dummy/config.ru
|
108
|
+
- spec/dummy/public/404.html
|
109
|
+
- spec/dummy/public/422.html
|
110
|
+
- spec/dummy/public/500.html
|
111
|
+
- spec/dummy/public/favicon.ico
|
112
|
+
- spec/dummy/Rakefile
|
113
|
+
- spec/dummy/script/rails
|
114
|
+
- spec/models/cost_spec.rb
|
115
|
+
- spec/models/party_resource_availability_spec.rb
|
116
|
+
- spec/models/party_resource_availability_type_spec.rb
|
117
|
+
- spec/models/project_effort_spec.rb
|
118
|
+
- spec/models/project_requirement_spec.rb
|
119
|
+
- spec/models/support_effort_spec.rb
|
120
|
+
- spec/models/support_requirement_spec.rb
|
121
|
+
- spec/models/valid_work_assignment_attribute_spec.rb
|
122
|
+
- spec/models/valid_work_assignment_spec.rb
|
123
|
+
- spec/models/work_effort_assignment_spec.rb
|
124
|
+
- spec/models/work_effort_spec.rb
|
125
|
+
- spec/models/work_effort_status_spec.rb
|
126
|
+
- spec/models/work_effort_status_type_spec.rb
|
127
|
+
- spec/models/work_requirement_spec.rb
|
128
|
+
- spec/models/work_requirement_work_effort_status_type._spec.rb
|
129
|
+
- spec/spec_helper.rb
|
130
|
+
homepage: http://development.compassagile.com
|
131
|
+
licenses: []
|
132
|
+
post_install_message:
|
133
|
+
rdoc_options: []
|
134
|
+
require_paths:
|
135
|
+
- lib
|
136
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ! '>='
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0'
|
142
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
143
|
+
none: false
|
144
|
+
requirements:
|
145
|
+
- - ! '>='
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: '0'
|
148
|
+
requirements: []
|
149
|
+
rubyforge_project:
|
150
|
+
rubygems_version: 1.8.10
|
151
|
+
signing_key:
|
152
|
+
specification_version: 3
|
153
|
+
summary: Summary of ErpWorkEffort.
|
154
|
+
test_files:
|
155
|
+
- spec/dummy/app/assets/javascripts/application.js
|
156
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
157
|
+
- spec/dummy/app/controllers/application_controller.rb
|
158
|
+
- spec/dummy/app/helpers/application_helper.rb
|
159
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
160
|
+
- spec/dummy/config/application.rb
|
161
|
+
- spec/dummy/config/boot.rb
|
162
|
+
- spec/dummy/config/database.yml
|
163
|
+
- spec/dummy/config/environment.rb
|
164
|
+
- spec/dummy/config/environments/spec.rb
|
165
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
166
|
+
- spec/dummy/config/initializers/inflections.rb
|
167
|
+
- spec/dummy/config/initializers/mime_types.rb
|
168
|
+
- spec/dummy/config/initializers/secret_token.rb
|
169
|
+
- spec/dummy/config/initializers/session_store.rb
|
170
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
171
|
+
- spec/dummy/config/locales/en.yml
|
172
|
+
- spec/dummy/config/routes.rb
|
173
|
+
- spec/dummy/config.ru
|
174
|
+
- spec/dummy/public/404.html
|
175
|
+
- spec/dummy/public/422.html
|
176
|
+
- spec/dummy/public/500.html
|
177
|
+
- spec/dummy/public/favicon.ico
|
178
|
+
- spec/dummy/Rakefile
|
179
|
+
- spec/dummy/script/rails
|
180
|
+
- spec/models/cost_spec.rb
|
181
|
+
- spec/models/party_resource_availability_spec.rb
|
182
|
+
- spec/models/party_resource_availability_type_spec.rb
|
183
|
+
- spec/models/project_effort_spec.rb
|
184
|
+
- spec/models/project_requirement_spec.rb
|
185
|
+
- spec/models/support_effort_spec.rb
|
186
|
+
- spec/models/support_requirement_spec.rb
|
187
|
+
- spec/models/valid_work_assignment_attribute_spec.rb
|
188
|
+
- spec/models/valid_work_assignment_spec.rb
|
189
|
+
- spec/models/work_effort_assignment_spec.rb
|
190
|
+
- spec/models/work_effort_spec.rb
|
191
|
+
- spec/models/work_effort_status_spec.rb
|
192
|
+
- spec/models/work_effort_status_type_spec.rb
|
193
|
+
- spec/models/work_requirement_spec.rb
|
194
|
+
- spec/models/work_requirement_work_effort_status_type._spec.rb
|
195
|
+
- spec/spec_helper.rb
|