rack-datamapper 0.2.5 → 0.2.6

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.
@@ -1,3 +1,7 @@
1
+ === 0.2.6 / 2010-06-15
2
+
3
+ * just disallow datamapper 1.0.0 which does not work for some parts, use rack_datamapper 0.3.0 gem if you need datamapper 1.0.0
4
+
1
5
  === 0.2.5 / 2009-12-04
2
6
 
3
7
  * restful transaction does commit on status between 200 and 399 now
data/README.txt CHANGED
@@ -8,6 +8,14 @@
8
8
 
9
9
  this collection of plugins helps to add datamapper functionality to Rack. there is a IdentityMaps plugin which wrappes the request and with it all database actions are using that identity map. the transaction related plugin TransactionBoundaries and RestfulTransactions wrappes the request into a transaction. for using datamapper to store session data there is the DatamapperStore.
10
10
 
11
+ === NAMING of the GEM
12
+
13
+ due to some restrictions on rubyforge I could not use the under score in the gem name, so the gem name is
14
+
15
+ rack-datamapper
16
+
17
+ sorry for the confusion this might cause. see also http://gemcutter.org/search?query=rack-datamapper
18
+
11
19
  === DataMapper::Session::Abstract::Store
12
20
 
13
21
  this is actual store class which can be wrapped to be used in a specific environement, i.e. Rack::Session::Datamapper. this store can the same options as the session store from rack, see
data/Rakefile CHANGED
@@ -11,7 +11,7 @@ require 'yard'
11
11
 
12
12
  Hoe.spec('rack-datamapper') do |p|
13
13
  p.developer('mkristian', 'm.kristian@web.de')
14
- p.extra_deps = [['dm-core', '>0.9.10']]
14
+ p.extra_deps = [['dm-core', ['>0.9.10', '<1.0.0']]]
15
15
  p.rspec_options << '--options' << 'spec/spec.opts'
16
16
  end
17
17
 
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  module DataMapper
3
- VERSION = '0.2.5'.freeze
3
+ VERSION = '0.2.6'.freeze
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
1
  require 'pathname'
2
2
  require 'rubygems'
3
- gem 'dm-core', '0.9.10'
3
+ #gem 'dm-core', '0.9.10'
4
4
  $LOAD_PATH << Pathname(__FILE__).dirname.parent.expand_path + 'lib'
5
5
  require 'rack_datamapper'
6
6
  require 'dm-core/version'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-datamapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - mkristian
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-18 00:00:00 +05:30
12
+ date: 2010-06-15 00:00:00 +05:30
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -21,6 +21,9 @@ dependencies:
21
21
  - - ">"
22
22
  - !ruby/object:Gem::Version
23
23
  version: 0.9.10
24
+ - - <
25
+ - !ruby/object:Gem::Version
26
+ version: 1.0.0
24
27
  version:
25
28
  - !ruby/object:Gem::Dependency
26
29
  name: hoe