forked from assembla/assembla_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassembla_api.gemspec
More file actions
29 lines (25 loc) · 1.41 KB
/
Copy pathassembla_api.gemspec
File metadata and controls
29 lines (25 loc) · 1.41 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require File.expand_path('../lib/assembla_api/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'assembla_api'
gem.authors = [ "Vitalie Lazu" ]
gem.email = ""
gem.homepage = 'http://www.assembla.com/'
gem.summary = %q{ Ruby client for the official Assembla API }
gem.description = %q{ Ruby client that supports all of the Assembla API methods. It's build in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it e.i. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you easily call API endpoints. }
gem.version = Assembla::VERSION::STRING.dup
gem.files = Dir['Rakefile', '{lib,spec}/**/*', 'README*', 'LICENSE*']
gem.require_paths = %w[ lib ]
gem.add_dependency 'addressable', '~> 2.3'
gem.add_dependency 'hashie', '>= 3.2'
gem.add_dependency 'faraday', '~> 0.8', '< 0.10'
gem.add_dependency 'multi_json', '>= 1.7.5', '< 2.0'
gem.add_dependency 'mime-types', '>= 1.16', '< 3.0'
gem.add_dependency 'oauth2'
gem.add_dependency 'nokogiri', '~> 1.6.3'
gem.add_dependency 'descendants_tracker', '~> 0.0.4'
gem.add_development_dependency 'bundler', '~> 1.5'
gem.add_development_dependency 'sshkey'
gem.add_development_dependency 'git-ssh-wrapper'
end