-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsquall.gemspec
40 lines (33 loc) · 1.35 KB
/
squall.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "squall/support/version"
Gem::Specification.new do |s|
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
s.name = "squall"
s.version = Squall::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Justin Mazzi"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{A Ruby library for working with the OnApp REST API}
s.description = %q{A Ruby library for working with the OnApp REST API}
s.license = 'MIT'
s.rubyforge_project = "squall"
s.add_runtime_dependency 'faraday', '~> 0.9.0'
s.add_runtime_dependency 'faraday_middleware', '~> 0.9.0'
s.add_runtime_dependency 'json', '~> 1.7'
# JRuby
if RUBY_PLATFORM == 'java'
s.add_runtime_dependency 'jruby-openssl', '~> 0.7.3'
else
s.add_development_dependency 'rake-tomdoc', '~> 0.0.2'
end
s.add_development_dependency 'rspec', '~> 2.10.0'
s.add_development_dependency 'fakeweb', '~> 1.3'
s.add_development_dependency 'vcr', '~> 1.8'
s.add_development_dependency 'awesome_print', '~> 1.0.2'
s.add_development_dependency 'rake', '~> 0.9.2.2'
s.files += %w[Gemfile LICENSE Rakefile README.md]
s.files += Dir['{lib,spec}/**/*']
s.test_files = Dir['spec/**/*']
end