forked from substancelab/rconomic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rconomic.gemspec
26 lines (22 loc) · 1.1 KB
/
rconomic.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'rconomic/version'
Gem::Specification.new do |s|
s.name = 'rconomic'
s.summary = "Wrapper for e-conomic.dk's SOAP API."
s.description = <<-EOS
Ruby wrapper for the e-conomic SOAP API, that aims at making working with the API bearable.
E-conomic is a web-based accounting system. For their marketing speak, see http://www.e-conomic.co.uk/about/. More details about their API at http://www.e-conomic.co.uk/integration/integration-partner/.
EOS
s.authors = ["Jakob Skjerning"]
s.email = '[email protected]'
s.homepage = 'https://github.com/lokalebasen/rconomic'
s.license = 'MIT'
s.version = Rconomic::VERSION
s.platform = Gem::Platform::RUBY
s.add_runtime_dependency "savon", "~> 2.2"
s.add_development_dependency "rspec", "~> 2.99"
s.files = `git ls-files`.split("\n").reject { |filename| ['.gitignore'].include?(filename) }
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.require_paths = ["lib"]
end