Sha256: 8b54bf3ca3692b08d4a656b754fd6473e7bf03ecf5fa442e8128f75437cba32a

Contents?: true

Size: 1019 Bytes

Versions: 4

Compression:

Stored size: 1019 Bytes

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'dandelion/version'

Gem::Specification.new do |s|
  s.name             = 'dandelion'
  s.version          = Dandelion::VERSION
  s.authors          = ['Scott Nelson']
  s.email            = ['scott@scttnlsn.com']
  s.summary          = 'Incremental Git repository deployment'
  s.homepage         = 'https://github.com/scttnlsn/dandelion'
  s.license          = 'MIT'

  s.files         = `git ls-files`.split($/)
  s.executables   = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = ['lib']

  s.post_install_message = <<-MSG
!   The 'dandelion' gem is installed but you may need to install additional
!   gems depending on the adapters you intend to use.
!
!   Running 'dandelion status' in your project directory will indicate which
!   additional gems need to be installed.
  MSG

  s.add_dependency 'rugged', '~> 0.21.2'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dandelion-0.4.10 dandelion.gemspec
dandelion-0.4.9 dandelion.gemspec
dandelion-0.4.8 dandelion.gemspec
dandelion-0.4.7 dandelion.gemspec