public
Rubygem
Description: Sphinx plugin for Rails and Merb
Homepage: http://ts.freelancing-gods.com
Clone URL: git://github.com/freelancing-god/thinking-sphinx.git
Click here to lend your support to: thinking-sphinx and make a donation at www.pledgie.com !
Added 'Contributing' section to README explaining how to get not-a-mock and how 
to configure your database to run specs
Xavier Shay (author)
Mon May 19 02:28:18 -0700 2008
freelancing-god (committer)
Fri May 23 22:49:11 -0700 2008
commit  fad37950195e33700a2d3181404102a76e0a5e5b
tree    6ca88ace18ef30c0673f21e65de476fb2cd4086b
parent  bea01e9888c49b2adb876a55392ec6d369cbead5
0
...
4
5
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
8
9
...
22
23
24
25
26
 
 
27
...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
...
42
43
44
 
45
46
47
48
0
@@ -4,6 +4,26 @@
0
 
0
 First, if you haven't done so already, check out the main usage[http://ts.freelancing-gods.com/usage.html] page. Once you've done that, the next place to look for information is the specific method docs - ThinkingSphinx::Search and ThinkingSphinx::Index::Builder in particular.
0
 
0
+== Contributing
0
+
0
+Fork on GitHub and after you've committed tested patches, send a pull request.
0
+
0
+To get the spec suite running, you will need to install the not-a-mock gem if you don't already have it:
0
+
0
+  git clone git://github.com/freelancing-god/not-a-mock.git
0
+  cd not-a-mock
0
+  rake gem
0
+  gem install pkg/not_a_mock-1.1.0.gem
0
+
0
+Then set up your database
0
+
0
+  cp spec/fixtures/database.yml.default spec/fixtures/database.yml
0
+  mysqladmin -u root create thinking_sphinx
0
+
0
+You should now have a passing test suite from which to build your patch on.
0
+
0
+  rake spec
0
+
0
 == Contributors
0
 
0
 Since I first released this library, there's been quite a few people who have submitted patches, to my immense gratitude. Others have suggested syntax changes and general improvements. So my thanks to the following people:
0
@@ -22,4 +42,5 @@ Since I first released this library, there's been quite a few people who have su
0
 - Patrick Lenz
0
 - Björn Andreasson
0
 - James Healy
0
-- Jae-Jun Hwang
0
\ No newline at end of file
0
+- Jae-Jun Hwang
0
+- Xavier Shay
0
\ No newline at end of file

Comments