<?xml version="1.0" encoding="windows-1251"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Ruby on Rails по-русски</title>
		<link>http://www.railsforum.ru</link>
		<description>Форум Ruby on Rails по-русски</description>
		<language>ru</language>
		<lastBuildDate>Tue, 07 Sep 2010 10:53:36 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.railsforum.ru/images/misc/rss.jpg</url>
			<title>Ruby on Rails по-русски</title>
			<link>http://www.railsforum.ru</link>
		</image>
		<item>
			<title>Resource routing и globbing</title>
			<link>http://www.railsforum.ru/showthread.php?t=1127&amp;goto=newpost</link>
			<pubDate>Tue, 07 Sep 2010 08:02:23 GMT</pubDate>
			<description>Всем привет. 
 
Представим, что мы можем динамически создавать страницы по любым URI на сайте, т.е. по сути мы можем создавать любую произвольную...</description>
			<content:encoded><![CDATA[<div>Всем привет.<br />
<br />
Представим, что мы можем динамически создавать страницы по любым URI на сайте, т.е. по сути мы можем создавать любую произвольную структуру документов. Дерево сайта, соответственно, хранится в виде nested set. <br />
<br />
Дальше.<br />
<br />
По-сути, каждая страница будет являться ресурсом. То есть:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">/cities-in-russia/ - ресурс<br />
/cities-in-russia/ancient-cities/ - ресурс<br />
/cities-in-russia/founded-in-18-century/saint-petersburg/ - ресурс</code><hr />
</div>Все эти ресурсы должен обрабатываеть один REST контроллер - Page, который имеет 6 методов: new, edit, create, show, destroy, update. Т.к. страница это ресурс в единственном числе, то очевидно, что метод index нам не нужен.<br />
<br />
Теперь, собственно, сам вопрос: Как сделать resourceful routing к такой вот произвольной структуре страниц?<br />
<br />
Я не нашел пока что ничего лучше, как определить нужные маршруты (всего 6 маршрутов) вручную:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">match '*path/new(.:format)', :controller =&gt; :page, :action =&gt; :new, :method =&gt; :get, :as =&gt; :new_page<br />
match '*path/edit(.:format)', :controller =&gt; :page, :action =&gt; :edit, :method =&gt; :get, :as =&gt; :edit_page</code><hr />
</div>... и т.п.<br />
<br />
Нет ли более красивого способа для этого, правильно ли я делаю?</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=13">Контроллеры и Представления</category>
			<dc:creator>rbnoob</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1127</guid>
		</item>
		<item>
			<title>render :partial по клику</title>
			<link>http://www.railsforum.ru/showthread.php?t=1126&amp;goto=newpost</link>
			<pubDate>Tue, 07 Sep 2010 04:24:27 GMT</pubDate>
			<description><![CDATA[Как по клику на ссылку сделать render на партиал? 
проывал так 
 
Код: 
--------- 
<%= link_to 'form', :partial=> 'form'%><br/> 
--------- 
В итоге...]]></description>
			<content:encoded><![CDATA[<div>Как по клику на ссылку сделать render на партиал?<br />
проывал так<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;%= link_to 'form', :partial=&gt; 'form'%&gt;&lt;br/&gt;</code><hr />
</div>В итоге ссылка выглядит так<br />
<a href="http://localhost:3000/index?partial=form" target="_blank">http://localhost:3000/index?partial=form</a><br />
но перехода нет.</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=13">Контроллеры и Представления</category>
			<dc:creator>ROR</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1126</guid>
		</item>
		<item>
			<title>Удалить старые версии Ruby</title>
			<link>http://www.railsforum.ru/showthread.php?t=1125&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 22:29:55 GMT</pubDate>
			<description>Подскажите как в ubuntu удалить старые версии Ruby</description>
			<content:encoded><![CDATA[<div>Подскажите как в ubuntu удалить старые версии Ruby</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=4">Установка и настройка</category>
			<dc:creator>limpopo</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1125</guid>
		</item>
		<item>
			<title>paperclip и rails3</title>
			<link>http://www.railsforum.ru/showthread.php?t=1124&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 17:15:50 GMT</pubDate>
			<description>устанавливал paperclip по инструкции http://patshaughnessy.net/2010/5/23/how-to-install-paperclip-in-a-rails-3-app, единственное что в гемфайл...</description>
			<content:encoded><![CDATA[<div>устанавливал paperclip по инструкции <a href="http://patshaughnessy.net/2010/5/23/how-to-install-paperclip-in-a-rails-3-app" target="_blank">http://patshaughnessy.net/2010/5/23/...-a-rails-3-app</a>, единственное что в гемфайл пришлось писать не &quot;<i>gem 'paperclip', :git =&gt; 'git://github.com/thoughtbot/paperclip.git',<br />
                 :branch =&gt; 'rails3'</i>&quot;<br />
, а <br />
&quot;<i>gem 'paperclip', :git =&gt; 'git://github.com/thoughtbot/paperclip.git'</i>&quot;<br />
Т.к. бренча rails3 нету на данный момент.<br />
<br />
Проблема заключается в том, что файл не закачивается.. ошибок не возникает. Просто файл, который был выбран для загрузки не загружается.<br />
<br />
Пробовал и на ruby 1.8.7 и на 1.9.2<br />
<br />
вот что пишет сервер на действии create<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Started POST &quot;/news/3&quot; for 127.0.0.1 at 2010-09-05 21:45:53 +0400<br />
&nbsp; Processing by NewsController#update as HTML<br />
&nbsp; Parameters: {&quot;utf8&quot;=&gt;&quot;&#10003;&quot;, &quot;authenticity_token&quot;=&gt;&quot;mFMpHKo6X4u6nZVNWsnncVfvdu+VGL62Gf3L8gy/vEw=&quot;, &quot;news&quot;=&gt;{&quot;title&quot;=&gt;&quot;sadf&quot;, &quot;short&quot;=&gt;&quot;asdfas&quot;, &quot;body&quot;=&gt;&quot;fdasfd&quot;, &quot;image&quot;=&gt;&quot;news1.jpg&quot;, &quot;date(1i)&quot;=&gt;&quot;2010&quot;, &quot;date(2i)&quot;=&gt;&quot;9&quot;, &quot;date(3i)&quot;=&gt;&quot;5&quot;, &quot;date(4i)&quot;=&gt;&quot;21&quot;, &quot;date(5i)&quot;=&gt;&quot;06&quot;}, &quot;commit&quot;=&gt;&quot;сохранить&quot;, &quot;id&quot;=&gt;&quot;3&quot;}<br />
&nbsp; Firm Load (0.2ms)&nbsp; SELECT `firms`.* FROM `firms`<br />
&nbsp; News Load (0.1ms)&nbsp; SELECT `news`.* FROM `news` WHERE (`news`.`id` = 3) LIMIT 1<br />
&nbsp; SQL (0.1ms)&nbsp; BEGIN<br />
[paperclip] Saving attachments.<br />
&nbsp; SQL (0.1ms)&nbsp; COMMIT<br />
Redirected to http://localhost:3000/news/3<br />
Completed 302 Found in 88ms<br />
[2010-09-05 21:45:53] ERROR Errno::ECONNRESET: Connection reset by peer<br />
&nbsp; &nbsp; &nbsp; &nbsp; /home/niksan/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/webrick/httpserver.rb:56:in `eof?'<br />
&nbsp; &nbsp; &nbsp; &nbsp; /home/niksan/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/webrick/httpserver.rb:56:in `run'<br />
&nbsp; &nbsp; &nbsp; &nbsp; /home/niksan/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=17">Использование и разработка Plugin/Gem</category>
			<dc:creator>niksan</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1124</guid>
		</item>
		<item>
			<title>jQuery и Rails3</title>
			<link>http://www.railsforum.ru/showthread.php?t=1123&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 10:15:08 GMT</pubDate>
			<description><![CDATA[У меня стоит rails3, ruby1.9.2. Хотелось бы сделать так, чтобы стандартные хэлперы генерировали jQuery код.. чтобы работало, например ":conditions=>"...]]></description>
			<content:encoded><![CDATA[<div>У меня стоит <i>rails3</i>, <i>ruby1.9.2</i>. Хотелось бы сделать так, чтобы стандартные хэлперы генерировали jQuery код.. чтобы работало, например &quot;:conditions=&gt;&quot; Пробовал поставить <a href="http://github.com/aaronchi/jrails" target="_blank">jRails плагин</a>, не работает, <a href="http://joshhuckabee.com/jquery-rails-3" target="_blank">подключал rails.js</a> так же не сработало</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=16">AJAX и RJS</category>
			<dc:creator>niksan</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1123</guid>
		</item>
		<item>
			<title>Дополнительные методы</title>
			<link>http://www.railsforum.ru/showthread.php?t=1122&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 06:16:31 GMT</pubDate>
			<description>К примеру нужно после нажатия на кнопку вывести некие данные на странице, но эти данные выводятнся не из базы, а путем запуска методов(количество...</description>
			<content:encoded><![CDATA[<div>К примеру нужно после нажатия на кнопку вывести некие данные на странице, но эти данные выводятнся не из базы, а путем запуска методов(количество этих методов может быть сколь угодным) которые генерируют эти данные(это может даже и запуск некого стороннего приложения или скрипта), так вот вопрос где эти методы писать? В контроллере, модели хелпере или где? где будет правильнее?</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=13">Контроллеры и Представления</category>
			<dc:creator>ROR</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1122</guid>
		</item>
		<item>
			<title>Как передать параметр экшену</title>
			<link>http://www.railsforum.ru/showthread.php?t=1121&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 18:55:10 GMT</pubDate>
			<description>Нубский вопрос наверное. 
У меня есть поля для ввода и кнопка, по нажатию на кнопку надо чтобы ниже всего этого оказалось то что я вводил. Вообще...</description>
			<content:encoded><![CDATA[<div>Нубский вопрос наверное.<br />
У меня есть поля для ввода и кнопка, по нажатию на кнопку надо чтобы ниже всего этого оказалось то что я вводил. Вообще что-то похожее на обычный поиск.<br />
Вообще я делаю так :<br />
код с *.html.erb<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">PHP код:</div>
	<div class="alt2">
		<hr />
		<code style="white-space:nowrap">
		<div dir="ltr" style="text-align:left;">
			<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">&lt;%&nbsp;</span><span style="color: #0000BB">form_tag</span><span style="color: #007700">(:</span><span style="color: #0000BB">controller&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">"show"</span><span style="color: #007700">,&nbsp;:</span><span style="color: #0000BB">action&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">"search"</span><span style="color: #007700">)&nbsp;do&nbsp;-%&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;%=&nbsp;</span><span style="color: #0000BB">text_field_tag&nbsp;</span><span style="color: #007700">:</span><span style="color: #0000BB">name</span><span style="color: #007700">%&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&amp;</span><span style="color: #0000BB">nbsp</span><span style="color: #007700">;&amp;</span><span style="color: #0000BB">nbsp</span><span style="color: #007700">;&amp;</span><span style="color: #0000BB">nbsp</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;%=&nbsp;</span><span style="color: #0000BB">submit_tag&nbsp;</span><span style="color: #DD0000">"Search"&nbsp;</span><span style="color: #007700">%&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&lt;%&nbsp;</span><span style="color: #0000BB">end&nbsp;</span><span style="color: #007700">-%&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&lt;%&nbsp;</span><span style="color: #0000BB">unless&nbsp;</span><span style="color: #007700">@</span><span style="color: #0000BB">result</span><span style="color: #007700">.</span><span style="color: #0000BB">blank</span><span style="color: #007700">?&nbsp;-%&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">Result&nbsp;</span><span style="color: #007700">=&nbsp;&lt;%=&nbsp;</span><span style="color: #0000BB">h&nbsp;</span><span style="color: #007700">@</span><span style="color: #0000BB">result&nbsp;</span><span style="color: #007700">%&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&lt;%&nbsp;</span><span style="color: #0000BB">end&nbsp;</span><span style="color: #007700">-%&gt;&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code><!-- php buffer end -->
		</div>
		</code>
		<hr />
	</div>
</div>код с контроллера:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">PHP код:</div>
	<div class="alt2">
		<hr />
		<code style="white-space:nowrap">
		<div dir="ltr" style="text-align:left;">
			<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB">&nbsp;&nbsp;def&nbsp;search<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">@</span><span style="color: #0000BB">r&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">Searcher</span><span style="color: #007700">.new<br />&nbsp;&nbsp;&nbsp;&nbsp;@</span><span style="color: #0000BB">result&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">""<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">unless&nbsp;params</span><span style="color: #007700">&#91;:</span><span style="color: #0000BB">name</span><span style="color: #007700">&#93;.</span><span style="color: #0000BB">blank</span><span style="color: #007700">?<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;@</span><span style="color: #0000BB">result&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">params</span><span style="color: #007700">&#91;:</span><span style="color: #0000BB">name</span><span style="color: #007700">&#93;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">end<br />&nbsp;&nbsp;end&nbsp;<br /></span>
</span>
</code><!-- php buffer end -->
		</div>
		</code>
		<hr />
	</div>
</div>P.S. Все работает но мне кажется что это я делаю через одно место</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=13">Контроллеры и Представления</category>
			<dc:creator>ChrisX</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1121</guid>
		</item>
		<item>
			<title>Apache+Ruby on Rails+Windows</title>
			<link>http://www.railsforum.ru/showthread.php?t=1120&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 18:45:21 GMT</pubDate>
			<description>Здравствуйте, столкнулся с проблемой настройки связки Apache+Ruby on Rails+Windows, сразу оговорю, что при всём моём желании ставить эту связку под...</description>
			<content:encoded><![CDATA[<div>Здравствуйте, столкнулся с проблемой настройки связки Apache+Ruby on Rails+Windows, сразу оговорю, что при всём моём желании ставить эту связку под Linux не представляется возможным.<br />
Так как поддержки passenger под windows нет и не предвидеться, то решил попробовать запустить RoR на Apache с помощью scgi, в качестве мана по установке выбрал <a href="http://www.internet-technologies.ru/articles/article_888.html" target="_blank">http://www.internet-technologies.ru/...ticle_888.html</a>, запнулся на моменте запуска scgi_service, вылезает такая ошибка:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">D:\Project\Ruby on Rails\blog&gt;scgi_service<br />
&lt;internal:lib/rubygems/custom_require&gt;:29:in `require': no such file to load --<br />
config/environment (LoadError)<br />
&nbsp; &nbsp; &nbsp; &nbsp; from &lt;internal:lib/rubygems/custom_require&gt;:29:in `require'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from c:/Ruby192/bin/scgi_service:35:in `configure_rails'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from c:/Ruby192/bin/scgi_service:43:in `initialize'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from c:/Ruby192/bin/scgi_service:60:in `new'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from c:/Ruby192/bin/scgi_service:60:in `&lt;main&gt;'</code><hr />
</div>Не могу понять в чём ошибка. Точнее догадываюсь что неправильно указанно положение файла custom_require, но где его исправить не знаю.<br />
Если путь который я выбрал не приведёт к успешной настройке, подскажите, как можно заставить работать Apache+Ruby on Rails+Windows? (P.S. установить Linux не вариант).</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=20">Развёртывание Rails приложений</category>
			<dc:creator>AndreyD</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1120</guid>
		</item>
		<item>
			<title>Установка MySQL или SQLite3 на Ruby 1.9.2</title>
			<link>http://www.railsforum.ru/showthread.php?t=1119&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 12:18:36 GMT</pubDate>
			<description>Решил попробовать новую версию Rails 3.0 Ruby 1.9.2 на MS Windows 64  бит и что-то всё глючит...:(! 
Установил сначала Ruby 1.9.2 с помощью...</description>
			<content:encoded><![CDATA[<div>Решил попробовать новую версию Rails 3.0 Ruby 1.9.2 на MS Windows 64  бит и что-то всё глючит...:(!<br />
Установил сначала Ruby 1.9.2 с помощью инсталлера, всё пока в порядке:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">C:\Documents and Settings\MACHINE_DEV3&gt;ruby -v<br />
ruby 1.9.2p0 (2010-08-18) [i386-mingw32]</code><hr />
</div>Потом установил все &quot;рельсовые гайки&quot;, скачав все gems  по отделльности и уставнови локально:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">C:\Documents and Settings\MACHINE_DEV3&gt;gem list<br />
<br />
*** LOCAL GEMS ***<br />
<br />
abstract (1.0.0)<br />
actionmailer (3.0.0)<br />
actionpack (3.0.0)<br />
activemodel (3.0.0)<br />
activerecord (3.0.0)<br />
activeresource (3.0.0)<br />
activesupport (3.0.0)<br />
arel (1.0.1)<br />
builder (2.1.2)<br />
bundler (1.0.0)<br />
erubis (2.6.6)<br />
gem_plugin (0.2.3)<br />
i18n (0.4.1)<br />
mail (2.2.5)<br />
mime-types (1.16)<br />
minitest (1.6.0)<br />
mongrel (1.2.0.pre2 x86-mingw32)<br />
mysql (2.8.1 x86-mswin32)<br />
polyglot (0.3.1)<br />
rack (1.2.1)<br />
rack-mount (0.6.13)<br />
rack-test (0.5.4)<br />
rails (3.0.0)<br />
railties (3.0.0)<br />
rake (0.8.7)<br />
rdoc (2.5.8)<br />
sqlite3-ruby (1.3.1 x86-mswin32-60)<br />
thor (0.14.0)<br />
treetop (1.4.8)<br />
tzinfo (0.3.23)</code><hr />
</div>До сих пор всё гладко.<br />
Потом попробовал создать простую апли &quot;блог&quot;, как указано в API Rails 3.0:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">C:\Documents and Settings\MACHINE_DEV3\My Documents\ror_prj&gt;rails new blog -d=mysql<br />
&nbsp; &nbsp; &nbsp; create<br />
&nbsp; &nbsp; &nbsp; create&nbsp; README<br />
&nbsp; &nbsp; &nbsp; ....<br />
&nbsp; &nbsp; &nbsp; create&nbsp; vendor/plugins/.gitkeep</code><hr />
</div>Пока всё тоже ОК. <br />
Пробую создать DB, и вот тут-то и начинаются проблемки:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">C:\Documents and Settings\MACHINE_DEV3\My Documents\ror_prj&gt;cd blog<br />
<br />
C:\Documents and Settings\MACHINE_DEV3\My Documents\ror_prj\blog&gt;rake db:create<br />
(in C:/Documents and Settings/MACHINE_DEV3/My Documents/ror_prj/blog)<br />
Could not find gem 'mysql2 (&gt;= 0, runtime)' in any of the gem sources.<br />
Try running `bundle install`.</code><hr />
</div>Проверяю файл 'database.yml', а там ссылка на совсем другой gem - mysql2:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"># MySQL.&nbsp; Versions 4.1 and 5.0 are recommended.<br />
#<br />
# Install the MySQL driver:<br />
#&nbsp;  gem install mysql2<br />
#<br />
# And be sure to use new-style password hashing:<br />
#&nbsp;  http://dev.mysql.com/doc/refman/5.0/en/old-client.html<br />
development:<br />
&nbsp; adapter: mysql2<br />
&nbsp; encoding: utf8<br />
&nbsp; reconnect: false<br />
&nbsp; database: blog_development<br />
&nbsp; pool: 5<br />
&nbsp; username: root<br />
&nbsp; password:<br />
&nbsp; host: localhost</code><hr />
</div>Кроме того, в файле 'Gemfile', на него тоже есть ссылка:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">source 'http://rubygems.org'<br />
<br />
gem 'rails', '3.0.0'<br />
<br />
# Bundle edge Rails instead:<br />
# gem 'rails', :git =&gt; 'git://github.com/rails/rails.git'<br />
<br />
gem 'mysql2'</code><hr />
</div>Попытки &quot;закоментировать&quot; эту линию (gem 'mysql2') в 'Gemfile' ни к чему не привели.<br />
Пробовал запустить 'bundle install' - тоже ошибки, к тому же РС, на который нужно всё поставить не имеет доступа к Нету:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">C:\Documents and Settings\MACHINE_DEV3\My Documents\ror_prj\blog&gt;bundle install<br />
Fetching source index for http://rubygems.org/<br />
Could not reach rubygems repository http://rubygems.org/<br />
Using rake (0.8.7)<br />
Using abstract (1.0.0)<br />
Using activesupport (3.0.0)<br />
Using builder (2.1.2)<br />
Using i18n (0.4.1)<br />
Using activemodel (3.0.0)<br />
Using erubis (2.6.6)<br />
Using rack (1.2.1)<br />
Using rack-mount (0.6.13)<br />
Using rack-test (0.5.4)<br />
Using tzinfo (0.3.23)<br />
Using actionpack (3.0.0)<br />
Using mime-types (1.16)<br />
Using polyglot (0.3.1)<br />
Using treetop (1.4.8)<br />
Using mail (2.2.5)<br />
Using actionmailer (3.0.0)<br />
Using arel (1.0.1)<br />
Using activerecord (3.0.0)<br />
Using activeresource (3.0.0)<br />
Using bundler (1.0.0)<br />
Installing mysql2 (0.2.3) with native extensions C:/Ruby192/lib/ruby/1.9.1/rubygems/installer.rb:483:in `rescu<br />
e in block in build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildE<br />
rror)<br />
<br />
C:/Ruby192/bin/ruby.exe extconf.rb<br />
checking for rb_thread_blocking_region()... *** extconf.rb failed ***<br />
Could not create Makefile due to some reason, probably lack of<br />
necessary libraries and/or headers.&nbsp; Check the mkmf.log file for more<br />
details.&nbsp; You may need configuration options.<br />
<br />
Provided configuration options:<br />
&nbsp; &nbsp; &nbsp; &nbsp; --with-opt-dir<br />
&nbsp; &nbsp; &nbsp; &nbsp; --without-opt-dir<br />
&nbsp; &nbsp; &nbsp; &nbsp; --with-opt-include<br />
&nbsp; &nbsp; &nbsp; &nbsp; --without-opt-include=${opt-dir}/include<br />
&nbsp; &nbsp; &nbsp; &nbsp; --with-opt-lib<br />
&nbsp; &nbsp; &nbsp; &nbsp; --without-opt-lib=${opt-dir}/lib<br />
&nbsp; &nbsp; &nbsp; &nbsp; --with-make-prog<br />
&nbsp; &nbsp; &nbsp; &nbsp; --without-make-prog<br />
&nbsp; &nbsp; &nbsp; &nbsp; --srcdir=.<br />
&nbsp; &nbsp; &nbsp; &nbsp; --curdir<br />
&nbsp; &nbsp; &nbsp; &nbsp; --ruby=C:/Ruby192/bin/ruby<br />
C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:368:in `try_do': The complier failed to generate an executable file. (Runtim<br />
eError)<br />
You have to install development tools first.<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:435:in `try_link0'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:440:in `try_link'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:552:in `try_func'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:797:in `block in have_func'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:693:in `block in checking_for'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:280:in `block (2 levels) in postpone'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:254:in `open'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:280:in `block in postpone'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:254:in `open'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:276:in `postpone'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:692:in `checking_for'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/mkmf.rb:796:in `have_func'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from extconf.rb:9:in `&lt;main&gt;'<br />
<br />
<br />
Gem files will remain installed in C:/Ruby192/lib/ruby/gems/1.9.1/gems/mysql2-0.2.3 for inspection.<br />
Results logged to C:/Ruby192/lib/ruby/gems/1.9.1/gems/mysql2-0.2.3/ext/mysql2/gem_make.out<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/rubygems/installer.rb:486:in `block in build_extensions'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/rubygems/installer.rb:446:in `each'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/rubygems/installer.rb:446:in `build_extensions'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/1.9.1/rubygems/installer.rb:198:in `install'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/source.rb:100:in `install'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/installer.rb:55:in `block in run'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/spec_set.rb:12:in `block in each'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/spec_set.rb:12:in `each'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/spec_set.rb:12:in `each'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/installer.rb:44:in `run'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/installer.rb:8:in `install'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/cli.rb:217:in `install'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/vendor/thor/task.rb:22:in `run'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/vendor/thor/invocation.rb:118:in `i<br />
nvoke_task'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/vendor/thor.rb:246:in `dispatch'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/lib/bundler/vendor/thor/base.rb:389:in `start'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.0/bin/bundle:13:in `&lt;top (required)&gt;'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/bin/bundle:19:in `load'<br />
&nbsp; &nbsp; &nbsp; &nbsp; from C:/Ruby192/bin/bundle:19:in `&lt;main&gt;'<br />
<br />
C:\Documents and Settings\MACHINE_DEV3\My Documents\ror_prj\blog&gt;</code><hr />
</div>И похоже, создатели MySQl gem несколько в курсе происходящего.:(ю <a href="http://skim.la/2010/08/21/rails-3-rc-on-windows-using-rubyinstaller-192/" target="_blank">http://skim.la/2010/08/21/rails-3-rc...installer-192/</a><br />
У кого-то уже был подобный опыт, или никак невозможно ПОКА что установить Rails 3.0 +  Ruby 1.9.2 на Windows.<br />
<br />
Потом попробовал тоже самое, но уже с SQlite3:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">C:\Documents and Settings\MACHINE_DEV3\My Documents\libs\gems\rails3.0&gt;gem install sqlite -l<br />
<br />
=============================================================================<br />
<br />
&nbsp; You've installed the binary version of sqlite3-ruby.<br />
&nbsp; It was built using SQLite3 version 3.6.23.1.<br />
&nbsp; It's recommended to use the exact same version to avoid potential issues.<br />
<br />
&nbsp; At the time of building this gem, the necessary DLL files where available<br />
&nbsp; in the following download:<br />
<br />
&nbsp; http://www.sqlite.org/sqlitedll-3_6_23_1.zip<br />
<br />
&nbsp; You can put the sqlite3.dll available in this package in your Ruby bin<br />
&nbsp; directory, for example C:\Ruby\bin<br />
<br />
=============================================================================<br />
<br />
Successfully installed sqlite3-ruby-1.3.1-x86-mswin32-60<br />
1 gem installed<br />
Installing ri documentation for sqlite3-ruby-1.3.1-x86-mswin32-60...<br />
Installing RDoc documentation for sqlite3-ruby-1.3.1-x86-mswin32-60...<br />
<br />
C:\Documents and Settings\MACHINE_DEV3\My Documents\libs\gems\rails3.0&gt;gem list<br />
<br />
*** LOCAL GEMS ***<br />
...<br />
mysql (2.8.1 x86-mswin32)<br />
...<br />
sqlite3-ruby (1.3.1 x86-mswin32-60)<br />
...</code><hr />
</div>Пробую создать DB:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">C:\Documents and Settings\MACHINE_DEV3\My Documents\ror_prj&gt;cd blog<br />
<br />
C:\Documents and Settings\MACHINE_DEV3\My Documents\ror_prj\blog&gt;rake db:create<br />
(in C:/Documents and Settings/MACHINE_DEV3/My Documents/ror_prj/blog)<br />
Could not find gem 'sqlite3-ruby (&gt;= 0, runtime)' in any of the gem sources.<br />
Try running `bundle install`.<br />
<br />
C:\Documents and Settings\MACHINE_DEV3\My Documents\ror_prj\blog&gt;</code><hr />
</div>Вобщем, как ни крути, всё равно получишь &quot;бублик&quot;, а точнее дырку от него.:mad:</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=4">Установка и настройка</category>
			<dc:creator>Javix</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1119</guid>
		</item>
		<item>
			<title>Ошибка при использовании form_for</title>
			<link>http://www.railsforum.ru/showthread.php?t=1118&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 06:37:25 GMT</pubDate>
			<description>В контроллере *firms* есть метод - new. 
 
Код: 
--------- 
def new 
  	@firm = Firm.new 
  end 
--------- 
в app/views/firms/new.html.erb</description>
			<content:encoded><![CDATA[<div>В контроллере <b>firms</b> есть метод - new.<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">def new<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; @firm = Firm.new<br />
&nbsp; end</code><hr />
</div>в app/views/firms/new.html.erb<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;%=form_for @firm do |f| %&gt;<br />
&lt;%end%&gt;</code><hr />
</div>Когда я открываю в броузере /firms/new/ то выдается ошибка.<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">SyntaxError in Firms#new<br />
<br />
Showing app/views/firms/new.html.erb where line #1 raised:<br />
<br />
compile error<br />
/home/niksan/htdocs/neft2/app/views/firms/new.html.erb:1: syntax error, unexpected ')'<br />
...oncat((form_for @firm do |f| ).to_s); @output_buffer.concat ...<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ^<br />
/home/niksan/htdocs/neft2/app/views/firms/new.html.erb:4: syntax error, unexpected kENSURE, expecting ')'<br />
/home/niksan/htdocs/neft2/app/views/firms/new.html.erb:6: syntax error, unexpected kEND, expecting ')'<br />
Extracted source (around line #1):<br />
<br />
1: &lt;%=form_for @firm do |f| %&gt;<br />
2: &lt;%end%&gt;</code><hr />
</div>Что я делаю не так?<br />
<br />
P.S. Такая ошибка при добавлении формы в любой вьюхе любого контроллера.<br />
<br />
<b>Rails 2.3.8, ruby 1.8.7</b></div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=13">Контроллеры и Представления</category>
			<dc:creator>niksan</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1118</guid>
		</item>
		<item>
			<title>Не могу получить данные по ассоциации модели</title>
			<link>http://www.railsforum.ru/showthread.php?t=1117&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 09:23:22 GMT</pubDate>
			<description><![CDATA[Привет. 
У меня есть затруднения в получении данных по ассоциированной модели. Вот модели моего приложения: 
 
 
Код: 
--------- 
class City <...]]></description>
			<content:encoded><![CDATA[<div>Привет.<br />
У меня есть затруднения в получении данных по ассоциированной модели. Вот модели моего приложения:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">class City &lt; ActiveRecord::Base<br />
&nbsp; belongs_to :region<br />
&nbsp; has_many :companies<br />
end<br />
<br />
class Company &lt; ActiveRecord::Base<br />
&nbsp; named_scope :published, :conditions =&gt; { :status =&gt; 'published' }<br />
&nbsp; belongs_to :occupation<br />
&nbsp; belongs_to :city<br />
end<br />
<br />
class Occupation &lt; ActiveRecord::Base<br />
&nbsp; has_many :companies<br />
end</code><hr />
</div>В контроллере следующий код:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"># Получаю город<br />
@city = City.find(params[:id], :include =&gt; { :companies =&gt; :occupation })<br />
<br />
# Получаю все опубликованные компании в этом городе<br />
@companies = @city.companies.published</code><hr />
</div>У каждой компании есть род деятельности компании (Occupation), что видно из моделей.<br />
Теперь вопрос: как мне получить список всех родов деятельности из @companies в отдельный массив?</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=12">Модели и БД</category>
			<dc:creator>rbnoob</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1117</guid>
		</item>
		<item>
			<title>Новичок. Просьба помочь</title>
			<link>http://www.railsforum.ru/showthread.php?t=1116&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 14:46:55 GMT</pubDate>
			<description>Здравствуйте! 
 
Имею такое задание: надо создать простейший скрипт на RoR. Проблема в том, что я с ROR знаком 3 дня. Следовательно, я вообще ничего...</description>
			<content:encoded><![CDATA[<div>Здравствуйте!<br />
<br />
Имею такое задание: надо создать простейший скрипт на RoR. Проблема в том, что я с ROR знаком 3 дня. Следовательно, я вообще ничего в нём не понял и даже не установил половину. Скачал &quot;Гибкая разработка Web-приложений в среде Ruby On Rails&quot; - там второе издание, которое сильно устарело - половина команд не выполняется, частые ошибки и т.д. Хотелось бы последнее (четвёртое?) издание скачать. Не подскажете, где? Если что, английский я понимаю, что запрещено, но мало ли кто скинет ссылку в личные сообщения? Вообще, хочу посерьёзнее освоить всю эту тему (Ruby, RoR).<br />
<br />
Требования такие: логин/пароль, статьи, система рейтинга статей. На данный момент - всё. Просьба скидывать ссылки на уроки/руководства по этой тематике.</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=25">Общий раздел</category>
			<dc:creator>Etis</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1116</guid>
		</item>
		<item>
			<title>Radiant CMS</title>
			<link>http://www.railsforum.ru/showthread.php?t=1115&amp;goto=newpost</link>
			<pubDate>Thu, 26 Aug 2010 18:55:08 GMT</pubDate>
			<description>привет всем. Вопрос следующий по установке radiant cms. 
 
Делаю следующее  
 
Код: 
--------- 
gem install radiant 
--------- 
 
Код:</description>
			<content:encoded><![CDATA[<div>привет всем. Вопрос следующий по установке radiant cms.<br />
<br />
Делаю следующее <br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">gem install radiant</code><hr />
</div><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">rails site -d mysql</code><hr />
</div><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">radiant -d mysql site/</code><hr />
</div>установилось все нормально, но такой вопрос мне допустим надо изменить что то в контроллере admin., захожу к себе в приложение кроме application_controller ничего нет, то есть сорцы не скопировались. И вопрос как можно править сорцы самого gem пакета, только чтобы не править их в папке gems/radiant/, чтобы можно было как то скопировать себе в папку приложения.</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=17">Использование и разработка Plugin/Gem</category>
			<dc:creator>godvinn</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1115</guid>
		</item>
		<item>
			<title>Вакансия Ruby on Rails / Perl Developer г. Москва</title>
			<link>http://www.railsforum.ru/showthread.php?t=1114&amp;goto=newpost</link>
			<pubDate>Wed, 25 Aug 2010 11:22:15 GMT</pubDate>
			<description>АУРИГА — российско-американская компания, ведущий разработчик программного обеспечения на заказ для зарубежных и российских клиентов – открывает...</description>
			<content:encoded><![CDATA[<div>АУРИГА — российско-американская компания, ведущий разработчик программного обеспечения на заказ для зарубежных и российских клиентов – открывает вакансию <br />
Ruby on Rails / Perl Developer г. Москва. В команду Ruby on Rails по разработке банковского ПО для крупного российского заказчика требуется разработчик Ruby on Rails со знанием perl. Работа будет включать в себя доработки по текущим модулям проекта, разработку новых модулей, интеграцию с другими системами заказчика. Проект построен на технологиях, признанных лидирующими в области современных интернет технологий<br />
<br />
Обязанности:<br />
•	Написание кода, отладка, исправление ошибок <br />
•	Работа с существующими приложениями на Ruby on Rails и Perl <br />
•	Документирование кода: комментарии, описание логики работы <br />
<br />
Требования:<br />
Опыт:<br />
•	2+ года программирования под Windows и Linux <br />
•	1+ год программирования на Ruby on Rails, Perl, PHP <br />
•	1+ год работы с Web-серверами Apache и Mongrel <br />
•	1+ год программирования для PostgreSQL и OracleОпыт написания документации для заказчика <br />
Языки программирования:<br />
•	Ruby 1.8.4, Perl 5.8.* <br />
•	PHP Операционные системы: Red Hat, Suse Enterprise <br />
•	Знание SQL, опыт работы с PostgreSQL, Oracle <br />
•	Опыт написания shell скриптов, работы с веб-серверами apache <br />
•	Программирование на С# и/или Java будет дополнительным преимуществом.<br />
<br />
Условия: <br />
•	Хорошая заработная плата (зависит от результатов собеседования)<br />
•	Развитая программа добровольного медстрахования<br />
•	График работы: 09.00-18.00<br />
•	Хорошие условия труда и современное оборудование<br />
•	м. Комсомольская<br />
<br />
<br />
В случае интереса отправляйте пожалуйста ваше резюме на e-mail: <a href="mailto:natalia.koroleva@auriga.com">natalia.koroleva@auriga.com</a><br />
Также с удовольствием ответим на ваши вопросы skype: natalia-koroleva<br />
<br />
С уважением, Королева Наталья<br />
HR-manager<br />
Auriga Inc.</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=23">Предлагаю работу</category>
			<dc:creator>Auriga</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1114</guid>
		</item>
		<item>
			<title>SOAP client</title>
			<link>http://www.railsforum.ru/showthread.php?t=1113&amp;goto=newpost</link>
			<pubDate>Wed, 25 Aug 2010 09:09:44 GMT</pubDate>
			<description>Есть Web-cervice содержащий методы, к примеру TEST 
так вот как из ruby можно вызвать этот самы метод? 
 
попытался так 
 
Код: 
--------- 
require...</description>
			<content:encoded><![CDATA[<div>Есть Web-cervice содержащий методы, к примеру TEST<br />
так вот как из ruby можно вызвать этот самы метод?<br />
<br />
попытался так<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Код:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">require 'soap/wsdlDriver'<br />
<br />
#Connections<br />
wsdl_url = ( 'http://localhost:8080/axis/service.jws?wsdl' )<br />
proxy&nbsp; &nbsp; = SOAP::WSDLDriverFactory.new(wsdl_url).create_rpc_driver<br />
<br />
#Call API Method and Get Exchange Rate<br />
rate = proxy.TEST(1256)<br />
puts 'Rate: #{rate}'</code><hr />
</div>Но вылетает ошибка</div>

]]></content:encoded>
			<category domain="http://www.railsforum.ru/forumdisplay.php?f=18">Программирование на Ruby</category>
			<dc:creator>ROR</dc:creator>
			<guid isPermaLink="true">http://www.railsforum.ru/showthread.php?t=1113</guid>
		</item>
	</channel>
</rss>
