friendly 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.document CHANGED
@@ -1,5 +1,2 @@
1
1
  README.rdoc
2
2
  lib/**/*.rb
3
- bin/*
4
- features/**/*.feature
5
- LICENSE
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 (undelivered,actor_id,created_at,id)
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.3
1
+ 0.3.4
data/friendly.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{friendly}
8
- s.version = "0.3.3"
8
+ s.version = "0.3.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["James Golick"]
data/lib/friendly.rb CHANGED
@@ -15,6 +15,7 @@ require 'friendly/storage_proxy'
15
15
  require 'friendly/translator'
16
16
  require 'friendly/uuid'
17
17
 
18
+ require 'json/pure'
18
19
  require 'will_paginate/collection'
19
20
 
20
21
  module Friendly
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://rdoc.info/jamesgolick/friendly">RDoc.info</a></li>
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://rdoc.info/jamesgolick/friendly">Documentation</a></li>
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>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: friendly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Golick