Sha256: 5f8c28ffce0c31eb2d475078bff9f308e27e208b5ebcbf74c0fc99979e767e74

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'buildvu/version'

Gem::Specification.new do |spec|
  spec.name          = 'buildvu'
  spec.version       = BuildVu::VERSION
  spec.authors       = ['Rob Foley', 'IDRsolutions']
  spec.email         = ['support@idrsolutions.zendesk.com']
  spec.date          = Time.now.strftime('%Y-%m-%d')

  spec.summary       = 'Ruby API for IDRSolutions BuildVu Microservice'
  spec.description   = "Convert PDF to HTML5 or SVG with Ruby, using the BuildVu Ruby Client to interact with
                        IDRsolutions' BuildVu Microservice Example. The BuildVu Microservice Example is an open source
                        project that allows you to convert PDF to HTML5 or SVG by running BuildVu as a web service in
                        the cloud or on-premise. For documentation and usage examples, check out our GitHub page. "
  spec.homepage      = 'https://github.com/idrsolutions/buildvu-ruby-client'
  spec.license       = 'Apache-2.0'

  spec.required_ruby_version = '>= 2.0.0'

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'rest-client', '~> 2.0', '>= 2.0.2'
  spec.add_runtime_dependency 'json', '~> 2.1', '>= 2.1'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
buildvu-3.0.1 buildvu.gemspec
buildvu-3.0.0 buildvu.gemspec
buildvu-2.0.1 buildvu.gemspec