forked from strzibny/ruby-ares
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-ares.gemspec
27 lines (25 loc) · 1.01 KB
/
ruby-ares.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'rubygems/package_task'
require 'rake'
require 'rake/testtask'
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'ruby-ares'
gemspec = Gem::Specification.new do |s|
s.name = 'ruby-ares'
s.version = RubyARES::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Gem for accesing business information from ARES database.'
s.description = <<-EOF
ARES is the Czech business database maintained by Ministry of Finance of the Czech Republic.
This gem helps to retrieve data provided by this database.
EOF
s.licenses = ['GPLv3']
s.author = 'Josef Strzibny'
s.email = '[email protected]'
s.homepage = 'http://github.com/strzibny/ruby-ares'
s.required_ruby_version = '>= 1.8.7'
s.required_rubygems_version = '>= 1.8.0'
s.files = FileList['README.md', 'Rakefile', 'CHANGELOG.md',
'lib/**/*.rb', 'test/**/test*.rb']
s.add_runtime_dependency 'libxml-ruby'
s.requirements << 'libxml2'
end