Sha256: 1cea394f4d1313ddcd3a81f80400747a70e9802e0efe93ce085f7f86475bc57c
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
$LOAD_PATH.push File.expand_path("../lib", __FILE__) require "connector_kit/version" Gem::Specification.new do |spec| spec.name = "connector_kit_fork" spec.version = ConnectorKit::VERSION spec.authors = ["Simon Jarbrant"] spec.email = ["simonjarbrant@gmail.com"] spec.summary = "A gem for communicating with the App Store Connect API." spec.description = "A gem for communicating with the App Store Connect API." spec.homepage = "https://github.com/simba909/connector_kit" spec.license = "MIT" all_files = `git ls-files`.split("\n") test_files = `git ls-files -- {test,spec,features}/*`.split("\n") spec.files = all_files - test_files spec.test_files = test_files spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_dependency "httparty", "~> 0.16.3" spec.add_dependency "jwt", "~> 2.1", ">= 2.1.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
connector_kit_fork-0.3.1 | connector_kit.gemspec |