friendly 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +0 -3
- data/README.md +1 -1
- data/VERSION +1 -1
- data/friendly.gemspec +1 -1
- data/lib/friendly.rb +1 -0
- data/website/index.html +2 -2
- metadata +1 -1
data/.document
CHANGED
data/README.md
CHANGED
@@ -65,7 +65,7 @@ To support richer queries, Friendly maintains its own indexes in separate tables
|
|
65
65
|
CREATE TABLE index_users_on_name (
|
66
66
|
name varchar(256) NOT NULL,
|
67
67
|
id binary(16) NOT NULL,
|
68
|
-
PRIMARY KEY (
|
68
|
+
PRIMARY KEY (name, id)
|
69
69
|
UNIQUE KEY unique_index_on_id (id)
|
70
70
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|
71
71
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.4
|
data/friendly.gemspec
CHANGED
data/lib/friendly.rb
CHANGED
data/website/index.html
CHANGED
@@ -45,7 +45,7 @@
|
|
45
45
|
<div class="box">
|
46
46
|
<ul class="box">
|
47
47
|
<li><span class="label small quiet">repo:</span> <a href="http://github.com/jamesgolick/friendly">Github</a></li>
|
48
|
-
<li><span class="label small quiet">docs:</span> <a href="http://
|
48
|
+
<li><span class="label small quiet">docs:</span> <a href="http://yardoc.org/docs/jamesgolick-friendly">Yardoc.org</a></li>
|
49
49
|
<li><span class="label small quiet">blog:</span> <a href="http://jamesgolick.com/2009/12/16/introducing-friendly-nosql-with-mysql-in-ruby.html">Announcement</a></li>
|
50
50
|
<li><span class="label small quiet">list:</span> <a href="mailto: friendly@librelist.com">Librelist</a></li>
|
51
51
|
<li><span class="label small quiet">irc:</span> #friendlyorm <span class="small quiet">(freenode)</li>
|
@@ -176,7 +176,7 @@
|
|
176
176
|
<li><a href="http://github.com/jamesgolick/friendly">GitHub Repository</a></li>
|
177
177
|
<li><a href="http://github.com/jamesgolick/friendly#readme">README</a></li>
|
178
178
|
<li><a href="mailto: friendly@librelist.com">Mailing List</a></li>
|
179
|
-
<li><a href="http://
|
179
|
+
<li><a href="http://yardoc.org/docs/jamesgolick-friendly">Documentation</a></li>
|
180
180
|
<li><a href="http://jamesgolick.com/2009/12/16/introducing-friendly-nosql-with-mysql-in-ruby.html">Release Announcement</a></li>
|
181
181
|
</ul>
|
182
182
|
</div>
|