molawson/planning_center

View on GitHub
planning_center.gemspec

Summary

Maintainability
Test Coverage
# encoding: utf-8

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

Gem::Specification.new do |spec|
  spec.name          = 'planning_center'
  spec.version       = PlanningCenter::VERSION
  spec.authors       = ['Mo Lawson']
  spec.email         = ['mo@molawson.com']
  spec.summary       = 'Ruby wrapper for the Planning Center Online API.'
  spec.description   = 'Ruby wrapper for the Planning Center Online API.'
  spec.homepage      = 'https://github.com/molawson/planning_center'
  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.add_dependency 'oauth', '~> 0.4'
  spec.add_dependency 'json', '~> 1.8'

  spec.add_development_dependency 'bundler', '~> 1.5'
  spec.add_development_dependency 'rake', '~> 10.1'
  spec.add_development_dependency 'rspec', '~> 2.14'
  spec.add_development_dependency 'vcr', '~> 2.9'
  spec.add_development_dependency 'webmock', '~> 1.17'
  spec.add_development_dependency 'rubocop', '~> 0.31'

  spec.add_development_dependency 'pry', '~> 0.9'
  spec.add_development_dependency 'dotenv', '~> 0.10'
  spec.add_development_dependency 'awesome_print', '~> 1.2'
end