-
Notifications
You must be signed in to change notification settings - Fork 47
/
cfpropertylist.gemspec
30 lines (28 loc) · 1.21 KB
/
cfpropertylist.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
Gem::Specification.new do |s|
s.name = "CFPropertyList"
s.version = "3.0.7"
s.author = "Christian Kruse"
s.email = "[email protected]"
s.homepage = "https://github.com/ckruse/CFPropertyList"
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
s.summary = "Read, write and manipulate both binary and XML property lists as defined by apple"
s.description = "This is a module to read, write and manipulate both binary and XML property lists as defined by apple."
s.files = Dir.glob("lib/**/*") + ['LICENSE', 'README.md', 'THANKS', 'README.rdoc']
s.require_path = "lib"
#s.autorequire = "name"
#s.test_files = FileList["{test}/**/*test.rb"].to_a
s.extra_rdoc_files = ["README.rdoc"]
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')
s.add_runtime_dependency("rexml") # no longer bundled with Ruby 3
end
# Some gems will no longer bundled with Ruby >= 3.4
if Gem::Version::new(RUBY_VERSION) >= Gem::Version::new('3.3.0')
s.add_runtime_dependency("nkf")
s.add_runtime_dependency("base64")
end
s.add_development_dependency("libxml-ruby")
s.add_development_dependency("minitest")
s.add_development_dependency("nokogiri")
s.add_development_dependency("rake",">=0.7.0")
end