-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c10d122
commit 50cd649
Showing
6 changed files
with
19 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
/build | ||
/stubs | ||
/vendor/bundle/ | ||
/pkg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
## How to contribute to jsonapi_rspec | ||
## How to contribute to free_zipcode_data | ||
|
||
#### **Did you find a bug?** | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rubygems' | ||
require 'bundler/setup' | ||
|
||
require 'rake' | ||
Dir['lib/tasks/**/*.rake'].sort.each { |ext| load ext } | ||
|
||
# Install rubygem tasks | ||
Bundler::GemHelper.install_tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,11 @@ Gem::Specification.new do |spec| | |
spec.version = FreeZipcodeData::VERSION | ||
spec.authors = ['Chris Blackburn', 'Chris McKnight'] | ||
spec.email = ['[email protected]', '[email protected]'] | ||
spec.summary = 'Free US postal codes in CSV and SQLite3 format.' | ||
spec.description = spec.summary | ||
spec.summary = 'Free US and world-wide postal codes in SQLite and CSV format' | ||
spec.description = <<~STRING | ||
Free US and world-wide postal codes in SQLite and CSV format. | ||
Automated zipcode/postal code aggregation and processing for any needs. | ||
STRING | ||
spec.homepage = 'https://github.com/midwire/free_zipcode_data' | ||
spec.license = 'MIT' | ||
|
||
|
@@ -26,9 +29,9 @@ Gem::Specification.new do |spec| | |
spec.add_development_dependency 'pry-nav', '~> 0.2' | ||
spec.add_development_dependency 'rake', '~> 12.0' | ||
spec.add_development_dependency 'rspec', '~> 3.7' | ||
spec.add_development_dependency 'rubocop' | ||
spec.add_development_dependency 'ruby-prof' | ||
spec.add_development_dependency 'simplecov' | ||
spec.add_development_dependency 'rubocop', '~> 0.55' | ||
spec.add_development_dependency 'ruby-prof', '~> 0.17' | ||
spec.add_development_dependency 'simplecov', '~> 0.16' | ||
|
||
spec.add_runtime_dependency 'colored', '~> 1.2' | ||
spec.add_runtime_dependency 'kiba', '~> 2.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters