mlightner-zip_codes 0.5.0 → 0.5.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/Rakefile +2 -1
- data/zip_codes.gemspec +3 -3
- metadata +13 -13
data/Rakefile
CHANGED
|
@@ -17,7 +17,8 @@ end
|
|
|
17
17
|
desc "Update gem files list"
|
|
18
18
|
task :gemfiles do
|
|
19
19
|
file_name = "zip_codes.gemspec"
|
|
20
|
-
files = `find ./ | grep -v \.git`.each_line.collect { |f| f.
|
|
20
|
+
files = `find ./ | grep -v \.git`.each_line.collect { |f| f.strip }.reject { |e| e =~ /^[^\W]*$$/ }
|
|
21
|
+
files.shift
|
|
21
22
|
file = File.new(file_name)
|
|
22
23
|
lines = file.readlines
|
|
23
24
|
file.close
|
data/zip_codes.gemspec
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = %q{zip_codes}
|
|
3
|
-
s.version = "0.5.
|
|
3
|
+
s.version = "0.5.1"
|
|
4
4
|
s.author = "Matt Lightner"
|
|
5
5
|
s.default_executable = %q{zip_codes}
|
|
6
6
|
s.description = %q{A library for looking up zip codes and their associated info.}
|
|
7
7
|
s.email = %q{mlightner@gmail.com}
|
|
8
8
|
s.executables = ["zipfind"]
|
|
9
|
-
s.files = ["README","bin","bin/zipfind","lib","lib/zip_code.rb","zip_codes.gemspec","data","data/zip_codes.db","Rakefile","zip_codes.rb","test.rb"]
|
|
9
|
+
s.files = ["./README","./bin","./bin/zipfind","./lib","./lib/zip_code.rb","./zip_codes.gemspec","./data","./data/zip_codes.db","./Rakefile","./zip_codes.rb","./test.rb"]
|
|
10
10
|
s.has_rdoc = false
|
|
11
11
|
s.homepage = %q{http://github.com/mlightner/zip_codes}
|
|
12
12
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "zip_codes", "--main"]
|
|
13
13
|
s.require_paths = ["lib"]
|
|
14
14
|
s.summary = %q{A library for looking up zip codes and their associated info.}
|
|
15
15
|
|
|
16
|
-
s.add_dependency(%q<sqlite3>, [">= 0.0.0"])
|
|
16
|
+
s.add_dependency(%q<sqlite3-ruby>, [">= 0.0.0"])
|
|
17
17
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mlightner-zip_codes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Lightner
|
|
@@ -13,7 +13,7 @@ date: 2009-05-16 00:00:00 -07:00
|
|
|
13
13
|
default_executable: zip_codes
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
|
-
name: sqlite3
|
|
16
|
+
name: sqlite3-ruby
|
|
17
17
|
type: :runtime
|
|
18
18
|
version_requirement:
|
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -31,17 +31,17 @@ extensions: []
|
|
|
31
31
|
extra_rdoc_files: []
|
|
32
32
|
|
|
33
33
|
files:
|
|
34
|
-
- README
|
|
35
|
-
- bin
|
|
36
|
-
- bin/zipfind
|
|
37
|
-
- lib
|
|
38
|
-
- lib/zip_code.rb
|
|
39
|
-
- zip_codes.gemspec
|
|
40
|
-
- data
|
|
41
|
-
- data/zip_codes.db
|
|
42
|
-
- Rakefile
|
|
43
|
-
- zip_codes.rb
|
|
44
|
-
- test.rb
|
|
34
|
+
- ./README
|
|
35
|
+
- ./bin
|
|
36
|
+
- ./bin/zipfind
|
|
37
|
+
- ./lib
|
|
38
|
+
- ./lib/zip_code.rb
|
|
39
|
+
- ./zip_codes.gemspec
|
|
40
|
+
- ./data
|
|
41
|
+
- ./data/zip_codes.db
|
|
42
|
+
- ./Rakefile
|
|
43
|
+
- ./zip_codes.rb
|
|
44
|
+
- ./test.rb
|
|
45
45
|
has_rdoc: false
|
|
46
46
|
homepage: http://github.com/mlightner/zip_codes
|
|
47
47
|
licenses:
|