forked from heroku/rails_12factor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrails_12factor.gemspec
21 lines (18 loc) · 956 Bytes
/
rails_12factor.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/rails_12factor/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Richard Schneeman", "Terence Lee"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{Run Rails the 12factor way}
gem.summary = %q{ Following best practices from http://12factor.net run a maintainable, clean, and scalable app on Rails}
gem.homepage = "https://github.com/heroku/rails_12factor"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "rails_12factor"
gem.require_paths = ["lib"]
gem.version = Rails12factor::VERSION
gem.license = 'LICENSE'
gem.add_dependency "rails_serve_static_assets"
gem.add_dependency "rails_stdout_logging"
end