Skip to content

Commit 678a51c

Browse files
Add release rake task
1 parent c10d122 commit 678a51c

5 files changed

Lines changed: 18 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
/build
55
/stubs
66
/vendor/bundle/
7+
/pkg

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## How to contribute to jsonapi_rspec
1+
## How to contribute to free_zipcode_data
22

33
#### **Did you find a bug?**
44

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ DEPENDENCIES
7474
pry-nav (~> 0.2)
7575
rake (~> 12.0)
7676
rspec (~> 3.7)
77-
rubocop
78-
ruby-prof
79-
simplecov
77+
rubocop (~> 0.55)
78+
ruby-prof (~> 0.17)
79+
simplecov (~> 0.16)
8080

8181
BUNDLED WITH
8282
1.16.1

Rakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
# frozen_string_literal: true
2+
13
require 'rubygems'
24
require 'bundler/setup'
35

46
require 'rake'
57
Dir['lib/tasks/**/*.rake'].sort.each { |ext| load ext }
8+
9+
# Install rubygem tasks
10+
Bundler::GemHelper.install_tasks

free_zipcode_data.gemspec

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ Gem::Specification.new do |spec|
1111
spec.version = FreeZipcodeData::VERSION
1212
spec.authors = ['Chris Blackburn', 'Chris McKnight']
1313
spec.email = ['87a1779b@opayq.com', 'fixme@mcknight.bogus']
14-
spec.summary = 'Free US postal codes in CSV and SQLite3 format.'
15-
spec.description = spec.summary
14+
spec.summary = 'Free US and world-wide postal codes in SQLite and CSV format'
15+
spec.description = <<~STRING
16+
Free US and world-wide postal codes in SQLite and CSV format.
17+
Automated zipcode/postal code aggregation and processing for any needs.
18+
STRING
1619
spec.homepage = 'https://github.com/midwire/free_zipcode_data'
1720
spec.license = 'MIT'
1821

@@ -26,9 +29,9 @@ Gem::Specification.new do |spec|
2629
spec.add_development_dependency 'pry-nav', '~> 0.2'
2730
spec.add_development_dependency 'rake', '~> 12.0'
2831
spec.add_development_dependency 'rspec', '~> 3.7'
29-
spec.add_development_dependency 'rubocop'
30-
spec.add_development_dependency 'ruby-prof'
31-
spec.add_development_dependency 'simplecov'
32+
spec.add_development_dependency 'rubocop', '~> 0.55'
33+
spec.add_development_dependency 'ruby-prof', '~> 0.17'
34+
spec.add_development_dependency 'simplecov', '~> 0.16'
3235

3336
spec.add_runtime_dependency 'colored', '~> 1.2'
3437
spec.add_runtime_dependency 'kiba', '~> 2.0'

0 commit comments

Comments
 (0)