forked from pjdavis/radiustar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
radiustar.gemspec
36 lines (32 loc) · 1.75 KB
/
radiustar.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
28
29
30
31
32
33
34
35
36
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "radiustar"
s.version = "0.0.6"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["PJ Davis"]
s.date = "2012-02-02"
s.description = "Ruby Radius Library"
s.email = "[email protected]"
s.extra_rdoc_files = ["History.txt", "README.rdoc", "templates/default.txt"]
s.files = ["History.txt", "README.rdoc", "Rakefile", "lib/radiustar.rb", "lib/radiustar/dictionary.rb", "lib/radiustar/dictionary/attributes.rb", "lib/radiustar/dictionary/values.rb", "lib/radiustar/packet.rb", "lib/radiustar/radiustar.rb", "lib/radiustar/request.rb", "lib/radiustar/vendor.rb", "lib/radiustar/old_hash.rb", "radiustar.gemspec", "spec/radiustar_spec.rb", "spec/spec_helper.rb", "spec/value_spec.rb", "templates/default.txt", "templates/dictionary.digium", "templates/dictionary.rfc2865", "templates/gandalf.dictionary", "test/test_radiustar.rb", "version.txt"]
s.homepage = "http://github.com/pjdavis/radiustar"
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = "radiustar"
s.rubygems_version = "1.8.15"
s.summary = "."
s.test_files = ["test/test_radiustar.rb"]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<ipaddr_extensions>, [">= 2012.1.13"])
s.add_development_dependency(%q<bones>, [">= 3.7.3"])
else
s.add_dependency(%q<ipaddr_extensions>, [">= 2012.1.13"])
s.add_dependency(%q<bones>, [">= 3.7.3"])
end
else
s.add_dependency(%q<ipaddr_extensions>, [">= 2012.1.13"])
s.add_dependency(%q<bones>, [">= 3.7.3"])
end
end