Sha256: 4e88fcfc85136557cf886ee8683ab98aff7dacc40f66653a623e399a742613c8

Contents?: true

Size: 1.27 KB

Versions: 15

Compression:

Stored size: 1.27 KB

Contents

require 'rubygems'

require 'rubygems/package_task'
require 'rdoc/task'
require 'rake/testtask'

spec = Gem::Specification.new do |s|
  s.name = "CFPropertyList"
  s.version = "2.1"
  s.author = "Christian Kruse"
  s.email = "cjk@wwwtech.de"
  s.homepage = "http://github.com/ckruse/CFPropertyList"
  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 = FileList["lib/*"].to_a
  s.require_path = "lib"
  #s.autorequire = "name"
  #s.test_files = FileList["{test}/**/*test.rb"].to_a
  s.has_rdoc = true
  s.extra_rdoc_files = ["README"]
  s.add_development_dependency("rake",">=0.7.0")
end

desc 'Generate RDoc documentation for the CFPropertyList module.'
Rake::RDocTask.new do |rdoc|
  files = ['README', 'LICENSE', 'lib/*.rb']
  rdoc.rdoc_files.add(files)
  rdoc.main = 'README'
  rdoc.title = 'CFPropertyList RDoc'
  rdoc.rdoc_dir = 'doc'
  rdoc.options << '--line-numbers' << '--inline-source' << '-c utf8'
end

Gem::PackageTask.new(spec) do |pkg|
  pkg.need_tar = true
end

Rake::TestTask.new do |test|
  test.libs << 'test'
  test.test_files = Dir.glob('test/test*.rb')
end

# eof

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
facter-1.7.6 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.5 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.5.rc2 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.5.rc1 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.4 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.4.rc1 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.3 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.3.rc1 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.2 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.2.rc1 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.1 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.1.rc1 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.0 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.0.rc2 lib/facter/util/cfpropertylist/Rakefile
facter-1.7.0.rc1 lib/facter/util/cfpropertylist/Rakefile