Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/motion/project/rake_tasks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

desc "Create a ZIP file with you application .app release build"
task :package do
App.config_without_setup.build_mode = :release
sparkle = App.config.sparkle
sparkle.package
end
Expand All @@ -25,6 +26,7 @@

desc "Sign the ZIP file with appropriate certificates"
task :sign do
App.config_without_setup.build_mode = :release
sparkle = App.config.sparkle
sparkle.sign_package
end
Expand All @@ -35,18 +37,21 @@
end

task :copy_release_notes_templates do
App.config_without_setup.build_mode = :release
sparkle = App.config.sparkle
sparkle.copy_templates(force = true)
end

desc "Generate the appcast xml feed"
task :feed do
App.config_without_setup.build_mode = :release
sparkle = App.config.sparkle
sparkle.create_appcast
end

desc "Update the release notes of this build"
task :release_notes do
App.config_without_setup.build_mode = :release
sparkle = App.config.sparkle
sparkle.create_release_notes
end
Expand Down