rails_dm_datastore 0.2.12.pre → 0.2.13
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/rails_dm_datastore.gemspec +5 -5
- metadata +11 -14
data/.gitignore
CHANGED
data/Rakefile
CHANGED
@@ -7,8 +7,8 @@ begin
|
|
7
7
|
require 'jeweler'
|
8
8
|
Jeweler::Tasks.new do |gem|
|
9
9
|
gem.name = "rails_dm_datastore"
|
10
|
-
gem.summary = %Q{
|
11
|
-
gem.description = %Q{
|
10
|
+
gem.summary = %Q{Integrate datamapper to Rails for the Google App Engine}
|
11
|
+
gem.description = %Q{This gem patches all of the problems that appear from running Rails with DataMapper on the GAE. The main patches are patching DataMapper so that it does not use the ObjectSpace (The ObjectSpace itself is also patched so that this works seamlessly). Also ActiveView is patched so that all of the partial shortcuts work with DataMapper. In addition, a generate is provided (dd_model) that will produce a DataMapper model. One last note is that this gem depends on a dm-core (and other dm gems), dm-appengein, and rails_appengene so all you need is to require this gem in your gem file and you should get all the other gems you need to make DataMapper work with Rails and the GAE.}
|
12
12
|
gem.email = ["joshsmoore@gmail.com", "woodie@netpress.com"]
|
13
13
|
gem.homepage = "http://github.com/joshsmoore/rails_dm_datastore"
|
14
14
|
gem.authors = ["Josh S Moore", "John Woodell"]
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.13
|
data/rails_dm_datastore.gemspec
CHANGED
@@ -5,12 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rails_dm_datastore}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.13"
|
9
9
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Josh S Moore", "John Woodell"]
|
12
|
-
s.date = %q{2010-
|
13
|
-
s.description = %q{
|
12
|
+
s.date = %q{2010-10-19}
|
13
|
+
s.description = %q{This gem patches all of the problems that appear from running Rails with DataMapper on the GAE. The main patches are patching DataMapper so that it does not use the ObjectSpace (The ObjectSpace itself is also patched so that this works seamlessly). Also ActiveView is patched so that all of the partial shortcuts work with DataMapper. In addition, a generate is provided (dd_model) that will produce a DataMapper model. One last note is that this gem depends on a dm-core (and other dm gems), dm-appengein, and rails_appengene so all you need is to require this gem in your gem file and you should get all the other gems you need to make DataMapper work with Rails and the GAE.}
|
14
14
|
s.email = ["joshsmoore@gmail.com", "woodie@netpress.com"]
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
@@ -41,7 +41,7 @@ Gem::Specification.new do |s|
|
|
41
41
|
s.rdoc_options = ["--charset=UTF-8"]
|
42
42
|
s.require_paths = ["lib"]
|
43
43
|
s.rubygems_version = %q{1.3.7}
|
44
|
-
s.summary = %q{
|
44
|
+
s.summary = %q{Integrate datamapper to Rails for the Google App Engine}
|
45
45
|
s.test_files = [
|
46
46
|
"test/helper.rb",
|
47
47
|
"test/test_dm-rails-gae.rb",
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_dm_datastore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 13
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
|
11
|
-
version: 0.2.12.pre
|
9
|
+
- 13
|
10
|
+
version: 0.2.13
|
12
11
|
platform: ruby
|
13
12
|
authors:
|
14
13
|
- Josh S Moore
|
@@ -17,7 +16,7 @@ autorequire:
|
|
17
16
|
bindir: bin
|
18
17
|
cert_chain: []
|
19
18
|
|
20
|
-
date: 2010-
|
19
|
+
date: 2010-10-19 00:00:00 +08:00
|
21
20
|
default_executable:
|
22
21
|
dependencies:
|
23
22
|
- !ruby/object:Gem::Dependency
|
@@ -126,7 +125,7 @@ dependencies:
|
|
126
125
|
version: "0"
|
127
126
|
type: :runtime
|
128
127
|
version_requirements: *id007
|
129
|
-
description:
|
128
|
+
description: This gem patches all of the problems that appear from running Rails with DataMapper on the GAE. The main patches are patching DataMapper so that it does not use the ObjectSpace (The ObjectSpace itself is also patched so that this works seamlessly). Also ActiveView is patched so that all of the partial shortcuts work with DataMapper. In addition, a generate is provided (dd_model) that will produce a DataMapper model. One last note is that this gem depends on a dm-core (and other dm gems), dm-appengein, and rails_appengene so all you need is to require this gem in your gem file and you should get all the other gems you need to make DataMapper work with Rails and the GAE.
|
130
129
|
email:
|
131
130
|
- joshsmoore@gmail.com
|
132
131
|
- woodie@netpress.com
|
@@ -178,21 +177,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
178
177
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
179
178
|
none: false
|
180
179
|
requirements:
|
181
|
-
- - "
|
180
|
+
- - ">="
|
182
181
|
- !ruby/object:Gem::Version
|
183
|
-
hash:
|
182
|
+
hash: 3
|
184
183
|
segments:
|
185
|
-
-
|
186
|
-
|
187
|
-
- 1
|
188
|
-
version: 1.3.1
|
184
|
+
- 0
|
185
|
+
version: "0"
|
189
186
|
requirements: []
|
190
187
|
|
191
188
|
rubyforge_project:
|
192
189
|
rubygems_version: 1.3.7
|
193
190
|
signing_key:
|
194
191
|
specification_version: 3
|
195
|
-
summary:
|
192
|
+
summary: Integrate datamapper to Rails for the Google App Engine
|
196
193
|
test_files:
|
197
194
|
- test/helper.rb
|
198
195
|
- test/test_dm-rails-gae.rb
|