Class: Webhookdb::Tasks::Release
- Inherits:
-
Rake::TaskLib
- Object
- Rake::TaskLib
- Webhookdb::Tasks::Release
- Defined in:
- lib/webhookdb/tasks/release.rb
Instance Method Summary collapse
-
#initialize ⇒ Release
constructor
A new instance of Release.
Constructor Details
#initialize ⇒ Release
Returns a new instance of Release.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/webhookdb/tasks/release.rb', line 9 def initialize super() desc "Migrate replication tables for each integration, ensure all columns and backfill new columns." task :migrate_replication_tables do Webhookdb.load_app Webhookdb::Organization.enqueue_migrate_all_replication_tables end desc "Run the release script against the current environment." task :release do Rake::Task["db:migrate"].invoke Rake::Task["migrate_replication_tables"].invoke if ENV["HEROKU_APP_ID"] && (ENV["RUN_INTEGRATION_TESTS_ON_RELEASE"] == "true") Rake::Task["specs:heroku_integration_step1"].invoke end end desc "Print version info and exit" task :version do sha = Webhookdb::COMMIT[..8] puts "#{sha} (#{Webhookdb::RELEASE}) - #{Webhookdb::RELEASE_CREATED_AT} - #{Webhookdb::RACK_ENV}" end end |