rails_dm_datastore 0.1.1

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/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 joshsmoore
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,17 @@
1
+ = dm-rails-gae
2
+
3
+ Description goes here.
4
+
5
+ == Note on Patches/Pull Requests
6
+
7
+ * Fork the project.
8
+ * Make your feature addition or bug fix.
9
+ * Add tests for it. This is important so I don't break it in a
10
+ future version unintentionally.
11
+ * Commit, do not mess with rakefile, version, or history.
12
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
13
+ * Send me a pull request. Bonus points for topic branches.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2009 joshsmoore. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "rails_dm_datastore"
8
+ gem.summary = %Q{Generators for dm on gae}
9
+ gem.description = %Q{Integrate datamapper to rails3 for the Google App Engine}
10
+ gem.email = "joshsmoore@gmail.com"
11
+ gem.homepage = "http://github.com/joshsmoore/dm-rails-gae"
12
+ gem.authors = ["joshsmoore"]
13
+ gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
14
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'rake/testtask'
22
+ Rake::TestTask.new(:test) do |test|
23
+ test.libs << 'lib' << 'test'
24
+ test.pattern = 'test/**/test_*.rb'
25
+ test.verbose = true
26
+ end
27
+
28
+ begin
29
+ require 'rcov/rcovtask'
30
+ Rcov::RcovTask.new do |test|
31
+ test.libs << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+ rescue LoadError
36
+ task :rcov do
37
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
38
+ end
39
+ end
40
+
41
+ task :test => :check_dependencies
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "dm-rails-gae #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
@@ -0,0 +1,62 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{dm-rails-gae}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["joshsmoore"]
12
+ s.date = %q{2010-01-08}
13
+ s.description = %q{Integrate datamapper to rails3 for the Google App Engine}
14
+ s.email = %q{joshsmoore@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "dm-rails-gae.gemspec",
27
+ "generators/dm_model/dm_model_generator.rb",
28
+ "generators/dm_model/templates/model.rb",
29
+ "generators/dm_model/templates/unit_test.rb",
30
+ "lib/USAGE",
31
+ "lib/dm-rails-gae.rb",
32
+ "lib/generators/data_mapper/USAGE",
33
+ "lib/generators/data_mapper/model/model_generator.rb",
34
+ "lib/generators/data_mapper/model/templates/model.rb",
35
+ "lib/generators/data_mapper/templates/model.rb",
36
+ "test/helper.rb",
37
+ "test/test_dm-rails-gae.rb"
38
+ ]
39
+ s.homepage = %q{http://github.com/joshsmoore/dm-rails-gae}
40
+ s.rdoc_options = ["--charset=UTF-8"]
41
+ s.require_paths = ["lib"]
42
+ s.rubygems_version = %q{1.3.5}
43
+ s.summary = %q{Generators for dm on gae}
44
+ s.test_files = [
45
+ "test/helper.rb",
46
+ "test/test_dm-rails-gae.rb"
47
+ ]
48
+
49
+ if s.respond_to? :specification_version then
50
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
51
+ s.specification_version = 3
52
+
53
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
54
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
55
+ else
56
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
57
+ end
58
+ else
59
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
60
+ end
61
+ end
62
+
@@ -0,0 +1,24 @@
1
+ require 'rails_generator/generators/components/model/model_generator'
2
+ require 'active_record'
3
+ require 'dm-core'
4
+
5
+ class DmModelGenerator < ModelGenerator
6
+
7
+ def manifest
8
+ record do |m|
9
+
10
+ # Check for class naming collisions.
11
+ m.class_collisions class_path, class_name, "#{class_name}Test"
12
+
13
+ # Model, test, and fixture directories.
14
+ m.directory File.join('app/models', class_path)
15
+ m.directory File.join('test/unit', class_path)
16
+
17
+ # Model class, unit test, and fixtures.
18
+ m.template 'model.rb', File.join('app/models', class_path, "#{file_name}.rb")
19
+ m.template 'unit_test.rb', File.join('test/unit', class_path, "#{file_name}_test.rb")
20
+
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,25 @@
1
+ <% max = min = 10 -%>
2
+ <% Array(attributes).each do |attribute|
3
+ max = attribute.name.size if max < attribute.name.size
4
+ min = attribute.name.size if min > attribute.name.size
5
+
6
+ Array(DataMapper::Property::PRIMITIVES).collect{|i| i.to_s}|DataMapper::Types.constants
7
+ unless (Array(DataMapper::Property::PRIMITIVES).collect{|i| i.to_s}|DataMapper::Types.constants).include? attribute.type.to_s
8
+ raise "unknown property type '#{attribute.type}'"
9
+ end
10
+
11
+ max += 1
12
+ end
13
+ -%>
14
+ class <%= class_name %>
15
+ include DataMapper::Resource
16
+
17
+ property :id,<%= " " * (max - 2) %>Serial
18
+ <% Array(attributes).each do |attribute| -%>
19
+ property :<%= attribute.name %>,<%= " " * (max - attribute.name.size) %><%= attribute.type %>
20
+ <% end -%>
21
+ <% unless options[:skip_timestamps] -%>
22
+ property :created_at, <%= " " * (max - 11) %>DateTime
23
+ property :updated_at, <%= " " * (max - 11) %>DateTime
24
+ <% end -%>
25
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class <%= class_name %>Test < ActiveSupport::TestCase
4
+ # Replace this with your real tests.
5
+ def test_truth
6
+ assert true
7
+ end
8
+ end
data/lib/USAGE ADDED
@@ -0,0 +1,8 @@
1
+ Description:
2
+ Explain the generator
3
+
4
+ Example:
5
+ ./script/generate data_mapper Thing
6
+
7
+ This will create:
8
+ what/will/it/create
@@ -0,0 +1,16 @@
1
+ # patch for -- dm-core 0.10.2 & rails 2.3.5
2
+
3
+ module DataMapper
4
+ module Resource
5
+ # avoid object references in URLs
6
+ def to_param; id.to_s; end
7
+ # silence deprecation warnings
8
+ def new_record?; new?; end
9
+ def update_attributes(*args); update(*args); end
10
+ end
11
+ end
12
+ # DataMapper::Validate
13
+ class Dictionary; alias count length; end
14
+
15
+ # TODO: still need to fix this TypeError
16
+ # compared with non class/module
@@ -0,0 +1,8 @@
1
+ Description:
2
+ Explain the generator
3
+
4
+ Example:
5
+ ./script/generate data_mapper Thing
6
+
7
+ This will create:
8
+ what/will/it/create
@@ -0,0 +1,38 @@
1
+ #require 'data_mapper/data_mapper_generator'
2
+ require 'rails/generators/named_base'
3
+
4
+ module DataMapper
5
+ module Generators
6
+ class ModelGenerator < Rails::Generators::NamedBase #DataMapperGenerator
7
+ argument :attributes, :type => :array, :default => [], :banner => "field:type field:type"
8
+
9
+ check_class_collision
10
+
11
+ #class_option :migration, :type => :boolean
12
+ class_option :timestamps, :type => :boolean
13
+ #class_option :parent, :type => :string, :desc => "The parent class for the generated model"
14
+
15
+ #def create_migration_file
16
+ # return unless options[:migration] && options[:parent].nil?
17
+ # migration_template "migration.rb", "db/migrate/create_#{table_name}.rb"
18
+ #end
19
+
20
+ def create_model_file
21
+ puts "I am creating a datamapper model"
22
+ template 'model.rb', File.join('app/models', class_path, "#{file_name}.rb")
23
+ end
24
+
25
+ #hook_for :test_framework
26
+
27
+ #protected
28
+
29
+ #def parent_class_name
30
+ # options[:parent] || "ActiveRecord::Base"
31
+ #end
32
+ def self.source_root
33
+ puts File.expand_path('../templates', __FILE__)
34
+ @source_root ||= File.expand_path('../templates', __FILE__)
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,8 @@
1
+ class <%= class_name %>
2
+ include DataMapper::Resource
3
+
4
+ property :id, Serial
5
+ <% for attribute in attributes -%>
6
+ property :<%= attribute.name %>, <%= attribute.type %>
7
+ <% end -%>
8
+ end
@@ -0,0 +1,8 @@
1
+ class <%= class_name %>
2
+ include DataMapper::Resource
3
+
4
+ property :id, Serial
5
+ <% for attribute in attributes -%>
6
+ property :<%= attribute.name %>, <%= attribute.type %>
7
+ <% end -%>
8
+ end
@@ -0,0 +1,63 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{rails_dm_datastore}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["joshsmoore"]
12
+ s.date = %q{2010-01-12}
13
+ s.description = %q{Integrate datamapper to rails3 for the Google App Engine}
14
+ s.email = %q{joshsmoore@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "dm-rails-gae.gemspec",
27
+ "generators/dm_model/dm_model_generator.rb",
28
+ "generators/dm_model/templates/model.rb",
29
+ "generators/dm_model/templates/unit_test.rb",
30
+ "lib/USAGE",
31
+ "lib/dm-rails-gae.rb",
32
+ "lib/generators/data_mapper/USAGE",
33
+ "lib/generators/data_mapper/model/model_generator.rb",
34
+ "lib/generators/data_mapper/model/templates/model.rb",
35
+ "lib/generators/data_mapper/templates/model.rb",
36
+ "rails_dm_datastore.gemspec",
37
+ "test/helper.rb",
38
+ "test/test_dm-rails-gae.rb"
39
+ ]
40
+ s.homepage = %q{http://github.com/joshsmoore/dm-rails-gae}
41
+ s.rdoc_options = ["--charset=UTF-8"]
42
+ s.require_paths = ["lib"]
43
+ s.rubygems_version = %q{1.3.5}
44
+ s.summary = %q{Generators for dm on gae}
45
+ s.test_files = [
46
+ "test/helper.rb",
47
+ "test/test_dm-rails-gae.rb"
48
+ ]
49
+
50
+ if s.respond_to? :specification_version then
51
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
52
+ s.specification_version = 3
53
+
54
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
55
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
56
+ else
57
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
58
+ end
59
+ else
60
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
61
+ end
62
+ end
63
+
data/test/helper.rb ADDED
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'dm-rails-gae'
8
+
9
+ class Test::Unit::TestCase
10
+ end
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestDmRailsGae < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_dm_datastore
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - joshsmoore
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-01-12 00:00:00 +08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: thoughtbot-shoulda
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: Integrate datamapper to rails3 for the Google App Engine
26
+ email: joshsmoore@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - .document
36
+ - .gitignore
37
+ - LICENSE
38
+ - README.rdoc
39
+ - Rakefile
40
+ - VERSION
41
+ - dm-rails-gae.gemspec
42
+ - generators/dm_model/dm_model_generator.rb
43
+ - generators/dm_model/templates/model.rb
44
+ - generators/dm_model/templates/unit_test.rb
45
+ - lib/USAGE
46
+ - lib/dm-rails-gae.rb
47
+ - lib/generators/data_mapper/USAGE
48
+ - lib/generators/data_mapper/model/model_generator.rb
49
+ - lib/generators/data_mapper/model/templates/model.rb
50
+ - lib/generators/data_mapper/templates/model.rb
51
+ - rails_dm_datastore.gemspec
52
+ - test/helper.rb
53
+ - test/test_dm-rails-gae.rb
54
+ has_rdoc: true
55
+ homepage: http://github.com/joshsmoore/dm-rails-gae
56
+ licenses: []
57
+
58
+ post_install_message:
59
+ rdoc_options:
60
+ - --charset=UTF-8
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ version:
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: "0"
74
+ version:
75
+ requirements: []
76
+
77
+ rubyforge_project:
78
+ rubygems_version: 1.3.5
79
+ signing_key:
80
+ specification_version: 3
81
+ summary: Generators for dm on gae
82
+ test_files:
83
+ - test/helper.rb
84
+ - test/test_dm-rails-gae.rb