forked from agoragames/vindicia-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvindicia-api.gemspec
27 lines (22 loc) · 999 Bytes
/
vindicia-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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'vindicia/version'
Gem::Specification.new do |gem|
gem.name = "vindicia-api"
gem.version = Vindicia::VERSION
gem.authors = ["Tom Quackenbush"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/agoragames/vindicia-api"
gem.summary = %q{A wrapper for creating queries to the Vindicia CashBox API}
gem.description = %q{A wrapper for creating queries to the Vindicia CashBox API}
gem.license = 'MIT'
gem.rubyforge_project = "vindicia-api"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency('savon', '~> 1.2.0')
gem.add_dependency('activesupport')
gem.add_development_dependency('rake')
gem.add_development_dependency('mocha')
end