diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-19 12:19:19 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-19 12:19:19 +0000 |
commit | 8b494b468e0015cba12cb6f70c3f225fd7fc71fb (patch) | |
tree | d18dc5577c9ea99f43449711284be3c4b0464140 | |
parent | d1bc8a775b431df2813e90593a9bc191f50319bb (diff) | |
download | ruby-8b494b468e0015cba12cb6f70c3f225fd7fc71fb.tar.gz ruby-8b494b468e0015cba12cb6f70c3f225fd7fc71fb.tar.xz ruby-8b494b468e0015cba12cb6f70c3f225fd7fc71fb.zip |
* tool/generic_erb.rb: sends the result to stdout if no output option.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | tool/generic_erb.rb | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,8 +1,9 @@ -Sun Oct 19 21:12:51 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> +Sun Oct 19 21:19:16 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> * common.mk (srcs): removed ID_H_TARGET. * tool/generic_erb.rb: always overwrites if no if-change option. + sends the result to stdout if no output option. * template/id.h.tmpl: shows which token differs. diff --git a/tool/generic_erb.rb b/tool/generic_erb.rb index f7ef48dee..3ddfd7f65 100644 --- a/tool/generic_erb.rb +++ b/tool/generic_erb.rb @@ -29,4 +29,6 @@ if output end FileUtils.touch(timestamp) end +else + print result end |