-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeployments-app.gemspec
More file actions
23 lines (19 loc) · 1009 Bytes
/
deployments-app.gemspec
File metadata and controls
23 lines (19 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/deployments-app/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Alexandr Korsak"]
gem.email = ["alex.korsak@gmail.com"]
gem.description = %q{deployments - app it's a sinatra application, you can run it as standalone app on the heroku or attach to the existing rails application.}
gem.summary = %q{deployments - app it's a sinatra application, you can run it as standalone app on the heroku or attach to the existing rails application.}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "deployments-app"
gem.require_paths = ["lib"]
gem.version = Deployments::App::VERSION
gem.add_dependency('sinatra')
gem.add_dependency('datamapper')
gem.add_dependency('haml')
gem.add_dependency('rake')
end