File: naught.gemspec

package info (click to toggle)
ruby-naught 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 276 kB
  • sloc: ruby: 1,091; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 822 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'naught/version'

Gem::Specification.new do |spec|
  spec.name          = 'naught'
  spec.version       = Naught::VERSION
  spec.authors       = ['Avdi Grimm']
  spec.email         = ['avdi@avdi.org']
  spec.description   = 'Naught is a toolkit for building Null Objects'
  spec.summary       = spec.description
  spec.homepage      = 'https://github.com/avdi/naught'
  spec.license       = 'MIT'

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

  spec.add_development_dependency 'bundler', '~> 1.3'
end