-
Notifications
You must be signed in to change notification settings - Fork 0
/
happypdf_json_schema.gemspec
27 lines (23 loc) · 1.13 KB
/
happypdf_json_schema.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'happypdf/version'
Gem::Specification.new do |s|
s.version = HappyPdf::Schema::VERSION
s.date = %q{2013-10-27}
s.name = %q{happypdf_json_schema}
s.summary = 'happyPDF API - JSON Schema'
s.description = %q{happyPDF JSON Schema describes our PDF API in terms of available objects, their fields and links to url endpoints with related objects.
Besides ruby users can use a small lib with utility methods to load and test the schema files.}
s.authors = ['Georg Leciejewski']
s.email = %q{gl@happypdf.com}
s.homepage = %q{http://github.com/happypdf/happypdf_json_schema}
s.executables = nil
s.files = `git ls-files`.split("\n").reject{|i| i[/^docs\//] }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ['lib']
s.add_development_dependency 'rspec'
s.add_development_dependency 'activesupport'
s.add_development_dependency 'json_schema_tools'
s.add_development_dependency 'rake', '>= 0.9.2'
end