forked from sparkapi/spark_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspark_api.gemspec
60 lines (50 loc) · 2.35 KB
/
spark_api.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'spark_api/version'
require 'rubygems/user_interaction'
Gem::Specification.new do |s|
s.name = "spark_api"
s.version = SparkApi::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Brandon Hornseth", "Wade McEwen"]
s.email = %q{[email protected]}
s.homepage = %q{https://github.com/sparkapi/spark_api}
s.summary = %q{A library for interacting with the Spark web services.}
s.description = %q{The spark_api gem handles most of the boilerplate for communicating with the Spark API rest services, including authentication and request parsing.}
s.required_rubygems_version = ">= 1.8"
s.rubyforge_project = "spark_api"
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.license = 'Apache 2.0'
s.files = Dir["{History.txt,LICENSE,Rakefile,README.md,VERSION}", "{bin,lib,script}/**/*"]
s.test_files = Dir["spec/{fixtures,unit}/**/*", "spec/*.rb"]
s.executables = ["spark_api"]
s.default_executable = %q{spark_api}
s.require_paths = ["lib"]
s.add_dependency 'faraday', '~> 0.9.0'
s.add_dependency 'multi_json', '~> 1.0'
s.add_dependency 'json', '~> 1.7'
s.add_dependency 'builder', '>= 2.1.2', '< 4.0.0'
s.add_dependency 'will_paginate', '>= 3.0.pre2', '< 4.0.0'
s.add_dependency 'highline', '>= 1.0'
# spark_api doesn't use public_suffix directly. spark_api uses Webmock, which
# uses addressable, which uses public_suffix. Bundler has suddenly started
# trying to install public_suffix 2.0.4, which requires Ruby 2. When spark_api
# starts to require Ruby 2, this dependency can be removed.
s.add_dependency 'public_suffix', '~> 1.4.6'
# TEST GEMS
s.add_development_dependency 'rake', '~> 0.9.2'
s.add_development_dependency 'rspec', '~> 2.14.0'
s.add_development_dependency 'webmock', '~> 1.9'
s.add_development_dependency 'typhoeus', '~> 0.3'
s.add_development_dependency 'ci_reporter', '~> 1.7.0'
s.add_development_dependency 'rb-readline'
s.add_development_dependency 'rb-fsevent'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'simplecov-rcov'
s.add_development_dependency 'listen', '~> 3.0.8' # for guard-rspec with ruby 1.9.3
s.add_development_dependency 'guard-rspec'
end