erp_base_erp_svcs 4.0.0 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v1/base_controller.rb +17 -0
  3. data/app/controllers/api/v1/categories_controller.rb +165 -0
  4. data/app/controllers/api/v1/contact_purposes_controller.rb +24 -0
  5. data/app/controllers/api/v1/geo_zones_controller.rb +25 -0
  6. data/app/controllers/api/v1/note_types_controller.rb +27 -0
  7. data/app/controllers/api/v1/parties_controller.rb +182 -0
  8. data/app/controllers/api/v1/role_types_controller.rb +146 -0
  9. data/app/controllers/api/v1/status_applications_controller.rb +40 -0
  10. data/app/controllers/api/v1/tracked_status_types_controller.rb +146 -0
  11. data/app/controllers/api/v1/unit_of_measurements_controller.rb +16 -0
  12. data/app/models/category.rb +116 -4
  13. data/app/models/contact.rb +16 -2
  14. data/app/models/contact_purpose.rb +13 -0
  15. data/app/models/descriptive_asset.rb +17 -0
  16. data/app/models/email_address.rb +21 -3
  17. data/app/models/entity_party_role.rb +8 -0
  18. data/app/models/fixed_asset.rb +2 -0
  19. data/app/models/fixed_asset_type.rb +1 -0
  20. data/app/models/generated_item.rb +17 -0
  21. data/app/models/geo_country.rb +12 -1
  22. data/app/models/individual.rb +11 -20
  23. data/app/models/note.rb +9 -0
  24. data/app/models/note_type.rb +2 -0
  25. data/app/models/organization.rb +19 -16
  26. data/app/models/party.rb +134 -229
  27. data/app/models/party_unit_of_measurement.rb +17 -1
  28. data/app/models/phone_number.rb +32 -12
  29. data/app/models/postal_address.rb +42 -11
  30. data/app/models/relationship_type.rb +28 -1
  31. data/app/models/role_type.rb +25 -2
  32. data/app/models/status_application.rb +40 -0
  33. data/app/models/tracked_status_type.rb +12 -0
  34. data/app/models/unit_of_measurement.rb +46 -7
  35. data/app/models/view_type.rb +14 -0
  36. data/config/routes.rb +24 -0
  37. data/db/data_migrations/20110913145838_setup_compass_ae_instance.rb +22 -9
  38. data/db/migrate/20080805000020_base_erp_services.rb +235 -6
  39. data/db/migrate/20130713171653_create_party_unit_of_measurements.rb +28 -0
  40. data/db/migrate/20150716201200_add_record_to_contact.rb +42 -0
  41. data/db/migrate/20150814202823_add_party_id_to_status_application.rb +10 -0
  42. data/db/migrate/20160310163040_add_created_by_updated_by_to_erp_base_erp_svcs.rb +44 -0
  43. data/lib/erp_base_erp_svcs.rb +1 -0
  44. data/lib/erp_base_erp_svcs/config.rb +3 -2
  45. data/lib/erp_base_erp_svcs/engine.rb +8 -1
  46. data/lib/erp_base_erp_svcs/extensions.rb +7 -1
  47. data/lib/erp_base_erp_svcs/extensions/active_record/acts_as_category.rb +5 -4
  48. data/lib/erp_base_erp_svcs/extensions/active_record/acts_as_erp_type.rb +48 -9
  49. data/lib/erp_base_erp_svcs/extensions/active_record/can_be_generated.rb +54 -0
  50. data/lib/erp_base_erp_svcs/extensions/active_record/has_contacts.rb +383 -0
  51. data/lib/erp_base_erp_svcs/extensions/active_record/has_notes.rb +15 -4
  52. data/lib/erp_base_erp_svcs/extensions/active_record/has_party_roles.rb +94 -0
  53. data/lib/erp_base_erp_svcs/extensions/active_record/has_tracked_status.rb +118 -35
  54. data/lib/erp_base_erp_svcs/extensions/active_record/is_contact_mechanism.rb +94 -0
  55. data/lib/erp_base_erp_svcs/extensions/active_record/is_describable.rb +46 -42
  56. data/lib/erp_base_erp_svcs/extensions/active_record/is_tenantable.rb +40 -0
  57. data/lib/erp_base_erp_svcs/extensions/active_record/tracks_created_by_updated_by.rb +39 -0
  58. data/lib/erp_base_erp_svcs/extensions/core/numbers.rb +29 -18
  59. data/lib/erp_base_erp_svcs/extensions/core/object.rb +5 -0
  60. data/lib/erp_base_erp_svcs/extensions/core/string.rb +53 -0
  61. data/lib/erp_base_erp_svcs/non_escape_json_string.rb +1 -1
  62. data/lib/erp_base_erp_svcs/time_zone_helper.rb +57 -0
  63. data/lib/erp_base_erp_svcs/version.rb +1 -1
  64. data/lib/tasks/erp_base_erp_svcs_tasks.rake +20 -23
  65. data/spec/dummy/log/development.log +3 -0
  66. metadata +29 -22
  67. data/db/data_migrations/20110525001935_add_usd_currency.rb +0 -11
  68. data/db/data_migrations/20110609150135_add_iso_codes.rb +0 -18
  69. data/db/data_migrations/20130211555555_upgrade_compass_ae_instances_data.rb +0 -18
  70. data/db/data_migrations/20130404201756_add_guid_to_instances.rb +0 -9
  71. data/db/migrate/20120606183856_add_txn_status.rb +0 -36
  72. data/db/migrate/20130211444444_upgrade_compass_ae_instances.rb +0 -33
  73. data/db/migrate/20130404171435_add_uuid_compass_ae_instance.rb +0 -16
  74. data/db/migrate/20130411125210_add_long_lat_to_address.rb +0 -15
  75. data/db/migrate/20130522125404_create_facilities.rb +0 -114
  76. data/db/migrate/20130621182047_create_unit_of_measurements.rb +0 -18
  77. data/db/migrate/20130909163912_add_iid_index_to_role_types.rb +0 -9
  78. data/db/migrate/20130926023541_add_domain_to_unit_of_measure.rb +0 -13
  79. data/db/migrate/20130929025342_add_type_semantics_to_uom.rb +0 -54
  80. data/db/migrate/20131112013047_add_primary_to_contacts.rb +0 -13
  81. data/db/migrate/20131112013048_add_erp_base_erp_svcs_missing_indexes.rb +0 -33
  82. data/db/migrate/20131211180831_add_postal_address_to_facility.rb +0 -5
  83. data/db/migrate/20140102154311_create_fixed_asset_party_roles.rb +0 -12
  84. data/db/migrate/20140401072612_add_custom_fields_to_party.rb +0 -12
  85. data/lib/erp_base_erp_svcs/extensions/active_record/has_contact.rb +0 -69
