Sha256: 74ab48c2c7b5b89a0cbad03a1660dfdc844faf39383de885a97d6d7aa412f1c9
Contents?: true
Size: 945 Bytes
Versions: 1
Compression:
Stored size: 945 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |s| s.name = "crowdskout" s.version = '0.1.1' s.platform = Gem::Platform::RUBY s.authors = ["Crowdskout", "Revv","Kyle Schutt"] s.homepage = "https://github.com/revvco/crowdskout" s.summary = %q{Crowdskout SDK for Ruby} s.email = "kyle@revv.co" s.description = "Ruby library for interactions with Crowdskout v1 API" s.license = "MIT" s.files = [ '.rspec', 'crowdskout.gemspec', 'README.md' ] s.files += Dir['lib/**/*.rb'] s.executables = [] s.require_paths = [ "lib" ] s.test_files = Dir['spec/**/*_spec.rb'] s.add_runtime_dependency("rest-client", '< 4.0', '>= 1.6.7') s.add_runtime_dependency("json", '~> 1.8', '>= 1.8.1') s.add_runtime_dependency('mime-types', '< 4.0', '>= 1.25.1') s.add_development_dependency("rspec", '~> 2.14') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
crowdskout-0.1.1 | crowdskout.gemspec |