-
Notifications
You must be signed in to change notification settings - Fork 1
/
blesta.gemspec
32 lines (26 loc) · 1.13 KB
/
blesta.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "blesta/support/version"
Gem::Specification.new do |s|
s.name = "blesta"
s.version = Blesta::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 Blesta Resellers API}
s.description = %q{A Ruby library for working with the Blesta Resellers API}
s.rubyforge_project = "blesta"
s.add_runtime_dependency 'faraday', '~> 0.8.4'
s.add_runtime_dependency 'faraday_middleware', '~> 0.9.0'
s.add_runtime_dependency 'json', '~> 1.7.3'
s.add_development_dependency 'rspec', '~> 2.10.0'
s.add_development_dependency 'awesome_print', '~> 1.0.2'
s.add_development_dependency 'rake', '~> 0.9.2.2'
s.add_development_dependency 'vcr', '~> 2.3.0'
s.add_development_dependency 'fakeweb', '~> 1.3'
s.add_development_dependency 'activesupport', "~> 3.2.9"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
end