@@ -0,0 +1,40 @@
1
+ module ErpBaseErpSvcs
2
+ module Extensions
3
+ module ActiveRecord
4
+ module IsTenantable
5
+ def self.included(base)
6
+ base.extend(ClassMethods)
7
+ end
8
+
9
+ module ClassMethods
10
+ def is_tenantable
11
+ extend IsTenantable::SingletonMethods
12
+ include IsTenantable::InstanceMethods
13
+
14
+ validates :tenant_id, presence: true
15
+
16
+ belongs_to :tenant, class_name: 'Party'
17
+ end
18
+ end # ClassMethods
19
+
20
+ module SingletonMethods
21
+
22
+ def by_tenant(tenant)
23
+ where(tenant_id: tenant)
24
+ end
25
+
26
+ end # SingletonMethods
27
+
28
+ module InstanceMethods
29
+
30
+ def set_tenant!(_tenant)
31
+ self.tenant = _tenant
32
+ save!
33
+ end
34
+
35
+ end # InstanceMethods
36
+
37
+ end # IsTenantable
38
+ end # ActiveRecord
39
+ end # Extensions
40
+ end # ErpBaseErpSvcs
@@ -0,0 +1,39 @@
1
+ module ErpBaseErpSvcs
2
+ module Extensions
3
+ module ActiveRecord
4
+ module TracksCreatedByUpdatedBy
5
+
6
+ def self.included(base)
7
+ base.extend(ClassMethods)
8
+ end
9
+
10
+ module ClassMethods
11
+
12
+ def tracks_created_by_updated_by
13
+ belongs_to :created_by_party, class_name: Party
14
+
15
+ belongs_to :updated_by_party, class_name: Party
16
+
17
+ extend SingletonMethods
18
+ include InstanceMethods
19
+ end
20
+
21
+ end
22
+
23
+ module SingletonMethods
24
+ end
25
+
26
+ module InstanceMethods
27
+ def created_by
28
+ created_by_party
29
+ end
30
+
31
+ def updated_by
32
+ updated_by_party
33
+ end
34
+ end
35
+
36
+ end # TracksCreatedByUpdatedBy
37
+ end # ActiveRecord
38
+ end # Extensions
39
+ end # ErpBaseErpSvcs
@@ -1,27 +1,38 @@
1
1
  module ErpBaseErpSvcs
2
- module Extensions
3
- module Core
4
- module Commas
5
- def commas
6
- self.to_s =~ /([^\.]*)(\..*)?/
7
- int, dec = $1.reverse, $2 ? $2 : ""
8
- while int.gsub!(/(,|\.|^)(\d{3})(\d)/, '\1\2,\3')
9
- end
10
- int.reverse + dec
11
- end
12
- end
13
- end
14
- end
2
+ module Extensions
3
+ module Core
4
+
5
+ module Commas
6
+ def commas
7
+ self.to_s =~ /([^\.]*)(\..*)?/
8
+ int, dec = $1.reverse, $2 ? $2 : ""
9
+ while int.gsub!(/(,|\.|^)(\d{3})(\d)/, '\1\2,\3')
10
+ end
11
+ int.reverse + dec
12
+ end
13
+ end
14
+
15
+ module Formatter
16
+ def h_m_s
17
+ [self / 3600, self/ 60 % 60, self % 60].map { |t| t.to_s.rjust(2,'0') }.join(':')
18
+ end
19
+
20
+ end
21
+
22
+ end
23
+ end
15
24
  end
16
25
 
17
26
  class Bignum
18
- include ErpBaseErpSvcs::Extensions::Core::Commas
19
- end
27
+ include ErpBaseErpSvcs::Extensions::Core::Commas
28
+ include ErpBaseErpSvcs::Extensions::Core::Formatter
29
+ end
20
30
 
21
31
  class Float
22
- include ErpBaseErpSvcs::Extensions::Core::Commas
32
+ include ErpBaseErpSvcs::Extensions::Core::Commas
23
33
  end
24
34
 
25
35
  class Fixnum
26
- include ErpBaseErpSvcs::Extensions::Core::Commas
27
- end
36
+ include ErpBaseErpSvcs::Extensions::Core::Commas
37
+ include ErpBaseErpSvcs::Extensions::Core::Formatter
38
+ end
@@ -4,7 +4,12 @@ Object.instance_eval do
4
4
  (klasses | klasses.collect do |klass| klass.all_subclasses end).flatten.uniq
5
5
  end
6
6
 
7
+ # Check if a class exists
8
+ #
9
+ # @param class_name [String] name of class to check
7
10
  def class_exists?(class_name)
11
+ class_name.to_s.constantize
12
+ # try to constantize twice which will cause false positives for Rails Models to fail
8
13
  class_name.to_s.constantize
9
14
  true
10
15
  rescue NameError
@@ -0,0 +1,53 @@
1
+ module StringToBoolean
2
+ def to_bool
3
+ return true if self == true || self =~ (/^(true|t|yes|y|1)$/i)
4
+ return false if self == false || self.blank? || self =~ (/^(false|f|no|n|0)$/i)
5
+ raise ArgumentError.new("invalid value for Boolean: \"#{self}\"")
6
+ end
7
+ end
8
+
9
+ module StringToInternalIdentifier
10
+ def to_iid
11
+ iid = self.squish.gsub(' ', '_').tr('^A-Za-z0-9_', '').downcase
12
+
13
+ #remove trailing _
14
+ if iid[-1] == '_'
15
+ iid.chop!
16
+ end
17
+
18
+ iid
19
+ end
20
+ end
21
+
22
+ module IsInteger
23
+ def is_integer?
24
+ /\A[-+]?\d+\z/ === self
25
+ end
26
+ end
27
+
28
+ module RandomString
29
+ def random(size=25)
30
+ charset = %w{A C D E F G H J K M N P Q R T V W X Y Z}
31
+ (0...size).map{ charset.to_a[rand(charset.size)] }.join
32
+ end
33
+ end
34
+
35
+ class String;
36
+ include StringToBoolean
37
+ include StringToInternalIdentifier
38
+ include IsInteger
39
+ extend RandomString
40
+ end
41
+
42
+ module BooleanToBoolean
43
+ def to_bool;
44
+ return self;
45
+ end
46
+ end
47
+
48
+ class TrueClass;
49
+ include BooleanToBoolean;
50
+ end
51
+ class FalseClass;
52
+ include BooleanToBoolean;
53
+ end
@@ -1,4 +1,4 @@
1
- class NonEscapeJsonString
1
+ class NonEscapeJsonString
2
2
  def initialize(value) @value = value end
3
3
  def as_json(options = nil) self end
4
4
  def encode_json(encoder) @value end
@@ -0,0 +1,57 @@
1
+ module ErpBaseErpSvcs
2
+ module Helpers
3
+ module Time
4
+
5
+ class Client
6
+
7
+ def initialize(client_utc_offset=nil)
8
+ @offset_in_hours = get_offset_in_hours(client_utc_offset)
9
+ end
10
+
11
+ def in_client_time(time)
12
+ time + @offset_in_hours.hours
13
+ end
14
+
15
+ def client_to_utc_time(time)
16
+ time - @offset_in_hours.hours
17
+ end
18
+
19
+ def beginning_of_day
20
+ (::Time.now + @offset_in_hours.hours).beginning_of_day
21
+ end
22
+
23
+ def end_of_day
24
+ (::Time.now + @offset_in_hours.hours).end_of_day
25
+ end
26
+
27
+ def beginning_of_week
28
+ (::Time.now + @offset_in_hours.hours).beginning_of_week
29
+ end
30
+
31
+ def end_of_week
32
+ (::Time.now + @offset_in_hours.hours).end_of_week
33
+ end
34
+
35
+ protected
36
+
37
+ def get_offset_in_hours(client_utc_offset=nil)
38
+ if client_utc_offset.nil?
39
+ offset = ::Time.now.formatted_offset
40
+ if offset.is_a? Integer
41
+ offset/60.0
42
+ else
43
+ hours_and_minutes = offset.split(':').map(&:to_f)
44
+ hours_and_minutes[0] + hours_and_minutes[1]/60
45
+ end
46
+ else
47
+ client_utc_offset = client_utc_offset.to_i
48
+ hours = client_utc_offset / 60.0
49
+ -hours
50
+ end
51
+ end
52
+
53
+ end
54
+
55
+ end # Time
56
+ end # Helpers
57
+ end # ErpBaseErpSvcs
@@ -1,7 +1,7 @@
1
1
  module ErpBaseErpSvcs
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 4
4
- MINOR = 0
4
+ MINOR = 2
5
5
  TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].compact.join('.')
@@ -82,26 +82,23 @@ namespace :compass_ae do
82
82
  end #install
83
83
 
84
84
  desc "Upgrade you installation of Compass AE"
85
- task :upgrade => :environment do
86
- begin
87
- ActiveRecord::Migrator.prepare_upgrade_migrations
88
- RussellEdge::DataMigrator.prepare_upgrade_migrations
89
-
90
- Rake::Task["db:migrate"].reenable
91
- Rake::Task["db:migrate"].invoke
92
-
93
- Rake::Task["db:migrate_data"].reenable
94
- Rake::Task["db:migrate_data"].invoke
95
-
96
- ActiveRecord::Migrator.cleanup_upgrade_migrations
97
- RussellEdge::DataMigrator.cleanup_upgrade_migrations
98
- rescue => ex
99
- ActiveRecord::Migrator.cleanup_migrations
100
- ActiveRecord::Migrator.cleanup_upgrade_migrations
101
- RussellEdge::DataMigrator.cleanup_upgrade_migrations
102
-
103
- puts ex.inspect
104
- puts ex.backtrace
105
- end #handle exceptions
106
- end #upgrade
107
- end #compass_ae
85
+ namespace :upgrade do
86
+
87
+ task :v1 => :environment do
88
+ puts "Upgrading CompassAE"
89
+
90
+ # loop through engines looking for upgrade tasks to run
91
+ Rails.application.config.erp_base_erp_svcs.compass_ae_engines.collect { |e| "#{e.name.split("::").first.underscore}" }.each do |engine|
92
+
93
+ if Rake::Task.task_defined?("#{engine}:upgrade:v1")
94
+ puts "Upgrading #{engine}"
95
+
96
+ Rake.application["#{engine}:upgrade:v1"].reenable
97
+ Rake.application["#{engine}:upgrade:v1"].invoke
98
+ end
99
+ end
100
+
101
+ end
102
+
103
+ end # upgrade
104
+ end # compass_ae
@@ -0,0 +1,3 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erp_base_erp_svcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rick Koloski, Russell Holmes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-19 00:00:00.000000000 Z
11
+ date: 2016-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: attr_encrypted
@@ -205,6 +205,16 @@ files:
205
205
  - GPL-3-LICENSE
