File tree 6 files changed +13
-6
lines changed
6 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
- ## v0.4.0 - unreleased
1
+ ## v0.3.2 - unreleased
2
+
3
+ v0.3.1 - October 17, 2014
4
+ -------------------------
2
5
3
6
* Fix copy command for assets. (#150 ) [ Joshua Dover]
4
7
* Add comment for system-wide RVM install. (#112 ) [ Sam Qiu]
20
23
* Fix git: clone on win7 x64 had error (#216 )
21
24
* Add deploy: cleanup after deploy
22
25
* Prevent foreman export from expanding the current/ symlink (#241 )
26
+ * Support pretty_system on ruby 1.8.7 (#237 )
27
+ * Ruby 1.8.7 doesn't support empty symbols (#240 )
23
28
24
29
25
30
[ Joshua Dover ] : https://github.com/gerfuls
Original file line number Diff line number Diff line change 2
2
3
3
The MIT License
4
4
5
- Copyright (c) 2012 Nadarei, Inc.
5
+ Copyright (c) 2014 Nadarei, Inc.
6
6
7
7
Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -1002,8 +1002,8 @@ Michael:
1002
1002
1003
1003
[ rsc ] : http://ricostacruz.com
1004
1004
[ mg ] : http://devblog.michaelgalero.com/
1005
- [ c ] : http ://github.com/nadarei /mina/contributors
1005
+ [ c ] : https ://github.com/mina-deploy /mina/graphs /contributors
1006
1006
[ nd ] : http://nadarei.co
1007
- [ issues ] : https://github.com/nadarei /mina/issues
1007
+ [ issues ] : https://github.com/mina-deploy /mina/issues
1008
1008
[ trello ] : https://trello.com/board/mina/4fc8b3023d9c9a4d72e573e6
1009
1009
Original file line number Diff line number Diff line change @@ -98,7 +98,9 @@ def stream_stdin!(&blk)
98
98
99
99
def stream_stdout ( o , &blk )
100
100
while str = o . getc
101
+ # Ruby 1.8.7 fix
101
102
str = str . chr if str . is_a? Fixnum
103
+
102
104
yield str
103
105
end
104
106
end
Original file line number Diff line number Diff line change 1
1
module Mina
2
2
def self . version
3
- "0.3.0 "
3
+ "0.3.1 "
4
4
end
5
5
end
Original file line number Diff line number Diff line change 2
2
Acknowledgements
3
3
----------------
4
4
5
- © 2012-2013 , Nadarei. Released under the [ MIT
5
+ © 2012-2014 , Nadarei. Released under the [ MIT
6
6
License] ( http://www.opensource.org/licenses/mit-license.php ) .
7
7
8
8
Mina is authored and maintained by [ Rico Sta. Cruz] [ rsc ] and [ Michael
You can’t perform that action at this time.
0 commit comments