-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# frozen_string_literal: true | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'tindie2easypost' | ||
spec.version = '0.1.0' | ||
spec.authors = ['Spencer Owen'] | ||
spec.email = ['[email protected]'] | ||
|
||
spec.summary = 'Convert Tindie CSV files to EasyPost shipping format' | ||
spec.description = 'A utility script to transform Tindie order exports into EasyPost-compatible CSV files for shipping label generation.' | ||
spec.homepage = 'https://github.com/spuder/tindie2easypost' | ||
|
||
# Specify which files should be included in the gem | ||
spec.files = Dir.glob(['lib/**/*.rb', 'bin/*', 'README.md']) | ||
|
||
# Specify the executable script | ||
spec.executables = ['tindie2easypost'] | ||
|
||
# Specify the location of the executable in the gem structure | ||
spec.bindir = 'bin' | ||
|
||
# Specify Ruby version requirement | ||
spec.required_ruby_version = '>= 2.7.0' | ||
|
||
# Add runtime dependencies if any | ||
spec.add_runtime_dependency 'csv', '~> 3.2' | ||
|
||
# Optional development dependencies | ||
spec.add_development_dependency 'rake', '~> 13.0' | ||
spec.add_development_dependency 'minitest', '~> 5.14' | ||
|
||
spec.license = 'MIT' | ||
end |