2016-01-07 10:34:24 +00:00
|
|
|
require 'dotenv/tasks'
|
|
|
|
|
2012-09-23 02:50:25 +00:00
|
|
|
namespace :heroku do
|
|
|
|
desc "Generate the Heroku gems manifest from gem dependencies"
|
2016-01-07 10:34:24 +00:00
|
|
|
task :gems => :dotenv do
|
2012-09-23 02:50:25 +00:00
|
|
|
RAILS_ENV='production'
|
|
|
|
Rake::Task[:environment].invoke
|
|
|
|
list = Rails.configuration.gems.collect do |g|
|
|
|
|
command, *options = g.send(:install_command)
|
|
|
|
options.join(" ") + "\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
File.open(File.join(RAILS_ROOT, '.gems'), 'w') do |f|
|
|
|
|
f.write(list)
|
|
|
|
end
|
|
|
|
end
|
2016-01-07 10:34:24 +00:00
|
|
|
end
|