databox.gemspec in databox-2.0.1 vs databox.gemspec in databox-2.1.1

- old
+ new

@@ -1,28 +1,39 @@ -# coding: utf-8 -lib = File.expand_path('../lib', __FILE__) -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'databox/version' +# -*- encoding: utf-8 -*- -Gem::Specification.new do |spec| - spec.name = 'databox' - spec.version = Databox::VERSION - spec.authors = ['Oto Brglez'] - spec.email = ['otobrglez@gmail.com'] - spec.description = %q{Ruby Gem for Databox - Mobile Executive Dashboard.} - spec.summary = %q{API wrapper for Databox} - spec.homepage = 'https://github.com/databox/databox-ruby' - spec.license = 'MIT' +=begin +#Static OpenAPI document of Push API resource - spec.files = `git ls-files`.split($/) - spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } - spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) - spec.require_paths = ['lib'] +#Push API resources Open API documentation - spec.add_dependency 'httparty' +The version of the OpenAPI document: 0.4.1 - spec.add_development_dependency "bundler", "~> 1.3" - spec.add_development_dependency "rake" - spec.add_development_dependency "rspec" - spec.add_development_dependency "shoulda-matchers" - spec.add_development_dependency "pry" +Generated by: https://openapi-generator.tech +Generator version: 7.6.0 + +=end + +$:.push File.expand_path("../lib", __FILE__) +require "databox/version" + +Gem::Specification.new do |s| + s.name = "databox" + s.version = Databox::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ["Databox"] + s.email = [""] + s.homepage = "https://databox.com/" + s.summary = "Static OpenAPI document of Push API resource Ruby Gem" + s.description = "SDK Client for using Databox Push API feature" + s.license = "Unlicense" + s.required_ruby_version = ">= 2.7" + s.metadata = {} + + s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1' + + s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0' + + s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? } + s.test_files = `find spec/*`.split("\n") + s.executables = [] + s.require_paths = ["lib"] end