-
Notifications
You must be signed in to change notification settings - Fork 1
/
elzar.gemspec
26 lines (23 loc) · 1.03 KB
/
elzar.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "elzar/version"
Gem::Specification.new do |s|
s.name = "elzar"
s.version = Elzar::VERSION
s.homepage = "http://github.com/relevance/elzar"
s.authors = ["Alex Redington", "Gabriel Horner"]
s.email = ["[email protected]"]
s.summary = %q{Chef cookbooks for Rails}
s.description = %q{Provides Chef cookbooks for a production Rails environment. Also supports Chef-erizing a Rails app.}
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.add_dependency 'gli', '~> 2.0.0'
s.add_dependency 'multi_json', '~> 1.3.0'
s.add_dependency 'fog', '~> 1.5.0'
s.add_dependency 'slushy', '~> 0.1.3'
s.add_development_dependency 'rake', '~> 0.9.2.2'
s.add_development_dependency 'rspec'
s.add_development_dependency 'bahia'
s.add_development_dependency 'bundler'
end