<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user">
    <title>gmane.comp.lang.ruby.rspec.user</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19549"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19548"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19547"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19546"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19545"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19544"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19543"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19542"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19541"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19540"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19539"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19538"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19537"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19536"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19535"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19534"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19533"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19532"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19531"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19530"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19549">
    <title>Re: shared examples with a block for expects?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19549</link>
    <description>&lt;pre&gt;
On May 23, 2012, at 6:12 PM, Patrick J. Collins wrote:


Just use a Proc:

describe '#new' do
  it_behaves_like 'an access controlled action', -&amp;gt; { get :new }
end


&lt;/pre&gt;</description>
    <dc:creator>Justin Ko</dc:creator>
    <dc:date>2012-05-24T06:33:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19548">
    <title>Re: received unexpected message :id= with (20)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19548</link>
    <description>&lt;pre&gt;
On May 23, 2012, at 4:27 PM, Kleber Shimabuku wrote:


I'm guessing the `Post` mock is making its way to the model layer. Either way, you need to find out why `id=` is getting called.

Shot in the dark: There is a lot of "post" names there. Maybe there is a conflict?

&lt;/pre&gt;</description>
    <dc:creator>Justin Ko</dc:creator>
    <dc:date>2012-05-24T06:28:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19547">
    <title>shared examples with a block for expects?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19547</link>
    <description>&lt;pre&gt;Hi,

Basically I want to do something like this:

describe FancyThingsController do

  def do_new
    get :new
  end

  def do_create
    post :create, :fancy_thing =&amp;gt; { :some =&amp;gt; "params" }
  end

  shared_examples "an access controlled action" do |expectation|
    it "denies access" do
      expect(&amp;amp;expectation).to raise_error(CanCan::AccessDenied)
    end
  end

  describe "#new" do
    it_behaves_like "an access controlled action", proc { do_new }
  end

  describe "#create" do
    it_behaves_like "an access controlled action", proc { do_create }
  end

end

but I get:  "expected CanCan::AccessDenied, got #&amp;lt;NameError: undefined
local variable or method `do_create' for
RSpec::Core::ExampleGroup::Nested_1::Nested_2:Class&amp;gt;"

Just curious, how can I do this?

Patrick J. Collins
http://collinatorstudios.com

&lt;/pre&gt;</description>
    <dc:creator>Patrick J. Collins</dc:creator>
    <dc:date>2012-05-24T00:12:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19546">
    <title>received unexpected message :id= with (20)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19546</link>
    <description>&lt;pre&gt;Please help me to understand this error message:

 1) PostsController#create when logged in should create a new post and
redirect to a successful message page
     Failure/Error: post 'create', { post: {title: 'New post',
       Mock Post(id: integer, title: string, description: text,
location: string, created_at: datetime, updated_at: datetime, status:
string, tags: string, views: integer, user_id: integer) received
unexpected message :id= with (20)
     # ./spec/controllers/posts_controller_spec.rb:56:in `block (4
levels) in &amp;lt;top (required)&amp;gt;'

Finished in 0.59991 seconds
6 examples, 1 failure



I'm trying to figure out this for about a week or more :(

Attachments:
http://www.ruby-forum.com/attachment/7429/posts_controller_spec.rb
http://www.ruby-forum.com/attachment/7430/posts_controller.rb


&lt;/pre&gt;</description>
    <dc:creator>Kleber Shimabuku</dc:creator>
    <dc:date>2012-05-23T22:27:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19545">
    <title>Re: bug: rspec rails generator generates a failingspec</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19545</link>
    <description>&lt;pre&gt;
On May 19, 2012, at 11:46 AM, survivorist wrote:


I believe this is fixed in RSpec 2.10
&lt;/pre&gt;</description>
    <dc:creator>Justin Ko</dc:creator>
    <dc:date>2012-05-19T20:09:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19544">
    <title>Re: bug: rspec rails generator generates a failingspec</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19544</link>
    <description>&lt;pre&gt;What was the specific issue with this and how did you resolve it, I'm having
the exact same error and can't find the root of the issue?  Thanks

