og 0.9.3 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
data/lib/og/meta.rb CHANGED
@@ -315,6 +315,14 @@ module MetaLanguage
315
315
  }
316
316
  end
317
317
 
318
+ # Declares that this class can join with another class.
319
+ # The join parameters are given so the join-compatible
320
+ # methods are generated.
321
+
322
+ def joins(klass, options = {})
323
+ meta :joins, [klass, options]
324
+ end
325
+
318
326
  end
319
327
 
320
328
  end
data/lib/og/version.rb CHANGED
@@ -5,5 +5,5 @@
5
5
  class Og
6
6
  # The version of Og.
7
7
 
8
- Version = '0.9.3'
8
+ Version = '0.9.5'
9
9
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.4
3
3
  specification_version: 1
4
4
  name: og
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.9.3
7
- date: 2005-02-01
6
+ version: 0.9.5
7
+ date: 2005-02-04
8
8
  summary: Og (ObjectGraph)
9
9
  require_paths:
10
10
  - lib
@@ -64,6 +64,7 @@ files:
64
64
  - lib/og/meta.rb
65
65
  - lib/og/backend.rb
66
66
  - lib/og/backends/mysql.rb
67
+ - lib/og/backends/sqlite.rb
67
68
  - lib/og/backends/psql.rb
68
69
  - lib/og.rb
69
70
  - test/tc_og.rb