Sha256: 3d99ef9dc149fafa53db3757a5cd6870ac1ad9f9eb5b52af2664911c8e73260a

Contents?: true

Size: 883 Bytes

Versions: 3

Compression:

Stored size: 883 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "bundler-grep"
  spec.version       = Bundler::Grep::VERSION
  spec.authors       = ["takkanm"]
  spec.email         = ["takkanm@gmail.com"]

  spec.summary       = %q{bundle grep subcommand}
  spec.description   = %q{grep bundle gems}
  spec.homepage      = "https://github.com/takkanm/bundler-grep"
  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_dependency "bundler", "~> 1.13"
  spec.add_development_dependency "rake", "~> 10.0"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bundler-grep-0.3.0 bundler-grep.gemspec
bundler-grep-0.2.0 bundler-grep.gemspec
bundler-grep-0.1.0 bundler-grep.gemspec