Sha256: 7759634f0e78b96c06586cd5da39361d584e9b473999c5fa280335580c42e229

Contents?: true

Size: 1.03 KB

Versions: 8

Compression:

Stored size: 1.03 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'source_finder/version'

Gem::Specification.new do |spec|
  spec.name          = 'source_finder'
  spec.version       = SourceFinder::VERSION
  spec.authors       = ['Vince Broz']
  spec.email         = ['vince@broz.cc']

  spec.summary       = 'SourceFinder finds source and documentation files ' \
                       'within a project.'
  spec.homepage      = 'https://github.com/apiology/source_finder'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.10'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'quality'
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'simplecov'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
source_finder-2.2.0 source_finder.gemspec
source_finder-2.1.1 source_finder.gemspec
source_finder-2.1.0 source_finder.gemspec
source_finder-2.0.0 source_finder.gemspec
source_finder-1.1.1 source_finder.gemspec
source_finder-1.1.0 source_finder.gemspec
source_finder-1.0.0 source_finder.gemspec
source_finder-0.1.0 source_finder.gemspec