revvco/crowdskout

View on GitHub
crowdskout.gemspec

Summary

Maintainability
Test Coverage
# -*- 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.2'
  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')
  s.add_runtime_dependency('mime-types', '< 4.0', '>= 1.25.1')
  s.add_development_dependency("rspec", '~> 2.14')
end