Sha256: 40d804d5bc19df7e569274c5bf9095b99d68638cb60a7cbe71f96254cd792e62

Contents?: true

Size: 949 Bytes

Versions: 1

Compression:

Stored size: 949 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.0.19'
  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", '~> 1.6', '>= 1.6.7')
  s.add_runtime_dependency("json", '~> 1.8', '>= 1.8.1')
  s.add_runtime_dependency('mime-types', '~> 1.25', '>= 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.0.19 crowdskout.gemspec