-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshanghai.gemspec
27 lines (24 loc) · 1004 Bytes
/
shanghai.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 -*-
Gem::Specification.new do |s|
libdir = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
require 'shanghai'
s.required_rubygems_version = Gem::Requirement.new(">= 1.8")
s.specification_version = 3
s.name = %q{shanghai}
s.version = ::Shanghai.version
s.authors = ["Wilson Bilkovich"]
s.date = %q{2013-03-01}
s.email = %q{[email protected]}
s.files = Dir['{bin/*,lib/**/*.rb,README.md}']
s.has_rdoc = false
s.homepage = %q{http://github.com/wilson/shanghai}
s.require_paths = ["lib"]
s.summary = %q{Automatically press machines into service}
s.description = "Shanghai is a platform for bootstrapping arbitrary hosts into your cloud."
s.add_runtime_dependency 'sinatra', '>= 1.3.5'
s.add_runtime_dependency 'puma', '>= 1.6'
s.add_runtime_dependency 'redis-objects', '>= 0.7.0'
s.add_runtime_dependency 'activemodel', '>= 3.2.12'
s.add_development_dependency 'mspec', '>= 1.5'
end