Sha256: e8903f13e65589a4a04c7f0c7f860e89f82e34980d144077704f2ff4264c132a
Contents?: true
Size: 1.36 KB
Versions: 7
Compression:
Stored size: 1.36 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'fitting/version' Gem::Specification.new do |spec| spec.name = 'fitting' spec.version = Fitting::VERSION spec.authors = ['d.efimov'] spec.email = ['d.efimov@fun-box.ru'] spec.summary = 'Validation in the rspec of API Blueprint' spec.description = 'Validation requests and responses in the rspec with the help of API Blueprint' spec.homepage = 'https://github.com/funbox/fitting' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'json-schema', '~> 2.6', '>= 2.6.2' spec.add_runtime_dependency 'tomogram_routing', '~> 0.1', '>= 0.1.0' spec.add_runtime_dependency 'multi_json' spec.add_development_dependency 'bundler', '~> 1.12' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'byebug', '~> 8.2', '>= 8.2.1' spec.add_development_dependency 'rspec', '~> 3.4', '>= 3.4.0' spec.add_development_dependency 'simplecov', '~> 0.11', '>= 0.11.2' spec.add_development_dependency 'rubocop', '~> 0.43', '>= 0.43.0' end
Version data entries
7 entries across 7 versions & 1 rubygems