<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/bin/erb, branch master</title>
<subtitle>Ruby GIT repository</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/'/>
<entry>
<title>* bin/erb: accepts options in more flexible styles.</title>
<updated>2008-12-29T09:26:42+00:00</updated>
<author>
<name>yugui</name>
<email>yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2008-12-29T09:26:42+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=609c9f44dabd7bb6bf1a058690aedbf443d7f3a0'/>
<id>609c9f44dabd7bb6bf1a058690aedbf443d7f3a0</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21171 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21171 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* lib/erb.rb (ERB): m17n of ERB. adds rdoc.</title>
<updated>2008-12-29T09:26:34+00:00</updated>
<author>
<name>yugui</name>
<email>yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2008-12-29T09:26:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=623787d240c601ba5d11ff68b8b6f5bb6bcce3df'/>
<id>623787d240c601ba5d11ff68b8b6f5bb6bcce3df</id>
<content type='text'>
  fixes #712. c.f. [ruby-dev:37516].

* lib/erb.rb (ERB::Compiler#compile): recognizes magic comments.
  returns a pair of compiled script and its script encoding.

* lib/erb.rb (ERB#set_eoutvar): make generated scripts return a
  string in correct encoding.

* lib/erb.rb (ERB#def_method): use Kernel#eval for encoding-awareness
  of the evaluated string.

* bin/erb.rb (ERB::Main.run): adds -E and -U options.
  String is no longer Enumerable.

* man/erb.1: new manapage.

* test/erb/test_erb_m17n.rb: new test case for m17n features.

git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  fixes #712. c.f. [ruby-dev:37516].

* lib/erb.rb (ERB::Compiler#compile): recognizes magic comments.
  returns a pair of compiled script and its script encoding.

* lib/erb.rb (ERB#set_eoutvar): make generated scripts return a
  string in correct encoding.

* lib/erb.rb (ERB#def_method): use Kernel#eval for encoding-awareness
  of the evaluated string.

* bin/erb.rb (ERB::Main.run): adds -E and -U options.
  String is no longer Enumerable.

* man/erb.1: new manapage.

* test/erb/test_erb_m17n.rb: new test case for m17n features.

git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>remove -K option.</title>
<updated>2008-11-17T02:14:24+00:00</updated>
<author>
<name>seki</name>
<email>seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2008-11-17T02:14:24+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=a75fe921428eaa3294dcb48139dc8dd970474240'/>
<id>a75fe921428eaa3294dcb48139dc8dd970474240</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* bin/erb (ERB::Main::run): typo fixed.  [ruby-core:06337]</title>
<updated>2005-10-21T09:00:02+00:00</updated>
<author>
<name>matz</name>
<email>matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2005-10-21T09:00:02+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=6199d665e8fb2f3118e75db457d4beb00624c48d'/>
<id>6199d665e8fb2f3118e75db457d4beb00624c48d</id>
<content type='text'>
* env.h: move struct METHOD and struct BLOCK from eval.c to
  support NodeWrap and ParseTree.

* rubysig.h (CHECK_INTS): prevent signal handler to run during
  critical section.  [ruby-core:04039]

* eval.c (load_wait): need not to call rb_thread_schedule()
  explicitly.  [ruby-core:04039]

* eval.c (rb_thread_schedule): clear rb_thread_critical.
  [ruby-core:04039]

* eval.c (rb_obj_instance_exec): create instance_exec and
  module_exec which pass arguments to the block.

* eval.c (rb_f_funcall): rename fcall to funcall to follow
  tradition.

* st.c (st_free_table): do not call free() but xfree().
  [ruby-core:06205]

* eval.c (splat_value): call rb_Array() to convert svalue to
  values.  [ruby-dev:27397]

* lib/cgi.rb (CGI::Cookie::parse): Cookies from Nokia devices may
  not be parsed correctly.  A patch from August Z. Flatby
  (augustzf) in [ruby-Patches-2595].  [ruby-core:06183]

* object.c (rb_Array): Array() to raise error for objects without
  to_ary, nor to_a.

* object.c (nil_to_a): revert NilClass#to_a.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* env.h: move struct METHOD and struct BLOCK from eval.c to
  support NodeWrap and ParseTree.

* rubysig.h (CHECK_INTS): prevent signal handler to run during
  critical section.  [ruby-core:04039]

* eval.c (load_wait): need not to call rb_thread_schedule()
  explicitly.  [ruby-core:04039]

* eval.c (rb_thread_schedule): clear rb_thread_critical.
  [ruby-core:04039]

* eval.c (rb_obj_instance_exec): create instance_exec and
  module_exec which pass arguments to the block.

* eval.c (rb_f_funcall): rename fcall to funcall to follow
  tradition.

* st.c (st_free_table): do not call free() but xfree().
  [ruby-core:06205]

* eval.c (splat_value): call rb_Array() to convert svalue to
  values.  [ruby-dev:27397]

* lib/cgi.rb (CGI::Cookie::parse): Cookies from Nokia devices may
  not be parsed correctly.  A patch from August Z. Flatby
  (augustzf) in [ruby-Patches-2595].  [ruby-core:06183]

* object.c (rb_Array): Array() to raise error for objects without
  to_ary, nor to_a.

* object.c (nil_to_a): revert NilClass#to_a.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>typo fixed, again. thanks, Doug Kearns.</title>
<updated>2005-10-15T10:57:50+00:00</updated>
<author>
<name>seki</name>
<email>seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2005-10-15T10:57:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=4178ca52ca0c93b7987592c0a9ba3dffd31930c3'/>
<id>4178ca52ca0c93b7987592c0a9ba3dffd31930c3</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>typo fixed</title>
<updated>2005-09-25T03:06:23+00:00</updated>
<author>
<name>seki</name>
<email>seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2005-09-25T03:06:23+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=badecaed9e233f926a39cf942f8c2f3cc1a4f399'/>
<id>badecaed9e233f926a39cf942f8c2f3cc1a4f399</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>set ERB#filename so that it is used when reporting syntax/runtime errors.</title>
<updated>2005-09-11T13:18:59+00:00</updated>
<author>
<name>seki</name>
<email>seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2005-09-11T13:18:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=b24465ba536f30550afff0e80cf23182b6b28d51'/>
<id>b24465ba536f30550afff0e80cf23182b6b28d51</id>
<content type='text'>
Tabs converted to spaces.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tabs converted to spaces.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>add explicit trim mode</title>
<updated>2003-07-31T03:42:17+00:00</updated>
<author>
<name>seki</name>
<email>seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2003-07-31T03:42:17+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=a2b103ff8ef4250773c0139ec72484d019cfc70d'/>
<id>a2b103ff8ef4250773c0139ec72484d019cfc70d</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* bin/erb: fix -S 4 option bug.</title>
<updated>2002-11-21T14:38:37+00:00</updated>
<author>
<name>seki</name>
<email>seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2002-11-21T14:38:37+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=75900bdb601e4b132171b1d80c248e8e6dac8bf8'/>
<id>75900bdb601e4b132171b1d80c248e8e6dac8bf8</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>add bin/erb</title>
<updated>2002-11-20T14:41:05+00:00</updated>
<author>
<name>seki</name>
<email>seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2002-11-20T14:41:05+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=f8a36a275ffe25c6966799753b54283d73ea80ba'/>
<id>f8a36a275ffe25c6966799753b54283d73ea80ba</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
</feed>
