rack-datamapper 0.2.3 → 0.2.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/Rakefile CHANGED
@@ -9,9 +9,10 @@ require 'spec/rake/spectask'
9
9
  require 'pathname'
10
10
  require 'yard'
11
11
 
12
- Hoe.new('rack-datamapper', Rack::DataMapper::VERSION) do |p|
12
+ Hoe.spec('rack-datamapper') do |p|
13
13
  p.developer('mkristian', 'm.kristian@web.de')
14
- p.extra_deps = ['dm-core']
14
+ p.extra_deps = [['dm-core', '>0.9.10']]
15
+ p.rspec_options << '--options' << 'spec/spec.opts'
15
16
  end
16
17
 
17
18
  desc 'Install the package as a gem.'
@@ -20,14 +21,6 @@ task :install => [:clean, :package] do
20
21
  sh "gem install --local #{gem} --no-ri --no-rdoc"
21
22
  end
22
23
 
23
- desc 'Run specifications'
24
- Spec::Rake::SpecTask.new(:spec) do |t|
25
- if File.exists?('spec/spec.opts')
26
- t.spec_opts << '--options' << 'spec/spec.opts'
27
- end
28
- t.spec_files = Pathname.glob('./spec/**/*_spec.rb')
29
- end
30
-
31
24
  YARD::Rake::YardocTask.new
32
25
 
33
26
  # vim: syntax=Ruby
@@ -1,5 +1,5 @@
1
1
  require 'dm-core'
2
-
2
+ require 'base64'
3
3
  module DataMapper
4
4
  module Session
5
5
  module Abstract
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  module DataMapper
3
- VERSION = '0.2.3'.freeze
3
+ VERSION = '0.2.4'.freeze
4
4
  end
5
5
  end
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.3
4
+ version: 0.2.4
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-10-08 00:00:00 +05:30
12
+ date: 2009-10-29 00:00:00 +05:30
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -18,9 +18,9 @@ dependencies:
18
18
  version_requirement:
19
19
  version_requirements: !ruby/object:Gem::Requirement
20
20
  requirements:
21
- - - ">="
21
+ - - ">"
22
22
  - !ruby/object:Gem::Version
23
- version: "0"
23
+ version: 0.9.10
24
24
  version:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: hoe
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 1.8.3
33
+ version: 2.3.3
34
34
  version:
35
35
  description: 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.
36
36
  email: