effective_addresses 1.9.1 → 1.9.2
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f68f7e9190672bf40b176596387019c6e4ff3ce76f299950469dba367eca0d77
|
|
4
|
+
data.tar.gz: 180012dead028e83f163659605bc5f55dc9c345f3fccce1e201cf140f83c21a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b879876863da03b54413dd98e9bce145e77e166b99822d8315c1f2d9620c150fb9999a1303aaeeb75e256c28aae9bc64c47391a1713deca10d53b6d462d78196
|
|
7
|
+
data.tar.gz: d6855b8a7b2b6171c1a88d973abd73347152ab5ce90884ded6409136f767aaf07b087126045bbc4a743f1605e2a9fe9cf1597d567f60d6e5227d4aa18de7c63e
|
|
@@ -2,8 +2,8 @@ module EffectiveAddresses
|
|
|
2
2
|
class Engine < ::Rails::Engine
|
|
3
3
|
engine_name 'effective_addresses'
|
|
4
4
|
|
|
5
|
-
config.autoload_paths += Dir["#{config.root}/
|
|
6
|
-
config.
|
|
5
|
+
config.autoload_paths += Dir["#{config.root}/lib/validators"]
|
|
6
|
+
config.eager_load_paths += Dir["#{config.root}/lib/validators"]
|
|
7
7
|
|
|
8
8
|
# Include acts_as_addressable concern and allow any ActiveRecord object to call it
|
|
9
9
|
initializer 'effective_addresses.active_record' do |app|
|
|
@@ -19,4 +19,3 @@ module EffectiveAddresses
|
|
|
19
19
|
|
|
20
20
|
end
|
|
21
21
|
end
|
|
22
|
-
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: effective_addresses
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Code and Effect
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -69,8 +69,6 @@ files:
|
|
|
69
69
|
- app/helpers/effective_addresses_helper.rb
|
|
70
70
|
- app/models/concerns/acts_as_addressable.rb
|
|
71
71
|
- app/models/effective/address.rb
|
|
72
|
-
- app/models/validators/effective_address_full_name_presence_validator.rb
|
|
73
|
-
- app/models/validators/effective_address_valid_validator.rb
|
|
74
72
|
- app/views/effective/addresses/_address.html.haml
|
|
75
73
|
- app/views/effective/addresses/_form_with.html.haml
|
|
76
74
|
- app/views/effective/addresses/_formtastic.html.haml
|
|
@@ -84,11 +82,13 @@ files:
|
|
|
84
82
|
- lib/effective_addresses/engine.rb
|
|
85
83
|
- lib/effective_addresses/version.rb
|
|
86
84
|
- lib/generators/effective_addresses/install_generator.rb
|
|
85
|
+
- lib/validators/effective_address_full_name_presence_validator.rb
|
|
86
|
+
- lib/validators/effective_address_valid_validator.rb
|
|
87
87
|
homepage: https://github.com/code-and-effect/effective_addresses
|
|
88
88
|
licenses:
|
|
89
89
|
- MIT
|
|
90
90
|
metadata: {}
|
|
91
|
-
post_install_message:
|
|
91
|
+
post_install_message:
|
|
92
92
|
rdoc_options: []
|
|
93
93
|
require_paths:
|
|
94
94
|
- lib
|
|
@@ -103,8 +103,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
104
|
version: '0'
|
|
105
105
|
requirements: []
|
|
106
|
-
rubygems_version: 3.
|
|
107
|
-
signing_key:
|
|
106
|
+
rubygems_version: 3.1.2
|
|
107
|
+
signing_key:
|
|
108
108
|
specification_version: 4
|
|
109
109
|
summary: Extend any ActiveRecord object to have one or more named addresses. Includes
|
|
110
110
|
a geographic region-aware custom form input backed by Carmen.
|