multiinsert 0.0.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/.gitignore +15 -0
- data/Gemfile +49 -0
- data/Gemfile.lock +182 -0
- data/README.md +4 -0
- data/README.rdoc +261 -0
- data/Rakefile +7 -0
- data/app/assets/images/Dashboard.jpg +0 -0
- data/app/assets/images/black.png +0 -0
- data/app/assets/images/giff.gif +0 -0
- data/app/assets/images/rails.png +0 -0
- data/app/assets/images/sprites.png +0 -0
- data/app/assets/javascripts/application.js +15 -0
- data/app/assets/javascripts/effects.js +9 -0
- data/app/assets/javascripts/evaluations.js.coffee +3 -0
- data/app/assets/javascripts/tabs_old.js +42 -0
- data/app/assets/stylesheets/application.css +13 -0
- data/app/assets/stylesheets/evaluations.css.scss +3 -0
- data/app/assets/stylesheets/style.css +477 -0
- data/app/assets/stylesheets/tab.css +190 -0
- data/app/controllers/application_controller.rb +15 -0
- data/app/controllers/employee_heirarchies_controller.rb +2 -0
- data/app/controllers/evaluations_controller.rb +80 -0
- data/app/controllers/sessions_controller.rb +48 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/helpers/employee_heirarchies_helper.rb +2 -0
- data/app/helpers/evaluations_helper.rb +2 -0
- data/app/mailers/.gitkeep +0 -0
- data/app/models/.gitkeep +0 -0
- data/app/models/employee.rb +5 -0
- data/app/models/employee_heirarchy.rb +6 -0
- data/app/models/evaluation.rb +6 -0
- data/app/models/evaluation_interval.rb +5 -0
- data/app/models/evaluation_period.rb +6 -0
- data/app/models/interval_format.rb +4 -0
- data/app/models/role.rb +7 -0
- data/app/models/score.rb +3 -0
- data/app/models/team.rb +10 -0
- data/app/models/team.rb~ +10 -0
- data/app/models/team_value.rb +5 -0
- data/app/models/user.rb +49 -0
- data/app/models/user.rb~ +11 -0
- data/app/models/user_history.rb +6 -0
- data/app/models/user_role.rb +5 -0
- data/app/models/value.rb +8 -0
- data/app/models/value.rb~ +7 -0
- data/app/views/devise/confirmations/new.html.erb +12 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +16 -0
- data/app/views/devise/passwords/new.html.erb +12 -0
- data/app/views/devise/registrations/edit.html.erb +29 -0
- data/app/views/devise/registrations/new.html.erb +36 -0
- data/app/views/devise/sessions/new.html.erb +17 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +12 -0
- data/app/views/evaluations/edit.html.erb +21 -0
- data/app/views/evaluations/first.html.erb +5 -0
- data/app/views/evaluations/index.html.erb +7 -0
- data/app/views/evaluations/new.html.erb +15 -0
- data/app/views/evaluations/show.html.erb +21 -0
- data/app/views/layouts/application.html.erb +87 -0
- data/config.ru +4 -0
- data/config/application.rb +63 -0
- data/config/boot.rb +6 -0
- data/config/database.yml +31 -0
- data/config/database.yml~ +31 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +37 -0
- data/config/environments/production.rb +67 -0
- data/config/environments/test.rb +37 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/devise.rb +240 -0
- data/config/initializers/inflections.rb +15 -0
- data/config/initializers/mime_types.rb +5 -0
- data/config/initializers/rails_admin.rb +116 -0
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/session_store.rb +8 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/devise.en.yml +59 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +70 -0
- data/db/migrate/20130220053413_devise_create_users.rb +52 -0
- data/db/migrate/20130220055237_create_rails_admin_histories_table.rb +18 -0
- data/db/migrate/20130220060116_create_values.rb +9 -0
- data/db/migrate/20130220060116_create_values.rb~ +8 -0
- data/db/migrate/20130220060206_create_scores.rb +9 -0
- data/db/migrate/20130220060258_create_teams.rb +8 -0
- data/db/migrate/20130220060347_create_team_values.rb +9 -0
- data/db/migrate/20130220060347_create_team_values.rb~ +10 -0
- data/db/migrate/20130220060427_create_roles.rb +8 -0
- data/db/migrate/20130220060605_create_evaluation_periods.rb +10 -0
- data/db/migrate/20130220060807_create_evaluation_intervals.rb +9 -0
- data/db/migrate/20130220060902_create_interval_formats.rb +9 -0
- data/db/migrate/20130220061022_create_user_histories.rb +13 -0
- data/db/migrate/20130220061242_create_evaluations.rb +16 -0
- data/db/migrate/20130305063738_create_user_roles.rb +9 -0
- data/db/migrate/20130305091849_create_employees.rb +12 -0
- data/db/migrate/20130305144125_create_employee_heirarchies.rb +13 -0
- data/db/migrate/20130305150244_add_foreign_keys_to_employee_heirarchies.rb +6 -0
- data/db/migrate/20130307035139_addmanagerid_to_evaluations.rb +9 -0
- data/db/schema.rb +175 -0
- data/db/seeds.rb +7 -0
- data/doc/README_FOR_APP +2 -0
- data/lib/assets/.gitkeep +0 -0
- data/lib/tasks/.gitkeep +0 -0
- data/log/.gitkeep +0 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +25 -0
- data/public/favicon.ico +0 -0
- data/public/robots.txt +5 -0
- data/script/rails +6 -0
- data/test/fixtures/.gitkeep +0 -0
- data/test/fixtures/evaluation_intervals.yml +9 -0
- data/test/fixtures/evaluation_periods.yml +11 -0
- data/test/fixtures/evaluations.yml +19 -0
- data/test/fixtures/interval_formats.yml +7 -0
- data/test/fixtures/roles.yml +7 -0
- data/test/fixtures/scores.yml +9 -0
- data/test/fixtures/team_values.yml +9 -0
- data/test/fixtures/teams.yml +9 -0
- data/test/fixtures/user_histories.yml +15 -0
- data/test/fixtures/users.yml +11 -0
- data/test/fixtures/values.yml +7 -0
- data/test/functional/.gitkeep +0 -0
- data/test/functional/employee_heirarchies_controller_test.rb +7 -0
- data/test/functional/evaluations_controller_test.rb +7 -0
- data/test/integration/.gitkeep +0 -0
- data/test/performance/browsing_test.rb +12 -0
- data/test/test_helper.rb +13 -0
- data/test/unit/.gitkeep +0 -0
- data/test/unit/evaluation_interval_test.rb +7 -0
- data/test/unit/evaluation_period_test.rb +7 -0
- data/test/unit/evaluation_test.rb +7 -0
- data/test/unit/helpers/employee_heirarchies_helper_test.rb +4 -0
- data/test/unit/helpers/evaluations_helper_test.rb +4 -0
- data/test/unit/interval_format_test.rb +7 -0
- data/test/unit/role_test.rb +7 -0
- data/test/unit/score_test.rb +7 -0
- data/test/unit/team_test.rb +7 -0
- data/test/unit/team_value_test.rb +7 -0
- data/test/unit/user_history_test.rb +7 -0
- data/test/unit/user_test.rb +7 -0
- data/test/unit/value_test.rb +7 -0
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- data/vendor/plugins/.gitkeep +0 -0
- metadata +258 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
|
2
|
+
|
|
3
|
+
one:
|
|
4
|
+
eval_start_date: 2013-02-20 11:36:06
|
|
5
|
+
eval_end_date: 2013-02-20 11:36:06
|
|
6
|
+
team_id: 1
|
|
7
|
+
|
|
8
|
+
two:
|
|
9
|
+
eval_start_date: 2013-02-20 11:36:06
|
|
10
|
+
eval_end_date: 2013-02-20 11:36:06
|
|
11
|
+
team_id: 1
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
|
2
|
+
|
|
3
|
+
one:
|
|
4
|
+
self_points: 1
|
|
5
|
+
manager_points: 1
|
|
6
|
+
self_comments: MyText
|
|
7
|
+
manager_comments: MyText
|
|
8
|
+
evaluation_period_id: 1
|
|
9
|
+
value_id: 1
|
|
10
|
+
user_id: 1
|
|
11
|
+
|
|
12
|
+
two:
|
|
13
|
+
self_points: 1
|
|
14
|
+
manager_points: 1
|
|
15
|
+
self_comments: MyText
|
|
16
|
+
manager_comments: MyText
|
|
17
|
+
evaluation_period_id: 1
|
|
18
|
+
value_id: 1
|
|
19
|
+
user_id: 1
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
|
2
|
+
|
|
3
|
+
one:
|
|
4
|
+
team_id: 1
|
|
5
|
+
user_id: 1
|
|
6
|
+
evaluation_period_id: 1
|
|
7
|
+
date: 2013-02-20 11:40:22
|
|
8
|
+
totalpoints: 1
|
|
9
|
+
|
|
10
|
+
two:
|
|
11
|
+
team_id: 1
|
|
12
|
+
user_id: 1
|
|
13
|
+
evaluation_period_id: 1
|
|
14
|
+
date: 2013-02-20 11:40:22
|
|
15
|
+
totalpoints: 1
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
|
2
|
+
|
|
3
|
+
# This model initially had no columns defined. If you add columns to the
|
|
4
|
+
# model remove the '{}' from the fixture names and add the columns immediately
|
|
5
|
+
# below each fixture, per the syntax in the comments below
|
|
6
|
+
#
|
|
7
|
+
one: {}
|
|
8
|
+
# column: value
|
|
9
|
+
#
|
|
10
|
+
two: {}
|
|
11
|
+
# column: value
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
require 'rails/performance_test_help'
|
|
3
|
+
|
|
4
|
+
class BrowsingTest < ActionDispatch::PerformanceTest
|
|
5
|
+
# Refer to the documentation for all available options
|
|
6
|
+
# self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
|
|
7
|
+
# :output => 'tmp/performance', :formats => [:flat] }
|
|
8
|
+
|
|
9
|
+
def test_homepage
|
|
10
|
+
get '/'
|
|
11
|
+
end
|
|
12
|
+
end
|
data/test/test_helper.rb
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
|
2
|
+
require File.expand_path('../../config/environment', __FILE__)
|
|
3
|
+
require 'rails/test_help'
|
|
4
|
+
|
|
5
|
+
class ActiveSupport::TestCase
|
|
6
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
|
7
|
+
#
|
|
8
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
|
9
|
+
# -- they do not yet inherit this setting
|
|
10
|
+
fixtures :all
|
|
11
|
+
|
|
12
|
+
# Add more helper methods to be used by all tests here...
|
|
13
|
+
end
|
data/test/unit/.gitkeep
ADDED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
ADDED
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: multiinsert
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- anjana nair
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2013-03-21 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: bundler
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ~>
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '1.3'
|
|
22
|
+
type: :development
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ~>
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.3'
|
|
30
|
+
- !ruby/object:Gem::Dependency
|
|
31
|
+
name: rake
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
34
|
+
requirements:
|
|
35
|
+
- - ! '>='
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '0'
|
|
38
|
+
type: :development
|
|
39
|
+
prerelease: false
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
description: Inserting multiple records for a model
|
|
47
|
+
email:
|
|
48
|
+
- anjana.arun@revenuemed.com
|
|
49
|
+
executables: []
|
|
50
|
+
extensions: []
|
|
51
|
+
extra_rdoc_files: []
|
|
52
|
+
files:
|
|
53
|
+
- .gitignore
|
|
54
|
+
- Gemfile
|
|
55
|
+
- Gemfile.lock
|
|
56
|
+
- README.md
|
|
57
|
+
- README.rdoc
|
|
58
|
+
- Rakefile
|
|
59
|
+
- app/assets/images/Dashboard.jpg
|
|
60
|
+
- app/assets/images/black.png
|
|
61
|
+
- app/assets/images/giff.gif
|
|
62
|
+
- app/assets/images/rails.png
|
|
63
|
+
- app/assets/images/sprites.png
|
|
64
|
+
- app/assets/javascripts/application.js
|
|
65
|
+
- app/assets/javascripts/effects.js
|
|
66
|
+
- app/assets/javascripts/evaluations.js.coffee
|
|
67
|
+
- app/assets/javascripts/tabs_old.js
|
|
68
|
+
- app/assets/stylesheets/application.css
|
|
69
|
+
- app/assets/stylesheets/evaluations.css.scss
|
|
70
|
+
- app/assets/stylesheets/style.css
|
|
71
|
+
- app/assets/stylesheets/tab.css
|
|
72
|
+
- app/controllers/application_controller.rb
|
|
73
|
+
- app/controllers/employee_heirarchies_controller.rb
|
|
74
|
+
- app/controllers/evaluations_controller.rb
|
|
75
|
+
- app/controllers/sessions_controller.rb
|
|
76
|
+
- app/helpers/application_helper.rb
|
|
77
|
+
- app/helpers/employee_heirarchies_helper.rb
|
|
78
|
+
- app/helpers/evaluations_helper.rb
|
|
79
|
+
- app/mailers/.gitkeep
|
|
80
|
+
- app/models/.gitkeep
|
|
81
|
+
- app/models/employee.rb
|
|
82
|
+
- app/models/employee_heirarchy.rb
|
|
83
|
+
- app/models/evaluation.rb
|
|
84
|
+
- app/models/evaluation_interval.rb
|
|
85
|
+
- app/models/evaluation_period.rb
|
|
86
|
+
- app/models/interval_format.rb
|
|
87
|
+
- app/models/role.rb
|
|
88
|
+
- app/models/score.rb
|
|
89
|
+
- app/models/team.rb
|
|
90
|
+
- app/models/team.rb~
|
|
91
|
+
- app/models/team_value.rb
|
|
92
|
+
- app/models/user.rb
|
|
93
|
+
- app/models/user.rb~
|
|
94
|
+
- app/models/user_history.rb
|
|
95
|
+
- app/models/user_role.rb
|
|
96
|
+
- app/models/value.rb
|
|
97
|
+
- app/models/value.rb~
|
|
98
|
+
- app/views/devise/confirmations/new.html.erb
|
|
99
|
+
- app/views/devise/mailer/confirmation_instructions.html.erb
|
|
100
|
+
- app/views/devise/mailer/reset_password_instructions.html.erb
|
|
101
|
+
- app/views/devise/mailer/unlock_instructions.html.erb
|
|
102
|
+
- app/views/devise/passwords/edit.html.erb
|
|
103
|
+
- app/views/devise/passwords/new.html.erb
|
|
104
|
+
- app/views/devise/registrations/edit.html.erb
|
|
105
|
+
- app/views/devise/registrations/new.html.erb
|
|
106
|
+
- app/views/devise/sessions/new.html.erb
|
|
107
|
+
- app/views/devise/shared/_links.erb
|
|
108
|
+
- app/views/devise/unlocks/new.html.erb
|
|
109
|
+
- app/views/evaluations/edit.html.erb
|
|
110
|
+
- app/views/evaluations/first.html.erb
|
|
111
|
+
- app/views/evaluations/index.html.erb
|
|
112
|
+
- app/views/evaluations/new.html.erb
|
|
113
|
+
- app/views/evaluations/show.html.erb
|
|
114
|
+
- app/views/layouts/application.html.erb
|
|
115
|
+
- config.ru
|
|
116
|
+
- config/application.rb
|
|
117
|
+
- config/boot.rb
|
|
118
|
+
- config/database.yml
|
|
119
|
+
- config/database.yml~
|
|
120
|
+
- config/environment.rb
|
|
121
|
+
- config/environments/development.rb
|
|
122
|
+
- config/environments/production.rb
|
|
123
|
+
- config/environments/test.rb
|
|
124
|
+
- config/initializers/backtrace_silencers.rb
|
|
125
|
+
- config/initializers/devise.rb
|
|
126
|
+
- config/initializers/inflections.rb
|
|
127
|
+
- config/initializers/mime_types.rb
|
|
128
|
+
- config/initializers/rails_admin.rb
|
|
129
|
+
- config/initializers/secret_token.rb
|
|
130
|
+
- config/initializers/session_store.rb
|
|
131
|
+
- config/initializers/wrap_parameters.rb
|
|
132
|
+
- config/locales/devise.en.yml
|
|
133
|
+
- config/locales/en.yml
|
|
134
|
+
- config/routes.rb
|
|
135
|
+
- db/migrate/20130220053413_devise_create_users.rb
|
|
136
|
+
- db/migrate/20130220055237_create_rails_admin_histories_table.rb
|
|
137
|
+
- db/migrate/20130220060116_create_values.rb
|
|
138
|
+
- db/migrate/20130220060116_create_values.rb~
|
|
139
|
+
- db/migrate/20130220060206_create_scores.rb
|
|
140
|
+
- db/migrate/20130220060258_create_teams.rb
|
|
141
|
+
- db/migrate/20130220060347_create_team_values.rb
|
|
142
|
+
- db/migrate/20130220060347_create_team_values.rb~
|
|
143
|
+
- db/migrate/20130220060427_create_roles.rb
|
|
144
|
+
- db/migrate/20130220060605_create_evaluation_periods.rb
|
|
145
|
+
- db/migrate/20130220060807_create_evaluation_intervals.rb
|
|
146
|
+
- db/migrate/20130220060902_create_interval_formats.rb
|
|
147
|
+
- db/migrate/20130220061022_create_user_histories.rb
|
|
148
|
+
- db/migrate/20130220061242_create_evaluations.rb
|
|
149
|
+
- db/migrate/20130305063738_create_user_roles.rb
|
|
150
|
+
- db/migrate/20130305091849_create_employees.rb
|
|
151
|
+
- db/migrate/20130305144125_create_employee_heirarchies.rb
|
|
152
|
+
- db/migrate/20130305150244_add_foreign_keys_to_employee_heirarchies.rb
|
|
153
|
+
- db/migrate/20130307035139_addmanagerid_to_evaluations.rb
|
|
154
|
+
- db/schema.rb
|
|
155
|
+
- db/seeds.rb
|
|
156
|
+
- doc/README_FOR_APP
|
|
157
|
+
- lib/assets/.gitkeep
|
|
158
|
+
- lib/tasks/.gitkeep
|
|
159
|
+
- log/.gitkeep
|
|
160
|
+
- public/404.html
|
|
161
|
+
- public/422.html
|
|
162
|
+
- public/500.html
|
|
163
|
+
- public/favicon.ico
|
|
164
|
+
- public/robots.txt
|
|
165
|
+
- script/rails
|
|
166
|
+
- test/fixtures/.gitkeep
|
|
167
|
+
- test/fixtures/evaluation_intervals.yml
|
|
168
|
+
- test/fixtures/evaluation_periods.yml
|
|
169
|
+
- test/fixtures/evaluations.yml
|
|
170
|
+
- test/fixtures/interval_formats.yml
|
|
171
|
+
- test/fixtures/roles.yml
|
|
172
|
+
- test/fixtures/scores.yml
|
|
173
|
+
- test/fixtures/team_values.yml
|
|
174
|
+
- test/fixtures/teams.yml
|
|
175
|
+
- test/fixtures/user_histories.yml
|
|
176
|
+
- test/fixtures/users.yml
|
|
177
|
+
- test/fixtures/values.yml
|
|
178
|
+
- test/functional/.gitkeep
|
|
179
|
+
- test/functional/employee_heirarchies_controller_test.rb
|
|
180
|
+
- test/functional/evaluations_controller_test.rb
|
|
181
|
+
- test/integration/.gitkeep
|
|
182
|
+
- test/performance/browsing_test.rb
|
|
183
|
+
- test/test_helper.rb
|
|
184
|
+
- test/unit/.gitkeep
|
|
185
|
+
- test/unit/evaluation_interval_test.rb
|
|
186
|
+
- test/unit/evaluation_period_test.rb
|
|
187
|
+
- test/unit/evaluation_test.rb
|
|
188
|
+
- test/unit/helpers/employee_heirarchies_helper_test.rb
|
|
189
|
+
- test/unit/helpers/evaluations_helper_test.rb
|
|
190
|
+
- test/unit/interval_format_test.rb
|
|
191
|
+
- test/unit/role_test.rb
|
|
192
|
+
- test/unit/score_test.rb
|
|
193
|
+
- test/unit/team_test.rb
|
|
194
|
+
- test/unit/team_value_test.rb
|
|
195
|
+
- test/unit/user_history_test.rb
|
|
196
|
+
- test/unit/user_test.rb
|
|
197
|
+
- test/unit/value_test.rb
|
|
198
|
+
- vendor/assets/javascripts/.gitkeep
|
|
199
|
+
- vendor/assets/stylesheets/.gitkeep
|
|
200
|
+
- vendor/plugins/.gitkeep
|
|
201
|
+
homepage: ''
|
|
202
|
+
licenses:
|
|
203
|
+
- MIT
|
|
204
|
+
post_install_message:
|
|
205
|
+
rdoc_options: []
|
|
206
|
+
require_paths:
|
|
207
|
+
- lib
|
|
208
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
209
|
+
none: false
|
|
210
|
+
requirements:
|
|
211
|
+
- - ! '>='
|
|
212
|
+
- !ruby/object:Gem::Version
|
|
213
|
+
version: '0'
|
|
214
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
|
+
none: false
|
|
216
|
+
requirements:
|
|
217
|
+
- - ! '>='
|
|
218
|
+
- !ruby/object:Gem::Version
|
|
219
|
+
version: '0'
|
|
220
|
+
requirements: []
|
|
221
|
+
rubyforge_project:
|
|
222
|
+
rubygems_version: 1.8.25
|
|
223
|
+
signing_key:
|
|
224
|
+
specification_version: 3
|
|
225
|
+
summary: Inserting multiple records for a model on saving a form
|
|
226
|
+
test_files:
|
|
227
|
+
- test/fixtures/.gitkeep
|
|
228
|
+
- test/fixtures/evaluation_intervals.yml
|
|
229
|
+
- test/fixtures/evaluation_periods.yml
|
|
230
|
+
- test/fixtures/evaluations.yml
|
|
231
|
+
- test/fixtures/interval_formats.yml
|
|
232
|
+
- test/fixtures/roles.yml
|
|
233
|
+
- test/fixtures/scores.yml
|
|
234
|
+
- test/fixtures/team_values.yml
|
|
235
|
+
- test/fixtures/teams.yml
|
|
236
|
+
- test/fixtures/user_histories.yml
|
|
237
|
+
- test/fixtures/users.yml
|
|
238
|
+
- test/fixtures/values.yml
|
|
239
|
+
- test/functional/.gitkeep
|
|
240
|
+
- test/functional/employee_heirarchies_controller_test.rb
|
|
241
|
+
- test/functional/evaluations_controller_test.rb
|
|
242
|
+
- test/integration/.gitkeep
|
|
243
|
+
- test/performance/browsing_test.rb
|
|
244
|
+
- test/test_helper.rb
|
|
245
|
+
- test/unit/.gitkeep
|
|
246
|
+
- test/unit/evaluation_interval_test.rb
|
|
247
|
+
- test/unit/evaluation_period_test.rb
|
|
248
|
+
- test/unit/evaluation_test.rb
|
|
249
|
+
- test/unit/helpers/employee_heirarchies_helper_test.rb
|
|
250
|
+
- test/unit/helpers/evaluations_helper_test.rb
|
|
251
|
+
- test/unit/interval_format_test.rb
|
|
252
|
+
- test/unit/role_test.rb
|
|
253
|
+
- test/unit/score_test.rb
|
|
254
|
+
- test/unit/team_test.rb
|
|
255
|
+
- test/unit/team_value_test.rb
|
|
256
|
+
- test/unit/user_history_test.rb
|
|
257
|
+
- test/unit/user_test.rb
|
|
258
|
+
- test/unit/value_test.rb
|