--
View this message in context: http://ruby.11.n6.nabble.com/bug-rspec-rails-generator-generates-a-failing-spec-tp4647101p4975461.html
Sent from the rspec-users mailing list archive at Nabble.com.
&lt;/pre&gt;</description>
    <dc:creator>survivorist</dc:creator>
    <dc:date>2012-05-19T17:46:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19543">
    <title>Re: How does Spork help in requests specs?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19543</link>
    <description>&lt;pre&gt;Indeed, deleting the tables manually requires more effort because of the 
foreign keys that will require a specific order, but the specs got way 
faster than using truncation. Go figure it out.

And worse than that is reading this on PG documentation:

http://www.postgresql.org/docs/9.1/static/sql-truncate.html

"TRUNCATE quickly removes all rows from a set of tables. It has the same 
effect as an unqualified DELETE on each table, but*since it does not 
actually scan the tables it is faster*."

Yeah, sure, I believed on you once. Maybe this is true for large tables, 
but not so true for testing matters.

I just found that I should report this here for benefits of others that 
might consider this approach as well on PostgreSQL.

Best,
Rodrigo.

Em 17-05-2012 21:09, Rodrigo Rosenfeld Rosas escreveu:

&lt;/pre&gt;</description>
    <dc:creator>Rodrigo Rosenfeld Rosas</dc:creator>
    <dc:date>2012-05-18T00:45:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19542">
    <title>Re: How does Spork help in requests specs?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19542</link>
    <description>&lt;pre&gt;Sorry about this, I'm further investigating the slowness issue, and I 
found the culprit: truncation of my PostgreSQL are very slow. I'll 
investigate how to make it faster. Maybe deletion could be faster than 
truncation on PG...

Cheers,
Rodrigo.

Em 17-05-2012 21:04, Rodrigo Rosenfeld Rosas escreveu:

&lt;/pre&gt;</description>
    <dc:creator>Rodrigo Rosenfeld Rosas</dc:creator>
    <dc:date>2012-05-18T00:09:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19541">
    <title>How does Spork help in requests specs?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19541</link>
    <description>&lt;pre&gt;Even with Spork, my requests specs are very slow to start running (about 
7 seconds).

I suspect Rails is booting each time I run "rspec -X spec/requests".

Is that true? If so, is there any way I could instruct the web server to 
keep alive after the specs run so that it would be faster on next run?

Are there any resources on how to have better performance on running 
requests specs with Capybara and Webkit?

Having to wait about 7 seconds between consecutive runs is really a 
blocker for me. If I can't get it to run faster, I'll give up on 
requests specs and only have the controller's tests and client-side code 
specs without any integration tests...

But to be honest, I feel much more comfortable having some integration 
tests for the main features of my application and I would appreciate any 
hints on making them start faster.

The last time I worked with Rails, long ago, it wasn't such a painful 
experience to write such kind of tests (Capybara + Webkit). And my 
current desktop PC is *way* faster tha&lt;/pre&gt;</description>
    <dc:creator>Rodrigo Rosenfeld Rosas</dc:creator>
    <dc:date>2012-05-18T00:04:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19540">
    <title>Bash shim for Rspec</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19540</link>
    <description>&lt;pre&gt;HI Folks,
The following script is *supposed* to run rspec under Jruby with the proper
Java-switch for using SWT with OSX (-XstartOnFirstThread).
The issue is that this script doesn't actually run any of the specs!
Example:
$ bin/rspec_auto_jvm spec/swt_shoes/app_spec.rb
spec/swt_shoes/app_spec.rb
args are  spec/swt_shoes/app_spec.rb
$

Can anyone point out the flaw?

Peter Fitzgibbons
(847) 859-9550
Email: peter.fitzgibbons-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org
IM GTalk: peter.fitzgibbons
IM AOL: peter.fitzgibbons-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org


#!/usr/bin/env bash
# !/usr/bin/env jruby --1.9 --debug
#
# This file was generated by Bundler.
#
# The application 'rspec' is installed as part of a gem, and
# this file is here to facilitate running it.
#

