composite_primary_keys 0.9.92 → 0.9.93

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.9.93 2008-06-01
2
+
3
+ * set fixed dependency on activerecord 2.0.2
4
+
1
5
  == 0.9.92 2008-02-22
2
6
 
3
7
  * Support for has_and_belongs_to_many
data/Rakefile CHANGED
@@ -52,7 +52,7 @@ hoe = Hoe.new(GEM_NAME, VERS) do |p|
52
52
 
53
53
  # == Optional
54
54
  p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
55
- p.extra_deps = [['activerecord', '>= 2.0.2']] #An array of rubygem dependencies.
55
+ p.extra_deps = [['activerecord', '= 2.0.2']] #An array of rubygem dependencies.
56
56
  #p.spec_extras - A hash of extra values to set in the gemspec.
57
57
  end
58
58
 
@@ -2,7 +2,7 @@ module CompositePrimaryKeys
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 9
5
- TINY = 92
5
+ TINY = 93
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/tmp/test.db CHANGED
Binary file
data/website/index.html CHANGED
@@ -277,7 +277,12 @@ other stories and things.</p>
277
277
  <p>Read the <a href="http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/">8 steps for fixing other people&#8217;s code</a> and for section <a href="http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups">8b: Submit patch to Google Groups</a>, use the Google Group above.</p>
278
278
 
279
279
 
280
- <p>The trunk repository is <code>svn://rubyforge.org/var/svn/compositekeys/trunk</code> for anonymous access.</p>
280
+ <p>The source for this project is available via git. You can <a href="http://github.com/drnic/composite_primary_keys/tree/master">browse and/or fork the source</a>, or to clone the project locally:</p>
281
+
282
+
283
+ <pre>git clone git://github.com/drnic/composite_primary_keys.git</pre>
284
+
285
+ <p>The original Subversion repository is <code>svn://rubyforge.org/var/svn/compositekeys/trunk</code> for anonymous access.</p>
281
286
 
282
287
 
283
288
  <h2>Licence</h2>
@@ -291,7 +296,7 @@ other stories and things.</p>
291
296
 
292
297
  <p>Comments are welcome. Send an email to <a href="mailto:drnicwilliams@gmail.com">Dr Nic Williams</a>.</p>
293
298
  <p class="coda">
294
- <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 25th February 2008<br>
299
+ <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 5th March 2008<br>
295
300
  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
296
301
  </p>
297
302
  </div>
data/website/index.txt CHANGED
@@ -150,7 +150,11 @@ h2. How to submit patches
150
150
  Read the "8 steps for fixing other people's code":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/ and for section "8b: Submit patch to Google Groups":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups, use the Google Group above.
151
151
 
152
152
 
153
- The trunk repository is <code>svn://rubyforge.org/var/svn/compositekeys/trunk</code> for anonymous access.
153
+ The source for this project is available via git. You can "browse and/or fork the source":http://github.com/drnic/composite_primary_keys/tree/master, or to clone the project locally:
154
+
155
+ <pre>git clone git://github.com/drnic/composite_primary_keys.git</pre>
156
+
157
+ The original Subversion repository is <code>svn://rubyforge.org/var/svn/compositekeys/trunk</code> for anonymous access.
154
158
 
155
159
  h2. Licence
156
160
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: composite_primary_keys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.92
4
+ version: 0.9.93
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dr Nic Williams
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-02-25 00:00:00 +10:00
12
+ date: 2008-06-04 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -17,7 +17,7 @@ dependencies:
17
17
  version_requirement:
18
18
  version_requirements: !ruby/object:Gem::Requirement
19
19
  requirements:
20
- - - ">="
20
+ - - "="
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.0.2
23
23
  version:
@@ -180,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
180
  requirements: []
181
181
 
182
182
  rubyforge_project: compositekeys
183
- rubygems_version: 1.0.1
183
+ rubygems_version: 1.1.1
184
184
  signing_key:
185
185
  specification_version: 2
186
186
  summary: Composite key support for ActiveRecords