206
206
  - README.md
207
207
  - Rakefile
208
+ - app/controllers/api/v1/base_controller.rb
209
+ - app/controllers/api/v1/categories_controller.rb
210
+ - app/controllers/api/v1/contact_purposes_controller.rb
211
+ - app/controllers/api/v1/geo_zones_controller.rb
212
+ - app/controllers/api/v1/note_types_controller.rb
213
+ - app/controllers/api/v1/parties_controller.rb
214
+ - app/controllers/api/v1/role_types_controller.rb
215
+ - app/controllers/api/v1/status_applications_controller.rb
216
+ - app/controllers/api/v1/tracked_status_types_controller.rb
217
+ - app/controllers/api/v1/unit_of_measurements_controller.rb
208
218
  - app/controllers/erp_base_erp_svcs/shared/units_of_measurement_controller.rb
209
219
  - app/helpers/erp_base_erp_svcs/application_helper.rb
210
220
  - app/models/category.rb
@@ -217,11 +227,13 @@ files:
217
227
  - app/models/currency.rb
218
228
  - app/models/descriptive_asset.rb
219
229
  - app/models/email_address.rb
230
+ - app/models/entity_party_role.rb
220
231
  - app/models/facility.rb
221
232
  - app/models/facility_type.rb
222
233
  - app/models/fixed_asset.rb
223
234
  - app/models/fixed_asset_party_role.rb
224
235
  - app/models/fixed_asset_type.rb
236
+ - app/models/generated_item.rb
225
237
  - app/models/geo_country.rb
226
238
  - app/models/geo_zone.rb
227
239
  - app/models/individual.rb
@@ -245,28 +257,14 @@ files:
245
257
  - app/models/view_type.rb
246
258
  - config/initializers/root_loader.rb
247
259
  - config/routes.rb
248
- - db/data_migrations/20110525001935_add_usd_currency.rb
249
- - db/data_migrations/20110609150135_add_iso_codes.rb
250
260
  - db/data_migrations/20110913145838_setup_compass_ae_instance.rb
251
- - db/data_migrations/20130211555555_upgrade_compass_ae_instances_data.rb
252
- - db/data_migrations/20130404201756_add_guid_to_instances.rb
253
261
  - db/data_sets/geo_countries.yml
254
262
  - db/data_sets/geo_zones.yml
255
263
  - db/migrate/20080805000020_base_erp_services.rb
256
- - db/migrate/20120606183856_add_txn_status.rb
257
- - db/migrate/20130211444444_upgrade_compass_ae_instances.rb
258
- - db/migrate/20130404171435_add_uuid_compass_ae_instance.rb
259
- - db/migrate/20130411125210_add_long_lat_to_address.rb
260
- - db/migrate/20130522125404_create_facilities.rb
261
- - db/migrate/20130621182047_create_unit_of_measurements.rb
262
- - db/migrate/20130909163912_add_iid_index_to_role_types.rb
263
- - db/migrate/20130926023541_add_domain_to_unit_of_measure.rb
264
- - db/migrate/20130929025342_add_type_semantics_to_uom.rb
265
- - db/migrate/20131112013047_add_primary_to_contacts.rb
266
- - db/migrate/20131112013048_add_erp_base_erp_svcs_missing_indexes.rb
267
- - db/migrate/20131211180831_add_postal_address_to_facility.rb
268
- - db/migrate/20140102154311_create_fixed_asset_party_roles.rb
269
- - db/migrate/20140401072612_add_custom_fields_to_party.rb
264
+ - db/migrate/20130713171653_create_party_unit_of_measurements.rb
265
+ - db/migrate/20150716201200_add_record_to_contact.rb
266
+ - db/migrate/20150814202823_add_party_id_to_status_application.rb
267
+ - db/migrate/20160310163040_add_created_by_updated_by_to_erp_base_erp_svcs.rb
270
268
  - lib/erp_base_erp_svcs.rb
