biggs 0.3.1 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +2 -1
- data/CHANGES.md +15 -2
- data/README.md +35 -33
- data/biggs.gemspec +3 -2
- data/lib/biggs/activerecord.rb +32 -36
- data/lib/biggs/format.rb +4 -6
- data/lib/biggs/version.rb +2 -2
- data/lib/biggs.rb +2 -3
- data/spec/spec_helper.rb +6 -1
- data/spec/unit/activerecord_spec.rb +47 -29
- metadata +36 -39
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e01c45617723b2d38b705c737fedf6bd560e9211c1ef834272cd9c4fd8f09814
|
4
|
+
data.tar.gz: 63763d95d695fe3078517c2f1e4cc80246dec8a53e6e8191c69fd71feb49d222
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 891ec94ea1236687a03296b4904740b5b28f391bc5de769ad5d78d6f9cb4fd3225399823c60e1de18145706b29940d0cea0a556cc1ec2b5f0a4a832645c14f92
|
7
|
+
data.tar.gz: 10383285215245585fca93d53377804c759beb43484f333421e7874768455dfbdb47b117885c466708a45f1501a0d410890c725ae0871db6c476553ac63b2205
|
data/.gitignore
CHANGED
data/CHANGES.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
### dev
|
2
2
|
|
3
|
+
### 0.4.0 / 2022-04-08
|
4
|
+
|
5
|
+
* [BREAKING]: Do not include to ActiveRecord::Base per default, use 'include Biggs::ActiveRecordAdapter' in your classes
|
6
|
+
* Allow multiple biggs methods per class
|
7
|
+
|
8
|
+
### 0.3.3 / 2013-05-06
|
9
|
+
|
10
|
+
* Added support for Rails 4 (by [mdemare](https://github.com/mdemare))
|
11
|
+
|
12
|
+
### 0.3.2 / 2013-02-19
|
13
|
+
|
14
|
+
* Fixed warning in Biggs::Format
|
15
|
+
|
3
16
|
### 0.3.1 / 2012-08-02
|
4
17
|
|
5
18
|
* Fixed LI format
|
@@ -35,8 +48,8 @@
|
|
35
48
|
|
36
49
|
### 0.1.3 / 2009-3-6
|
37
50
|
|
38
|
-
* Correct japanese address format. [hiroshi]
|
39
|
-
* Fixed docs for current API. [hiroshi]
|
51
|
+
* Correct japanese address format. (by [hiroshi](https://github.com/hiroshi))
|
52
|
+
* Fixed docs for current API. (by [hiroshi](https://github.com/hiroshi))
|
40
53
|
|
41
54
|
### 0.1.2 / 2009-3-4
|
42
55
|
|
data/README.md
CHANGED
@@ -3,67 +3,69 @@ biggs is a small ruby gem/rails plugin for formatting postal addresses from over
|
|
3
3
|
### Install
|
4
4
|
|
5
5
|
As a ruby gem:
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
If your rather prefer to install it as a plugin for rails, from your application directory simply run:
|
10
|
-
|
11
|
-
script/plugin install git://github.com/yolk/biggs.git
|
6
|
+
|
7
|
+
gem install biggs
|
12
8
|
|
13
9
|
### Standalone usage
|
14
|
-
|
10
|
+
|
15
11
|
f = Biggs::Formatter.new
|
16
|
-
|
12
|
+
|
17
13
|
f.format("de", # <= ISO alpha 2 code
|
18
|
-
:recipient => "Yolk Sebastian Munz & Julia Soergel GbR",
|
19
|
-
:street => "
|
20
|
-
:city => "
|
21
|
-
:zip =>
|
22
|
-
:state => "
|
14
|
+
:recipient => "Yolk Sebastian Munz & Julia Soergel GbR",
|
15
|
+
:street => "Musterallee 12", # <= street + house number
|
16
|
+
:city => "Ausgedacht",
|
17
|
+
:zip => 12345,
|
18
|
+
:state => "Nowhere" # <= state/province/region
|
23
19
|
)
|
24
20
|
|
25
21
|
returns
|
26
|
-
|
22
|
+
|
27
23
|
"Yolk Sebastian Munz & Julia Soergel GbR
|
28
|
-
|
29
|
-
|
24
|
+
Musterallee 12
|
25
|
+
12345 Ausgedacht
|
30
26
|
Germany"
|
31
27
|
|
32
28
|
At the moment Biggs::Formatter.new accepts only one option:
|
33
29
|
|
34
|
-
*
|
35
|
-
|
36
|
-
Biggs::Formatter.new(:
|
37
|
-
|
30
|
+
*blank_country_on* ISO alpha 2 code (single string or array) of countries the formatter should skip the line "country" (for national shipping).
|
31
|
+
|
32
|
+
Biggs::Formatter.new(blank_country_on: "de")
|
33
|
+
|
38
34
|
With the data from the above example this would return:
|
39
35
|
|
40
36
|
"Yolk Sebastian Munz & Julia Soergel GbR
|
41
|
-
|
42
|
-
|
37
|
+
Musterallee 12
|
38
|
+
12345 Ausgedacht"
|
43
39
|
|
44
40
|
### Usage with Rails and ActiveRecord
|
45
41
|
|
46
42
|
Address < ActiveRecord::Base
|
43
|
+
include Biggs::ActiveRecordAdapter
|
44
|
+
|
47
45
|
biggs :postal_address
|
48
46
|
end
|
49
|
-
|
50
|
-
This adds the method postal_address to your Address-model, and assumes the presence of the methods/columns recipient, street, city, zip, state, and country to get the address data. Country should return the ISO-code (e.g. 'us', 'fr', 'de').
|
47
|
+
|
48
|
+
This adds the method postal_address to your Address-model, and assumes the presence of the methods/columns recipient, street, city, zip, state, and country to get the address data. Country should return the ISO-code (e.g. 'us', 'fr', 'de').
|
51
49
|
|
52
50
|
You can customize the method-names biggs will use by passing in a hash of options:
|
53
|
-
|
51
|
+
|
54
52
|
Address < ActiveRecord::Base
|
55
|
-
|
53
|
+
include Biggs::ActiveRecordAdapter
|
54
|
+
|
55
|
+
biggs :postal_address,
|
56
56
|
:zip => :postal_code,
|
57
57
|
:country => :country_code,
|
58
58
|
:street => Proc.new {|address| "#{address.street} #{address.house_number}" }
|
59
59
|
end
|
60
|
-
|
61
|
-
You can pass in a symbol to let biggs call a different method on your Address-model, or a Proc-object to create your data on the fly.
|
60
|
+
|
61
|
+
You can pass in a symbol to let biggs call a different method on your Address-model, or a Proc-object to create your data on the fly.
|
62
62
|
|
63
63
|
You can even pass in a array of symbols:
|
64
64
|
|
65
65
|
Address < ActiveRecord::Base
|
66
|
-
|
66
|
+
include Biggs::ActiveRecordAdapter
|
67
|
+
|
68
|
+
biggs :postal_address,
|
67
69
|
:recipient => [:company_name, :person_name]
|
68
70
|
end
|
69
71
|
|
@@ -72,9 +74,9 @@ This will call the methods company_name and person_name on your address-instance
|
|
72
74
|
To access the formatted address string, simply call the provided method on an address instance:
|
73
75
|
|
74
76
|
Address.find(1).postal_address
|
75
|
-
|
77
|
+
|
76
78
|
If you pass in a ISO alpha 2 code as :country that is not supported by biggs, it will choose the US-format for addresses with an state specified, and the french/german format for addresses without an state.
|
77
|
-
|
79
|
+
|
78
80
|
### Supported countries
|
79
81
|
|
80
82
|
biggs knows how to format addresses of over 60 different countries. If you are missing one or find an misstake, feel free to let us know, fork this repository and commit your additions.
|
@@ -145,6 +147,6 @@ biggs knows how to format addresses of over 60 different countries. If you are m
|
|
145
147
|
* United States of America
|
146
148
|
* Yemen
|
147
149
|
|
148
|
-
biggs is tested to behave well with Rails 3
|
150
|
+
biggs is tested to behave well with Rails 3 to 7
|
149
151
|
|
150
|
-
Copyright (c) 2009-
|
152
|
+
Copyright (c) 2009-2022 Yolk Sebastian Munz & Julia Soergel GbR
|
data/biggs.gemspec
CHANGED
@@ -19,9 +19,10 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
20
|
s.require_paths = ["lib"]
|
21
21
|
|
22
|
-
s.add_dependency 'activerecord', '
|
22
|
+
s.add_dependency 'activerecord', '>= 3.0'
|
23
23
|
s.add_development_dependency 'rake'
|
24
|
-
s.add_development_dependency 'rspec', '>=
|
24
|
+
s.add_development_dependency 'rspec', '>= 3.0'
|
25
|
+
s.add_development_dependency 'rspec-its'
|
25
26
|
s.add_development_dependency 'sqlite3', '>= 1.3.5'
|
26
27
|
end
|
27
28
|
|
data/lib/biggs/activerecord.rb
CHANGED
@@ -2,60 +2,56 @@ require 'active_support/core_ext/class/attribute'
|
|
2
2
|
|
3
3
|
module Biggs
|
4
4
|
module ActiveRecordAdapter
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
included do
|
8
|
+
class_attribute :biggs_config, default: {}
|
8
9
|
end
|
9
|
-
|
10
|
-
module InitialClassMethods
|
11
|
-
def biggs(method_name=nil, options={})
|
12
|
-
self.class_attribute :biggs_value_methods
|
13
|
-
self.class_attribute :biggs_instance
|
14
10
|
|
15
|
-
|
16
|
-
|
11
|
+
class_methods do
|
12
|
+
def biggs(method_name=:postal_address, options={})
|
13
|
+
self.define_method(method_name) do
|
14
|
+
value_methods = self.biggs_config[method_name][:value_methods]
|
15
|
+
self.biggs_config[method_name][:instance].format(
|
16
|
+
Helpers.biggs_get_value(self, :country, value_methods),
|
17
|
+
Helpers.biggs_values(self, value_methods)
|
18
|
+
)
|
19
|
+
end
|
17
20
|
|
18
21
|
value_methods = {}
|
19
22
|
Biggs::Formatter::FIELDS.each do |field|
|
20
23
|
value_methods[field] = options.delete(field) if options[field]
|
21
24
|
end
|
22
|
-
|
23
|
-
self.
|
24
|
-
|
25
|
+
|
26
|
+
self.biggs_config = self.biggs_config.dup
|
27
|
+
|
28
|
+
self.biggs_config[method_name] = {
|
29
|
+
instance: Biggs::Formatter.new(options),
|
30
|
+
value_methods: value_methods
|
31
|
+
}
|
25
32
|
end
|
26
33
|
end
|
27
|
-
|
28
|
-
module
|
29
|
-
|
30
|
-
def biggs_postal_address
|
31
|
-
self.class.biggs_instance.format(biggs_country, biggs_values)
|
32
|
-
end
|
33
|
-
|
34
|
-
private
|
35
|
-
|
36
|
-
def biggs_country
|
37
|
-
biggs_get_value(:country)
|
38
|
-
end
|
39
|
-
|
40
|
-
def biggs_values
|
34
|
+
|
35
|
+
module Helpers
|
36
|
+
def self.biggs_values(instance, value_methods)
|
41
37
|
values = {}
|
42
38
|
(Biggs::Formatter::FIELDS - [:country]).each do |field|
|
43
|
-
values[field] = biggs_get_value(field)
|
39
|
+
values[field] = self.biggs_get_value(instance, field, value_methods)
|
44
40
|
end
|
45
41
|
values
|
46
42
|
end
|
47
|
-
|
48
|
-
def biggs_get_value(field)
|
49
|
-
key =
|
50
|
-
|
43
|
+
|
44
|
+
def self.biggs_get_value(instance, field, value_methods)
|
45
|
+
key = value_methods[field] || field
|
46
|
+
|
51
47
|
case key
|
52
48
|
when Symbol
|
53
|
-
|
49
|
+
instance.send(key.to_sym)
|
54
50
|
when Proc
|
55
|
-
key.call(
|
51
|
+
key.call(instance).to_s
|
56
52
|
when Array
|
57
53
|
if key.all?{|it| it.is_a?(Symbol) }
|
58
|
-
key.map{|method|
|
54
|
+
key.map{|method| instance.send(method) }.reject(&:blank?).join("\n")
|
59
55
|
else
|
60
56
|
raise "Biggs: Can't handle #{field} type Array with non-symbolic entries"
|
61
57
|
end
|
@@ -65,4 +61,4 @@ module Biggs
|
|
65
61
|
end
|
66
62
|
end
|
67
63
|
end
|
68
|
-
end
|
64
|
+
end
|
data/lib/biggs/format.rb
CHANGED
@@ -1,22 +1,20 @@
|
|
1
1
|
module Biggs
|
2
2
|
class Format
|
3
3
|
attr_reader :country_name, :iso_code, :format_string
|
4
|
-
|
5
|
-
DEFAULT_WITH_STATE =
|
6
|
-
|
4
|
+
|
7
5
|
def initialize(iso_code)
|
8
6
|
@iso_code = iso_code.to_s.downcase
|
9
7
|
@country_name = Biggs.country_names[@iso_code]
|
10
8
|
@format_string = Biggs.formats[@iso_code]
|
11
9
|
end
|
12
|
-
|
10
|
+
|
13
11
|
class << self
|
14
12
|
def find(iso_code)
|
15
13
|
entries_cache[iso_code] ||= new(iso_code)
|
16
14
|
end
|
17
|
-
|
15
|
+
|
18
16
|
private
|
19
|
-
|
17
|
+
|
20
18
|
def entries_cache
|
21
19
|
@entries_cache ||= {}
|
22
20
|
end
|
data/lib/biggs/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
module Biggs
|
2
|
-
VERSION = "0.
|
3
|
-
end
|
2
|
+
VERSION = "0.4.0"
|
3
|
+
end
|
data/lib/biggs.rb
CHANGED
@@ -7,7 +7,7 @@ module Biggs
|
|
7
7
|
def formats
|
8
8
|
@@formats ||= YAML.load_file(File.join(File.dirname(__FILE__), '..', 'formats.yml')) || {}
|
9
9
|
end
|
10
|
-
|
10
|
+
|
11
11
|
def country_names
|
12
12
|
@@country_names ||= YAML.load_file(File.join(File.dirname(__FILE__), '..', 'country_names.yml')) || {}
|
13
13
|
end
|
@@ -16,5 +16,4 @@ end
|
|
16
16
|
|
17
17
|
if defined?(ActiveRecord) and defined?(ActiveRecord::Base) and !ActiveRecord::Base.respond_to?(:biggs_formatter)
|
18
18
|
require 'biggs/activerecord'
|
19
|
-
|
20
|
-
end
|
19
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
$: << File.join(File.dirname(__FILE__), '..', 'lib')
|
2
2
|
require 'rubygems'
|
3
3
|
require 'rspec'
|
4
|
+
require 'rspec/its'
|
4
5
|
require File.join(File.dirname(__FILE__), '..', 'lib', 'biggs')
|
5
6
|
require 'logger'
|
6
7
|
|
@@ -12,4 +13,8 @@ ActiveRecord::Schema.define do
|
|
12
13
|
create_table :base_tables, :force => true do |table|
|
13
14
|
table.string :name
|
14
15
|
end
|
15
|
-
end
|
16
|
+
end
|
17
|
+
|
18
|
+
RSpec.configure do |config|
|
19
|
+
config.expect_with(:rspec) { |c| c.syntax = :should }
|
20
|
+
end
|
@@ -3,6 +3,8 @@ require 'active_record'
|
|
3
3
|
require File.join(File.dirname(__FILE__), '..', 'spec_helper')
|
4
4
|
|
5
5
|
class BaseTable < ActiveRecord::Base
|
6
|
+
include Biggs::ActiveRecordAdapter
|
7
|
+
|
6
8
|
Biggs::Formatter::FIELDS.each do |field|
|
7
9
|
define_method(field) do
|
8
10
|
field == :country ? "us" : field.to_s.upcase
|
@@ -19,11 +21,11 @@ end
|
|
19
21
|
class FooBarCustomFields < BaseTable
|
20
22
|
biggs :postal_address, :country => :my_custom_country_method,
|
21
23
|
:city => :my_custom_city_method
|
22
|
-
|
24
|
+
|
23
25
|
def my_custom_country_method
|
24
26
|
"de"
|
25
27
|
end
|
26
|
-
|
28
|
+
|
27
29
|
def my_custom_city_method
|
28
30
|
"Hamburg"
|
29
31
|
end
|
@@ -31,7 +33,7 @@ end
|
|
31
33
|
|
32
34
|
class FooBarCustomBlankDECountry < BaseTable
|
33
35
|
biggs :postal_address, :blank_country_on => "de"
|
34
|
-
|
36
|
+
|
35
37
|
def country
|
36
38
|
"DE"
|
37
39
|
end
|
@@ -42,69 +44,74 @@ class FooBarCustomMethod < BaseTable
|
|
42
44
|
end
|
43
45
|
|
44
46
|
class FooBarCustomProc < BaseTable
|
45
|
-
biggs :postal_address,
|
46
|
-
:country => Proc.new {|it| it.method_accessed_from_proc + "XX"},
|
47
|
+
biggs :postal_address,
|
48
|
+
:country => Proc.new {|it| it.method_accessed_from_proc + "XX"},
|
47
49
|
:state => Proc.new {|it| it.state.downcase }
|
48
|
-
|
50
|
+
|
49
51
|
def method_accessed_from_proc
|
50
52
|
"DE"
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
54
56
|
class FooBarCustomArray < BaseTable
|
55
|
-
biggs :postal_address,
|
57
|
+
biggs :postal_address,
|
56
58
|
:street => [:address_1, :address_empty, :address_nil, :address_2]
|
57
|
-
|
59
|
+
|
58
60
|
def address_1
|
59
61
|
"Address line 1"
|
60
62
|
end
|
61
|
-
|
63
|
+
|
62
64
|
def address_2
|
63
65
|
"Address line 2"
|
64
66
|
end
|
65
|
-
|
67
|
+
|
66
68
|
def address_empty
|
67
69
|
""
|
68
70
|
end
|
69
|
-
|
71
|
+
|
70
72
|
def address_nil
|
71
73
|
nil
|
72
74
|
end
|
73
75
|
end
|
74
76
|
|
77
|
+
class FooBarMultiple < BaseTable
|
78
|
+
biggs :postal_address_one
|
79
|
+
biggs :postal_address_two,
|
80
|
+
country: :alt_country
|
81
|
+
|
82
|
+
def alt_country
|
83
|
+
"Alt country"
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
75
87
|
describe "ActiveRecord Class" do
|
76
|
-
|
88
|
+
|
77
89
|
it "should include Biggs::ActiveRecordAdapter" do
|
78
90
|
FooBar.included_modules.should be_include(Biggs::ActiveRecordAdapter)
|
79
91
|
end
|
80
|
-
|
81
|
-
it "should set class value
|
82
|
-
FooBar.class_eval("
|
83
|
-
FooBar.class_eval("biggs_value_methods").size.should be_zero
|
84
|
-
end
|
85
|
-
|
86
|
-
it "should set class value biggs_instance" do
|
87
|
-
FooBar.class_eval("biggs_instance").should be_is_a(Biggs::Formatter)
|
92
|
+
|
93
|
+
it "should set class value biggs_config" do
|
94
|
+
FooBar.class_eval("biggs_config").should be_is_a(Hash)
|
88
95
|
end
|
89
|
-
|
96
|
+
|
90
97
|
it "should respond to biggs" do
|
91
98
|
FooBar.should be_respond_to(:biggs)
|
92
99
|
end
|
93
100
|
end
|
94
101
|
|
95
102
|
describe "ActiveRecord Instance" do
|
96
|
-
|
103
|
+
|
97
104
|
describe "Empty" do
|
98
105
|
it "should not have postal_address method" do
|
99
106
|
FooBarEmpty.new.should_not be_respond_to(:postal_address)
|
100
107
|
end
|
101
108
|
end
|
102
|
-
|
109
|
+
|
103
110
|
describe "Standard" do
|
104
111
|
it "should have postal_address method" do
|
105
112
|
FooBar.new.should be_respond_to(:postal_address)
|
106
113
|
end
|
107
|
-
|
114
|
+
|
108
115
|
it "should return postal_address on postal_address" do
|
109
116
|
FooBar.new.postal_address.should eql("RECIPIENT\nSTREET\nCITY STATE ZIP\nUnited States of America")
|
110
117
|
end
|
@@ -121,27 +128,38 @@ describe "ActiveRecord Instance" do
|
|
121
128
|
FooBarCustomBlankDECountry.new.postal_address.should eql("RECIPIENT\nSTREET\nZIP CITY")
|
122
129
|
end
|
123
130
|
end
|
124
|
-
|
131
|
+
|
125
132
|
describe "Customized Method name" do
|
126
133
|
it "should have my_postal_address_method" do
|
127
134
|
FooBarCustomMethod.new.should be_respond_to(:my_postal_address_method)
|
128
135
|
end
|
129
|
-
|
136
|
+
|
130
137
|
it "should return formatted address on my_postal_address_method" do
|
131
138
|
FooBarCustomMethod.new.my_postal_address_method.should eql("RECIPIENT\nSTREET\nCITY STATE ZIP\nUnited States of America")
|
132
139
|
end
|
133
140
|
end
|
134
|
-
|
141
|
+
|
135
142
|
describe "Customized Proc as Param" do
|
136
143
|
it "should return formatted address for unknown-country DEXX" do
|
137
144
|
FooBarCustomProc.new.postal_address.should eql("RECIPIENT\nSTREET\nCITY state ZIP\ndexx")
|
138
145
|
end
|
139
146
|
end
|
140
|
-
|
147
|
+
|
141
148
|
describe "Customized array of symbols" do
|
142
149
|
it "should return formatted address with two lines for street" do
|
143
150
|
FooBarCustomArray.new.postal_address.should eql("RECIPIENT\nAddress line 1\nAddress line 2\nCITY STATE ZIP\nUnited States of America")
|
144
151
|
end
|
145
152
|
end
|
146
153
|
|
147
|
-
|
154
|
+
describe "Multiple" do
|
155
|
+
|
156
|
+
it "should return postal_address on postal_address_one" do
|
157
|
+
FooBarMultiple.new.postal_address_one.should eql("RECIPIENT\nSTREET\nCITY STATE ZIP\nUnited States of America")
|
158
|
+
end
|
159
|
+
|
160
|
+
it "should return postal_address with alt country on postal_address_two" do
|
161
|
+
FooBarMultiple.new.postal_address_two.should eql("RECIPIENT\nSTREET\nCITY STATE ZIP\nalt country")
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
end
|
metadata
CHANGED
@@ -1,78 +1,83 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: biggs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.4.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Sebastian Munz
|
9
|
-
autorequire:
|
8
|
+
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2022-04-08 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: activerecord
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '3.0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '3.0'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: rake
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ">="
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - ">="
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: rspec
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - ">="
|
52
46
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
47
|
+
version: '3.0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - ">="
|
60
53
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-its
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
62
69
|
- !ruby/object:Gem::Dependency
|
63
70
|
name: sqlite3
|
64
71
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
72
|
requirements:
|
67
|
-
- -
|
73
|
+
- - ">="
|
68
74
|
- !ruby/object:Gem::Version
|
69
75
|
version: 1.3.5
|
70
76
|
type: :development
|
71
77
|
prerelease: false
|
72
78
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
79
|
requirements:
|
75
|
-
- -
|
80
|
+
- - ">="
|
76
81
|
- !ruby/object:Gem::Version
|
77
82
|
version: 1.3.5
|
78
83
|
description: biggs is a small ruby gem/rails plugin for formatting postal addresses
|
@@ -83,8 +88,8 @@ executables: []
|
|
83
88
|
extensions: []
|
84
89
|
extra_rdoc_files: []
|
85
90
|
files:
|
86
|
-
- .gitignore
|
87
|
-
- .rvmrc
|
91
|
+
- ".gitignore"
|
92
|
+
- ".rvmrc"
|
88
93
|
- CHANGES.md
|
89
94
|
- Gemfile
|
90
95
|
- LICENSE
|
@@ -105,33 +110,25 @@ files:
|
|
105
110
|
- spec/unit/format_spec.rb
|
106
111
|
homepage: https://github.com/yolk/biggs
|
107
112
|
licenses: []
|
108
|
-
|
113
|
+
metadata: {}
|
114
|
+
post_install_message:
|
109
115
|
rdoc_options: []
|
110
116
|
require_paths:
|
111
117
|
- lib
|
112
118
|
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
119
|
requirements:
|
115
|
-
- -
|
120
|
+
- - ">="
|
116
121
|
- !ruby/object:Gem::Version
|
117
122
|
version: '0'
|
118
|
-
segments:
|
119
|
-
- 0
|
120
|
-
hash: -746915506577537361
|
121
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
122
|
-
none: false
|
123
124
|
requirements:
|
124
|
-
- -
|
125
|
+
- - ">="
|
125
126
|
- !ruby/object:Gem::Version
|
126
127
|
version: '0'
|
127
|
-
segments:
|
128
|
-
- 0
|
129
|
-
hash: -746915506577537361
|
130
128
|
requirements: []
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
specification_version: 3
|
129
|
+
rubygems_version: 3.1.6
|
130
|
+
signing_key:
|
131
|
+
specification_version: 4
|
135
132
|
summary: biggs is a small ruby gem/rails plugin for formatting postal addresses from
|
136
133
|
over 60 countries.
|
137
134
|
test_files:
|