Sha256: bd6dfed103d842dc5f9377f4fbdc280095c46bd3272c7d17966b37041d457622
Contents?: true
Size: 1.37 KB
Versions: 2
Compression:
Stored size: 1.37 KB
Contents
require 'rubygems' require 'hitimes/version' require 'tasks/config' Hitimes::GEM_SPEC = Gem::Specification.new do |spec| proj = Configuration.for('project') spec.name = proj.name spec.version = Hitimes::VERSION spec.author = proj.author spec.email = proj.email spec.homepage = proj.homepage spec.summary = proj.summary spec.description = proj.description spec.platform = Gem::Platform::RUBY pkg = Configuration.for('packaging') spec.files = pkg.files.all spec.executables = pkg.files.bin.collect { |b| File.basename(b) } # add dependencies here spec.add_dependency("rake", ">= 0.8.1") spec.add_dependency("configuration", ">= 0.0.5") spec.add_dependency("mkrf", ">= 0.2.3") if ext_conf = Configuration.for_if_exist?("extension") then spec.extensions << ext_conf.configs spec.require_paths << 'ext' spec.extensions.flatten! end if rdoc = Configuration.for_if_exist?('rdoc') then spec.has_rdoc = true spec.extra_rdoc_files = pkg.files.rdoc spec.rdoc_options = rdoc.options + [ "--main" , rdoc.main_page ] else spec.has_rdoc = false end if test = Configuration.for_if_exist?('testing') then spec.test_files = test.files end if rf = Configuration.for_if_exist?('rubyforge') then spec.rubyforge_project = rf.project end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hitimes-0.2.0 | gemspec.rb |
hitimes-0.2.1 | gemspec.rb |