public
Description: A collection of RSpec matchers to be used with the Ruby on Rails project
Clone URL: git://github.com/joshknowles/rspec-on-rails-matchers.git
Search Repo:
Updated readme to remove google code specific lines


git-svn-id: https://rspec-on-rails-matchers.googlecode.com/svn/trunk@21 
11e6f158-dd3c-0410-a69b-4d739fb74d9d
joshknowles (author)
Sun Mar 02 20:53:53 -0800 2008
commit  f12de29abf0e174500a15c4954711952d2b024a1
tree    a51b5a04efaaa638fca69b6fbb626ea10862ae7b
parent  2766983b60901d2f2073baaac2e1394ac0eb5b09
0
...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
 
19
20
21
22
23
...
109
110
111
112
113
114
115
...
126
127
128
129
 
130
131
132
...
141
142
143
144
 
145
146
147
148
149
...
161
162
163
164
 
165
166
167
 
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
...
4
5
6
 
 
 
 
 
 
 
 
7
8
9
 
10
11
12
 
13
14
15
...
101
102
103
 
104
105
106
...
117
118
119
 
120
121
122
123
...
132
133
134
 
135
136
137
138
139
140
...
152
153
154
 
155
156
157
 
158
159
160
161
162
163
164
 
 
 
 
 
 
 
 
 
165
166
167
0
@@ -4,20 +4,12 @@
0
 Setup
0
 ------
0
 
0
- script/plugin install http://rspec-on-rails-matchers.googlecode.com/svn/trunk/
0
-or
0
- svn checkout http://rspec-on-rails-matchers.googlecode.com/svn/trunk/ vendor/plugins/rspec_on_rails_matchers
0
-
0
-Textmate bundle:
0
-http://rspec-on-rails-matchers.googlecode.com/svn/textmate-bundle/RSpecOnRailsMatchers.tmbundle.zip
0
-
0
-
0
 Dependencies:
0
 -------------
0
 
0
-RSpec, RSpec_on_rails: http://rspec.info/documentation/rails/install.html
0
+ * rspec
0
+ * rspec_on_rails
0
 
0
-
0
 Overview
0
 --------
0
 
0
@@ -109,7 +101,6 @@
0
       with_link_to(url_or_path, "optional_text")
0
       TM snippet: [wlt + tab]
0
 
0
-
0
 Usage:
0
 ------
0
 
0
@@ -126,7 +117,7 @@
0
           with_submit_button
0
         end
0
     end
0
-
0
+
0
 In your model spec:
0
 
0
     describe User do
0
@@ -141,7 +132,7 @@
0
       it "should belong to a group" do
0
         @user.should belong_to(:group)
0
       end
0
-
0
+
0
       it do
0
         @user.should validate_presence_of(:email)
0
       end
0
0
0
@@ -161,25 +152,16 @@
0
       it do
0
         @user.should validate_presence_of(:name)
0
       end
0
-
0
+
0
       it do
0
         @user.should validate_length_of(:password, :between => 4..40)
0
- end
0
+ end
0
 
0
       it do
0
         @user.should validate_confirmation_of(:password)
0
       end
0
 
0
     end
0
-
0
-
0
-Bugs, feature requests?
0
------------------------
0
-
0
-Bug tracker: http://code.google.com/p/rspec-on-rails-matchers/issues/list
0
-
0
-More info: http://code.google.com/p/rspec-on-rails-matchers
0
-
0
 
0
 Core Contributors
0
 -----------------
0
...
1
2
3
4
 
...
1
2
3
 
4
0
@@ -1,5 +1,5 @@
0
 To Do
0
 =====
0
 
0
-* Write the To Do ;-)
0
+* Update README to include instructions on installing from github

Comments

    No one has commented yet.