echo "$&amp;lt; at &amp;gt;" | grep 'swt'

if [[ $&amp;lt; at &amp;gt; == *swt* ]]; then
  swt_opt="-J-XstartOnFirstThread"
fi

echo 'args are ' $*

run_rspec="
# http://jira.codehaus.org/browse/JRUBY-6324
# random seed for srand is not initialized properly
# call once and throw-away nil &lt;/pre&gt;</description>
    <dc:creator>Peter Fitzgibbons</dc:creator>
    <dc:date>2012-05-16T09:56:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19539">
    <title>Re: overview of how rspec was designed</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19539</link>
    <description>&lt;pre&gt;
The RSpec Book has a fairly deep discussion on the inner workings.
Other than that, there are some things you can get from the docs, but
there is not a central "this is how RSpec works" document that I've
written or am aware of.
&lt;/pre&gt;</description>
    <dc:creator>David Chelimsky</dc:creator>
    <dc:date>2012-05-15T17:41:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19538">
    <title>Re: how can I do an "or" within the context of amatcher?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19538</link>
    <description>&lt;pre&gt;
On May 15, 2012, at 12:47 AM, Patrick J. Collins wrote:


You need a custom matcher, something like this:

RSpec::Matchers.define :have_link_or_button do |locator|
  match do |page|
    page.has_button?(locator) || page.has_link?(locator)
  end
end

BTW, I believe Capybara has a method that checks for a button *or* link - look into that.
&lt;/pre&gt;</description>
    <dc:creator>Justin Ko</dc:creator>
    <dc:date>2012-05-15T16:03:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19537">
    <title>Re: how can I do an "or" within the context of amatcher?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19537</link>
    <description>&lt;pre&gt;You're looking for Custom Matchers:

https://github.com/dchelimsky/rspec/wiki/Custom-Matchers

Em 15-05-2012 03:47, Patrick J. Collins escreveu:

&lt;/pre&gt;</description>
    <dc:creator>Rodrigo Rosenfeld Rosas</dc:creator>
    <dc:date>2012-05-15T14:18:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19536">
    <title>Bash shim for Rspec</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19536</link>
    <description>&lt;pre&gt;HI Folks,
The following script is *supposed* to run rspec under Jruby with the proper
Java-switch for using SWT with OSX (-XstartOnFirstThread).
The issue is that this script doesn't actually run any of the specs!
Example:
$ bin/rspec_auto_jvm spec/swt_shoes/app_spec.rb
spec/swt_shoes/app_spec.rb
args are  spec/swt_shoes/app_spec.rb
$

Can anyone point out the flaw?

Peter Fitzgibbons
(847) 859-9550
Email: peter.fitzgibbons-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org
IM GTalk: peter.fitzgibbons
IM AOL: peter.fitzgibbons-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org


#!/usr/bin/env bash
# !/usr/bin/env jruby --1.9 --debug
#
# This file was generated by Bundler.
#
# The application 'rspec' is installed as part of a gem, and
# this file is here to facilitate running it.
#

echo "$&amp;lt; at &amp;gt;" | grep 'swt'

if [[ $&amp;lt; at &amp;gt; == *swt* ]]; then
  swt_opt="-J-XstartOnFirstThread"
fi

echo 'args are ' $*

run_rspec="
# http://jira.codehaus.org/browse/JRUBY-6324
# random seed for srand is not initialized properly
# call once and throw-away nil &lt;/pre&gt;</description>
    <dc:creator>Peter Fitzgibbons</dc:creator>
    <dc:date>2012-05-15T11:32:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19535">
    <title>how can I do an "or" within the context of a matcher?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19535</link>
    <description>&lt;pre&gt;Capybara has two methods:

page.has_button?

and

page.has_link?

...  I am wondering, how can I make a helper method that will be
satisfied by one or the other?  In other words, I want to be able to do:

page.should have_link_or_button("blah")

def have_link_or_button(locator)
  have_link(locator) || have_button(locator)
end

But that doesn't work...  Is there any way to do this?

Patrick J. Collins
http://collinatorstudios.com

