forked from szimek/efax
-
Notifications
You must be signed in to change notification settings - Fork 1
/
efax.gemspec
23 lines (19 loc) · 974 Bytes
/
efax.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/efax/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Szymon Nowak", "Pawel Kozlowski", "Dr Nic Williams"]
gem.email = ["[email protected]"]
gem.description = %q{Ruby library for accessing the eFax Developer service}
gem.summary = %q{Ruby library for accessing the eFax Developer service}
gem.homepage = "http://github.com/szimek/efax"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "efax"
gem.require_paths = ["lib"]
gem.version = EFax::VERSION
gem.add_runtime_dependency "builder", "~> 3.1"
gem.add_runtime_dependency "hpricot", "~> 0.8.1"
gem.add_development_dependency "test-unit", "~> 2.3.2"
gem.add_development_dependency "mocha", "~> 0.9.12"
end