forked from cbeer/noid
-
Notifications
You must be signed in to change notification settings - Fork 8
/
noid.gemspec
27 lines (22 loc) · 870 Bytes
/
noid.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'noid/version'
Gem::Specification.new do |s|
s.name = 'noid'
s.version = Noid::VERSION
s.authors = ['Chris Beer']
s.email = ['chris@cbeer.info']
s.homepage = 'http://github.com/microservices/noid'
s.summary = 'Nice Opaque Identifier'
s.description = 'Nice Opaque Identifier'
s.licenses = ['MIT']
s.rubyforge_project = 'noid'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 1.9.3'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '>= 3.0'
end