forked from mrbanzai/fishbowl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfishbowl.gemspec
22 lines (19 loc) · 895 Bytes
/
fishbowl.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fishbowl/version'
Gem::Specification.new do |gem|
gem.name = "fishbowl"
gem.version = Fishbowl::VERSION
gem.authors = ['James Thompson', 'Michael Porter']
gem.email = ['[email protected]', '[email protected]']
gem.description = %q{Provides an interface to the Fishbowl Inventory API}
gem.summary = %q{Fishbowl Inventory API}
gem.homepage = "https://github.com/readyproject/fishbowl"
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 'nokogiri', '>= 1.6.0.rc1'
gem.add_dependency 'roxml', '~> 3.3.1'
end