-
Notifications
You must be signed in to change notification settings - Fork 10
/
bcdatabase.gemspec
28 lines (22 loc) · 1.06 KB
/
bcdatabase.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
28
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'bcdatabase/version'
Gem::Specification.new do |s|
s.name = 'bcdatabase'
s.version = Bcdatabase::VERSION
s.summary = %Q{Server-central database configuration for rails and other ruby apps}
s.description = %Q{bcdatabase is a tool for storing passwords and other configuration information outside of your application source tree.}
s.email = "[email protected]"
s.homepage = "http://github.com/NUBIC/bcdatabase"
s.authors = ["Rhett Sutphin"]
s.require_paths = ["lib"]
s.executables = ['bcdatabase']
s.files = Dir.glob("{CHANGELOG.markdown,LICENSE,README.markdown,bcdatabase.gemspec,{bin,lib}/**/*}")
s.add_dependency "highline", "~> 1.5", '< 1.6.9'
s.add_dependency 'thor', '~> 0.14'
s.add_development_dependency 'bundler', '~> 1.0', '>= 1.0.15'
s.add_development_dependency 'rake', '~> 0.9.2'
s.add_development_dependency 'rspec','~> 2.14.0'
s.add_development_dependency "ci_reporter", "~> 1.6"
s.add_development_dependency 'yard', '~> 0.7.2'
end