Sha256: 72ed4ed195950f1ae1cf19cb54adb68242466ffb9d6f4ede8c4e16c4da01cbbd

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "technologist"
  spec.version       = Technologist::VERSION
  spec.authors       = ["Alexis Reigel"]
  spec.email         = ["mail@koffeinfrei.org"]

  spec.summary       = %q{Detects the technologies used in a repository.}
  spec.description   = %q{Detects technologies in a repository by applying a set of rules and returning primary and secondary frameworks.}
  spec.homepage      = "https://github.com/github/koffeinfrei/linguist"
  spec.license       = "AGPL-3.0"

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

  spec.add_runtime_dependency "rugged", "~> 0.23.3"

  spec.add_development_dependency "bundler", "~> 1.7"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.3"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
technologist-0.2.0 technologist.gemspec