forked from procore-oss/blueprinter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
blueprinter.gemspec
27 lines (22 loc) · 1.15 KB
/
blueprinter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'blueprinter/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'blueprinter'
s.version = Blueprinter::VERSION
s.authors = ['Procore Technologies, Inc.']
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']
s.required_ruby_version = '>= 2.7'
s.metadata['rubygems_mfa_required'] = 'true'
end