-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapistrano_3_rails_template.gemspec
More file actions
30 lines (26 loc) · 1.04 KB
/
capistrano_3_rails_template.gemspec
File metadata and controls
30 lines (26 loc) · 1.04 KB
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
29
30
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "capistrano_3_rails_template/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "capistrano-3-rails-template"
s.version = Capistrano3RailsTemplate::VERSION
s.authors = ["Matthew Nguyen"]
s.email = ["contact@n-studio.fr"]
s.homepage = "http://www.n-studio.fr"
s.summary = "Generate files for rails 4.1.x deployment."
s.description = "For postgresql."
s.license = "MIT"
s.files = Dir["{app,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">= 4.1.0"
s.add_dependency "capistrano-rails"
s.add_dependency "capistrano-passenger"
s.add_dependency "capistrano-bundler"
s.add_dependency "capistrano-rbenv"
s.add_dependency "capistrano-rails-console"
s.add_dependency "capistrano-rails-tail-log"
s.add_dependency "capistrano-rbenv-vars"
s.add_dependency "capistrano-yarn"
s.add_dependency "highline"
end