addressfinder 1.1.1 → 1.1.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 +4 -4
- data/.gitignore +3 -27
- data/CHANGELOG.md +4 -0
- data/addressfinder.gemspec +1 -0
- data/lib/addressfinder/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a4f13013752f2897a65b1ae37cdf75432e48d65
|
|
4
|
+
data.tar.gz: 736cb348b5e219a390025fa85054cc639a4f97cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f913ac44544240ce9270c202a5916e26d323669f41c494438560316f548657f39c2ee78591ea55a4c3e87eb3be8ca96e4f9ff8995826f094a8782d874818404b
|
|
7
|
+
data.tar.gz: cf7ce295d772e3902e79f023bb4ecfac1f61129b23f1c714d79e31294760e50a16d6f467a64781d04339d85cbb1acc0e365b839712b67ef24871049dc4a0de99
|
data/.gitignore
CHANGED
|
@@ -2,34 +2,10 @@
|
|
|
2
2
|
*.rbc
|
|
3
3
|
/.config
|
|
4
4
|
/coverage/
|
|
5
|
-
/InstalledFiles
|
|
6
|
-
/pkg/
|
|
7
5
|
/spec/reports/
|
|
8
|
-
/test/tmp/
|
|
9
|
-
/test/version_tmp/
|
|
10
|
-
/tmp/
|
|
11
|
-
|
|
12
|
-
## Specific to RubyMotion:
|
|
13
|
-
.dat*
|
|
14
|
-
.repl_history
|
|
15
|
-
build/
|
|
16
|
-
|
|
17
|
-
## Documentation cache and generated files:
|
|
18
|
-
/.yardoc/
|
|
19
|
-
/_yardoc/
|
|
20
|
-
/doc/
|
|
21
|
-
/rdoc/
|
|
22
|
-
|
|
23
|
-
## Environment normalisation:
|
|
24
|
-
/.bundle/
|
|
25
|
-
/vendor/bundle
|
|
26
|
-
/lib/bundler/man/
|
|
27
6
|
|
|
28
7
|
# for a library or gem, you might want to ignore these files since the code is
|
|
29
8
|
# intended to run in multiple environments; otherwise, check them in:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
35
|
-
.rvmrc
|
|
9
|
+
Gemfile.lock
|
|
10
|
+
.ruby-version
|
|
11
|
+
.ruby-gemset
|
data/CHANGELOG.md
CHANGED
data/addressfinder.gemspec
CHANGED
|
@@ -4,6 +4,7 @@ require File.expand_path('../lib/addressfinder/version', __FILE__)
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.name = "addressfinder"
|
|
6
6
|
gem.version = AddressFinder::VERSION
|
|
7
|
+
gem.licenses = ['MIT']
|
|
7
8
|
gem.authors = ["Nigel Ramsay"]
|
|
8
9
|
gem.email = ["nigel@abletech.nz"]
|
|
9
10
|
gem.description = %q{Ruby client library for AddressFinder}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: addressfinder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nigel Ramsay
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multi_json
|
|
@@ -104,7 +104,8 @@ files:
|
|
|
104
104
|
- spec/lib/addressfinder/cleanse_spec.rb
|
|
105
105
|
- spec/spec_helper.rb
|
|
106
106
|
homepage: https://github.com/AbleTech/addressfinder-ruby
|
|
107
|
-
licenses:
|
|
107
|
+
licenses:
|
|
108
|
+
- MIT
|
|
108
109
|
metadata: {}
|
|
109
110
|
post_install_message:
|
|
110
111
|
rdoc_options: []
|