Sha256: e079954a338645db0e11906012688d4a86239c7b432988af4788a747d1e97d0e
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'fortnox/api/version' Gem::Specification.new do |spec| spec.name = "fortnox-api" spec.version = Fortnox::API::VERSION spec.authors = ["Jonas Schubert Erlandsson"] spec.email = ["jonas.schubert.erlandsson@my-codeworks.com"] spec.summary = "Gem to use Fortnox REST API in Ruby." spec.description = "This gem uses an HTTP library to abstract the REST calls from everyday use. Simply use the builtin classes to create, access, update and destroy entries in your Fortnox database." spec.homepage = "http://github.com/my-codeworks/fortnox-api" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(spec)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.5" spec.add_development_dependency "rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fortnox-api-0.0.1 | fortnox-api.gemspec |