lib/semmy/tasks/commit.rb in semmy-0.1.0 vs lib/semmy/tasks/commit.rb in semmy-0.2.0
- old
+ new
@@ -4,18 +4,18 @@
module Tasks
class Commit < Base
def define
namespace 'commit' do
task 'prepare' do
- Shell.info('Creating prepare commit...')
+ Shell.info('Creating prepare commit.')
git.commit_all(config.prepare_commit_message % {
version: Project.version
})
end
task 'bump' do
- Shell.info('Creating bump commit...')
+ Shell.info('Creating bump commit.')
git.commit_all(config.bump_commit_message % {
version: Project.version
})
end