Sha256: 26b311b091759ea006a02e5abda9ace032e429b6a0a8c14a1ddc34e21c021d36

Contents?: true

Size: 787 Bytes

Versions: 8

Compression:

Stored size: 787 Bytes

Contents

Gem::Specification.new do |s|
  # static stuff
  s.name     = 'buildar'
  s.summary  = 'Buildar crept inside your rakefile and scratched upon the tasking post'
  s.author   = 'Rick Hull'
  s.homepage = 'https://github.com/rickhull/buildar'
  s.license  = 'MIT'
  s.has_rdoc = true
  s.description = 'Buildar helps automate the release process with versioning, building, packaging, and publishing.  Optional git integration.'

  s.add_runtime_dependency        "rake", ">= 8" # guess?

  # dynamic setup
  this_dir = File.expand_path('..', __FILE__)
  version_file = File.join(this_dir, 'VERSION')
  manifest_file = File.join(this_dir, 'MANIFEST.txt')

  # dynamic assignments
  s.version  = File.read(version_file).chomp
  s.files = File.readlines(manifest_file).map { |f| f.chomp }
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
buildar-2.0.1.1 buildar.gemspec
buildar-2.0.0.7 buildar.gemspec
buildar-2.0.0.5 buildar.gemspec
buildar-2.0.0.4 buildar.gemspec
buildar-1.4.0.15 buildar.gemspec
buildar-1.4.0.13 buildar.gemspec
buildar-1.4.0.10 buildar.gemspec
buildar-1.4.0.8 buildar.gemspec