-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [x] remove Adam Hess from authors list (he is in Emeritus.md) - [x] add allowed_push_host to gemspec (error in GitHub action [here](https://github.com/procore-oss/blueprinter/actions/runs/6224839827/job/16893930265#step:7:17) - [x] add key to release gem action to match the key we setup in previous step (rubygems) Signed-off-by: jmeridth <[email protected]>
- Loading branch information
Showing
2 changed files
with
4 additions
and
1 deletion.
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
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 |
---|---|---|
|
@@ -7,12 +7,13 @@ require 'blueprinter/version' | |
Gem::Specification.new do |s| | ||
s.name = 'blueprinter' | ||
s.version = Blueprinter::VERSION | ||
s.authors = ['Adam Hess', 'Derek Carter'] | ||
s.authors = ['Derek Carter'] | ||
s.email = ['[email protected]'] | ||
s.homepage = 'https://github.com/procore-oss/blueprinter' | ||
s.summary = 'Simple Fast Declarative Serialization Library' | ||
s.description = 'Blueprinter is a JSON Object Presenter for Ruby that takes business objects and breaks them down into simple hashes and serializes them to JSON. It can be used in Rails in place of other serializers (like JBuilder or ActiveModelSerializers). It is designed to be simple, direct, and performant.' | ||
s.license = 'MIT' | ||
s.metadata['allowed_push_host'] = 'https://rubygems.org' | ||
|
||
s.files = Dir['{app,config,db,lib}/**/*', 'CHANGELOG.md', 'MIT-LICENSE', 'Rakefile', 'README.md'] | ||
|
||
|