File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ support/modules.md: \
17
17
lib/mina/rbenv.rb \
18
18
lib/mina/rvm.rb \
19
19
lib/mina/npm.rb \
20
+ lib/mina/tools.rb \
20
21
lib/mina/whenever.rb
21
22
cat $^ | ruby support/to_md.rb > $@
22
23
Original file line number Diff line number Diff line change @@ -135,6 +135,13 @@ def check_for_changes_script(options={})
135
135
queue echo_cmd %[cd "#{ deploy_to! } /#{ current_path! } " && #{ rails } console && exit]
136
136
end
137
137
138
+ # ### log
139
+ # Tail log from server
140
+ desc "Tail log from server"
141
+ task :log => :environment do
142
+ queue "tail -f #{ deploy_to } /#{ current_path } /log/#{ rails_env } .log"
143
+ end
144
+
138
145
# ## Deploy tasks
139
146
# These tasks are meant to be invoked inside deploy scripts, not invoked on
140
147
# their own.
Original file line number Diff line number Diff line change 1
1
module Mina
2
2
def self . version
3
- "0.3.5 "
3
+ "0.3.6 "
4
4
end
5
5
end
You can’t perform that action at this time.
0 commit comments