Sha256: 4798b0512132636e9df8e18c057454acd8316e67c1fdb66fb89915d233843d1f
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
# -*- encoding: utf-8 -*- $LOAD_PATH.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 = "jakob@mentalized.net" s.homepage = "https://github.com/substancelab/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", "> 3.0" 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rconomic-0.7.0 | rconomic.gemspec |
rconomic-0.6.0 | rconomic.gemspec |