forked from NUBIC/bcdatabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bcdatabase.gemspec
26 lines (20 loc) · 934 Bytes
/
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
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 database configuration information outside of your application source tree.}
s.email = "rhett@detailedbalance.net"
s.homepage = "http://github.com/rsutphin/bcdatabase"
s.authors = ["Rhett Sutphin"]
s.require_paths = ["lib"]
s.executables = ['bcdatabase']
s.files = Dir.glob("{CHANGELOG.markdown,LICENSE,README.markdown,{bin,lib}/**/*}")
s.add_dependency "activesupport", ">= 2.0"
s.add_dependency "highline", "~> 1.5"
s.add_dependency "i18n"
s.add_development_dependency 'rspec', "~> 1.2"
s.add_development_dependency "ci_reporter", "~> 1.6"
end