forked from procore-oss/blueprinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blueprinter.gemspec
31 lines (26 loc) · 1.41 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
28
29
30
31
$:.push File.expand_path("../lib", __FILE__)
# 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 = ["Adam Hess", "Derek Carter"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/procore/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.files = Dir["{app,config,db,lib}/**/*", "CHANGELOG.md", "MIT-LICENSE", "Rakefile", "README.md"]
s.required_ruby_version = '>= 2.2.2'
s.add_development_dependency "factory_bot"
s.add_development_dependency "nokogiri", ">= 1.8.2"
s.add_development_dependency "oj", "~> 3.0"
s.add_development_dependency "yajl-ruby", "~> 1.4.1"
s.add_development_dependency "pry"
s.add_development_dependency "rake"
s.add_development_dependency "activerecord", "~> 5.1.2"
s.add_development_dependency "rspec", "~> 3.7"
s.add_development_dependency "sqlite3", '~> 1.3.6'
s.add_development_dependency "yard", "~> 0.9.11"
end