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.
- data/History.txt +4 -0
- data/README.txt +8 -0
- data/Rakefile +1 -1
- data/lib/rack_datamapper/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +5 -2
data/History.txt
CHANGED
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
|
|
data/spec/spec_helper.rb
CHANGED
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.
|
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:
|
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
|