271
269
  - lib/erp_base_erp_svcs/ar_fixtures.rb
272
270
  - lib/erp_base_erp_svcs/config.rb
@@ -277,19 +275,26 @@ files:
277
275
  - lib/erp_base_erp_svcs/extensions/active_record/acts_as_facility.rb
278
276
  - lib/erp_base_erp_svcs/extensions/active_record/acts_as_fixed_asset.rb
279
277
  - lib/erp_base_erp_svcs/extensions/active_record/acts_as_note_type.rb
280
- - lib/erp_base_erp_svcs/extensions/active_record/has_contact.rb
278
+ - lib/erp_base_erp_svcs/extensions/active_record/can_be_generated.rb
279
+ - lib/erp_base_erp_svcs/extensions/active_record/has_contacts.rb
281
280
  - lib/erp_base_erp_svcs/extensions/active_record/has_notes.rb
281
+ - lib/erp_base_erp_svcs/extensions/active_record/has_party_roles.rb
282
282
  - lib/erp_base_erp_svcs/extensions/active_record/has_tracked_status.rb
283
+ - lib/erp_base_erp_svcs/extensions/active_record/is_contact_mechanism.rb
283
284
  - lib/erp_base_erp_svcs/extensions/active_record/is_describable.rb
285
+ - lib/erp_base_erp_svcs/extensions/active_record/is_tenantable.rb
284
286
  - lib/erp_base_erp_svcs/extensions/active_record/migration.rb
285
287
  - lib/erp_base_erp_svcs/extensions/active_record/sti_instantiation.rb
286
288
  - lib/erp_base_erp_svcs/extensions/active_record/to_hash.rb
289
+ - lib/erp_base_erp_svcs/extensions/active_record/tracks_created_by_updated_by.rb
287
290
  - lib/erp_base_erp_svcs/extensions/core/acts_as_aspector_on.rb
288
291
  - lib/erp_base_erp_svcs/extensions/core/array.rb
289
292
  - lib/erp_base_erp_svcs/extensions/core/hash.rb
290
293
  - lib/erp_base_erp_svcs/extensions/core/numbers.rb
291
294
  - lib/erp_base_erp_svcs/extensions/core/object.rb
295
+ - lib/erp_base_erp_svcs/extensions/core/string.rb
292
296
  - lib/erp_base_erp_svcs/non_escape_json_string.rb
297
+ - lib/erp_base_erp_svcs/time_zone_helper.rb
293
298
  - lib/erp_base_erp_svcs/version.rb
294
299
  - lib/tasks/compass_backup.rake
295
300
  - lib/tasks/erp_base_erp_svcs_tasks.rake
@@ -314,6 +319,7 @@ files:
314
319
  - spec/dummy/config/initializers/wrap_parameters.rb
315
320
  - spec/dummy/config/locales/en.yml
316
321
  - spec/dummy/config/routes.rb
322
+ - spec/dummy/log/development.log
317
323
  - spec/dummy/public/404.html
318
324
  - spec/dummy/public/422.html
319
325
  - spec/dummy/public/500.html
@@ -372,7 +378,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
372
378
  version: '0'
373
379
  requirements: []
374
380
  rubyforge_project:
375
- rubygems_version: 2.2.2
381
+ rubygems_version: 2.4.8
376
382
  signing_key:
377
383
  specification_version: 4
378
384
  summary: contains an implementation of the ubiquitous 'party model' for managing people,
@@ -397,6 +403,7 @@ test_files:
397
403
  - spec/dummy/config/locales/en.yml
398
404
  - spec/dummy/config/routes.rb
399
405
  - spec/dummy/config.ru
406
+ - spec/dummy/log/development.log
400
407
  - spec/dummy/public/404.html
401
408
  - spec/dummy/public/422.html
402
409
  - spec/dummy/public/500.html