Sha256: 4ad425d76a81636148bf8f3fd49ba572ab778bebcbe5f1d2c8dbe35a4e566079
Contents?: true
Size: 1.04 KB
Versions: 10
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 'bill_forward/version' Gem::Specification.new do |spec| spec.name = "bill_forward" spec.version = BillForward::VERSION spec.authors = ["BillForward"] spec.email = ["support@billforward.net"] spec.summary = "BillForward Ruby Client Library" spec.description = "Enables you to call the BillForward API easily using Ruby" spec.homepage = "http://www.billforward.net" 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{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency 'rest-client', '~> 1.4' spec.add_dependency 'json', '~> 1.8.1' spec.add_dependency 'require_all' spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rspec" spec.add_development_dependency "rake" end
Version data entries
10 entries across 10 versions & 1 rubygems