Sha256: da07dd3144aa1182c47f1255068451aa5caea400c388bccc8cecd368401d7983

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require File.expand_path('lib/campminder/version')

Gem::Specification.new do |spec|
  spec.name          = "campminder"
  spec.version       = CampMinder::VERSION
  spec.authors       = ["Andrew Anderson"]
  spec.email         = ["andrew@websitesthatdostuff.com"]
  spec.summary       = %q{A library to wrap the CampMinder API in Ruby.}
  spec.description   = %q{A Ruby wrapper for CampMinder Web API.}
  spec.homepage      = "https://bitbucket.org/ronningendesign/campminder-ruby"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]
  spec.licenses = ['MIT']

  # Limit the version of Ruby to 1.9.3.
  spec.required_ruby_version = '>= 1.9.3'

  # Development
  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake", '~> 10.1', '>= 10.1.0'
  spec.add_development_dependency "rspec", '~> 3.0', '>= 3.0.0'
  spec.add_development_dependency 'simplecov', '~> 0.9.0', '>= 0.9.0'
  spec.add_development_dependency 'fuubar', '~> 2.0.0'
  spec.add_development_dependency 'webmock', '~> 1.18', '>= 1.18.0'
  spec.add_development_dependency 'vcr', '~> 2.9', '>= 2.9.2'
  spec.add_development_dependency 'byebug'

  # Runtime
  spec.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.1'
  spec.add_runtime_dependency 'httparty', '~> 0.11'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
campminder-1.0.1 campminder-ruby.gemspec