&lt;/pre&gt;</description>
    <dc:creator>Patrick J. Collins</dc:creator>
    <dc:date>2012-05-15T06:47:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19534">
    <title>overview of how rspec was designed</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19534</link>
    <description>&lt;pre&gt;Other than jumping into the codebase myself, I was wondering if anyone has
done a high-level (or better yet low level) write-up on how rspec works
under the covers?
&lt;/pre&gt;</description>
    <dc:creator>S Ahmed</dc:creator>
    <dc:date>2012-05-14T19:23:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19533">
    <title>Re: Stubs and contract tests</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19533</link>
    <description>&lt;pre&gt;On Fri, May 11, 2012 at 9:24 AM, Alexandre de Oliveira &amp;lt;
chavedomundo-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:


See https://github.com/rspec/rspec-mocks/issues/15
&lt;/pre&gt;</description>
    <dc:creator>David Chelimsky</dc:creator>
    <dc:date>2012-05-11T16:48:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19532">
    <title>Stubs and contract tests</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19532</link>
    <description>&lt;pre&gt;Hey guys, could you help me (in)validating an idea?

As you might know, Contract tests solve a problem stubs have: if the object
interface changes, the stubbed tests will continue passing.

In RSpec, it's common to use a shared_context to describe contracts, so
both Posts and Comments tests would have PostsCommentsContract. If
Comment's interface ever changed, Posts tests would present a failure
wherever we ran it. However, it won't tell us which stubbed methods were
invalid now; it just tell us the file that have invalid stubs.

If we had, for example, #stub_contract(:method), automatically raising
a failure if its reference (double) object's interface changed, how would
it be bad?

I'm trying to think the cons of it. Could you guys help me finding it?

--Alexandre
&lt;/pre&gt;</description>
    <dc:creator>Alexandre de Oliveira</dc:creator>
    <dc:date>2012-05-11T14:24:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19531">
    <title>Re: how do I test for a status code in a :js =&gt; truetest?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19531</link>
    <description>&lt;pre&gt;On Wed, May 9, 2012 at 11:14 PM, Patrick J. Collins
&amp;lt;patrick-nwXFkk9SH4z0FiqB0faro5qQE7yCjDx5&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

Not sure. I'd post this to the Capybara list.
&lt;/pre&gt;</description>
    <dc:creator>David Chelimsky</dc:creator>
    <dc:date>2012-05-10T11:45:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19530">
    <title>how do I test for a status code in a :js =&gt; true test?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19530</link>
    <description>&lt;pre&gt;I have a view with some javascript that does page redirection, and I
wanted to confirm that under certain circumstances the user will get a
500 error from CanCan::AccessDenied.

It seems that when I am not using :js =&amp;gt; true, I can do:

page.status_code.shoud be 500

but.. when I try that in a :js =&amp;gt; true example group, I get:
Capybara::NotSupportedByDriverError: Capybara::NotSupportedByDriverError

also the request and response objects are nil in the context of this
test...  My dirty workaround has just been to do:

page.has_content "CanCan::AccessDenied"

Which serves my purposes, but I was hoping for a better way...  Any
ideas?

Thank you.

Patrick J. Collins
http://collinatorstudios.com

&lt;/pre&gt;</description>
    <dc:creator>Patrick J. Collins</dc:creator>
    <dc:date>2012-05-10T04:14:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19529">
    <title>Re: is there a way to turn on :js =&gt; true in the middle of a spec?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.rspec.user/19529</link>
    <description>&lt;pre&gt;On Wed, May 9, 2012 at 3:09 PM, Patrick J. Collins
&amp;lt;patrick-nwXFkk9SH4z0FiqB0faro5qQE7yCjDx5&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

iiuc, browser is the issue, not headless. The login
token/cookie/whatever needs to be stored in the client so it can
identify itself to the server. What your proposing switches the
client.
&lt;/pre&gt;</description>
    <dc:creator>David Chelimsky</dc:creator>
    <dc:date>2012-05-09T20:44:25</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.ruby.rspec.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.ruby.rspec.user</link>
  </textinput>
</rdf:RDF>

