active_scaffold_generator 0.1.0

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 Tyler Rick
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,22 @@
1
+ = active_scaffold_generator
2
+
3
+ This generator creates a controller with the given name and adds an active_scaffold declaration inside of it, listing all column names and association names, so that you can quickly start customizing it (reordering or removing columns, for example).
4
+
5
+ It also generates a route to the controller it just created.
6
+
7
+ Example:
8
+ ./script/generate active_scaffold admin/tables/orders
9
+
10
+ == Note on Patches/Pull Requests
11
+
12
+ * Fork the project.
13
+ * Make your feature addition or bug fix.
14
+ * Add tests for it. This is important so I don't break it in a
15
+ future version unintentionally.
16
+ * Commit, do not mess with rakefile, version, or history.
17
+ (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)
18
+ * Send me a pull request. Bonus points for topic branches.
19
+
20
+ == Copyright
21
+
22
+ Copyright (c) 2010 Tyler Rick. 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 = "active_scaffold_generator"
8
+ gem.summary = %Q{Generate new active_scaffold controllers with ease}
9
+ gem.description = %Q{This generator creates a controller with the given name and adds an active_scaffold declaration inside of it, listing all column names and association names, so that you can quickly start customizing it (reordering or removing columns, for example).}
10
+ gem.email = "github.com@tylerrick.com"
11
+ gem.homepage = "http://github.com/TylerRick/active_scaffold_generator"
12
+ gem.authors = ["Tyler Rick"]
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 = "active_scaffold_generator #{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.0
@@ -0,0 +1,57 @@
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{active_scaffold_generator}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Tyler Rick"]
12
+ s.date = %q{2010-08-13}
13
+ s.description = %q{This generator creates a controller with the given name and adds an active_scaffold declaration inside of it, listing all column names and association names, so that you can quickly start customizing it (reordering or removing columns, for example).}
14
+ s.email = %q{github.com@tylerrick.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
+ "active_scaffold_generator.gemspec",
27
+ "lib/active_scaffold_generator.rb",
28
+ "lib/generators/active_scaffold/USAGE",
29
+ "lib/generators/active_scaffold/active_scaffold_generator.rb",
30
+ "lib/generators/active_scaffold/templates/active_scaffold_controller.rb",
31
+ "test/helper.rb",
32
+ "test/test_active_scaffold_generator.rb"
33
+ ]
34
+ s.homepage = %q{http://github.com/TylerRick/active_scaffold_generator}
35
+ s.rdoc_options = ["--charset=UTF-8"]
36
+ s.require_paths = ["lib"]
37
+ s.rubygems_version = %q{1.3.7}
38
+ s.summary = %q{Generate new active_scaffold controllers with ease}
39
+ s.test_files = [
40
+ "test/test_active_scaffold_generator.rb",
41
+ "test/helper.rb"
42
+ ]
43
+
44
+ if s.respond_to? :specification_version then
45
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
46
+ s.specification_version = 3
47
+
48
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
49
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
50
+ else
51
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
52
+ end
53
+ else
54
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
55
+ end
56
+ end
57
+
File without changes
@@ -0,0 +1,7 @@
1
+ Description:
2
+ This generator creates a controller with the given name and adds an active_scaffold declaration inside of it, listing all column names and association names, so that you can quickly start customizing it (reordering or removing columns, for example).
3
+
4
+ It also generates a route to the controller it just created.
5
+
6
+ Example:
7
+ ./script/generate active_scaffold admin/tables/orders
@@ -0,0 +1,75 @@
1
+ require 'pp'
2
+ require 'facets/string/indent'
3
+
4
+ module Rails
5
+ module Generator
6
+ module Commands
7
+ class Base
8
+ # Based in part on http://stackoverflow.com/questions/956723/generating-nested-routes-in-a-custom-generator
9
+ def route_namespaced_resources(namespace, resources, options)
10
+ namespaces = namespace.split('/')
11
+ resource_list = resources.map { |r| r.to_sym.inspect }.join(', ')
12
+ sentinel = 'ActionController::Routing::Routes.draw do |map|'
13
+ logger.route "#{namespace}.resources #{resource_list}"
14
+ unless options[:pretend]
15
+ gsub_file 'config/routes.rb', /(#{Regexp.escape(sentinel)})/mi do |match|
16
+ "#{match}\n" +
17
+ route_namespace_string('map', namespaces, 1) do |namespace, _namespaces, depth|
18
+ "#{namespace}.resources #{resource_list}#{", #{options.inspect}" if options.any?}\n".indent(depth*2)
19
+ end
20
+ end
21
+ end
22
+ end
23
+
24
+ private
25
+ def route_namespace_string(outer_namespace, namespaces, depth, &block)
26
+ namespace = namespaces.shift
27
+ "#{outer_namespace}.namespace(:#{namespace}) do |#{namespace}|\n".indent(depth*2) +
28
+ if namespaces.any?
29
+ route_namespace_string(namespace, namespaces, depth+1, &block)
30
+ else
31
+ yield(namespace, namespaces, depth+1)
32
+ end +
33
+ "end\n".indent(depth*2)
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
39
+
40
+
41
+ class ActiveScaffoldGenerator < Rails::Generator::NamedBase
42
+ attr_reader :controller_superclass, :model
43
+ attr_reader :column_names
44
+
45
+ def manifest
46
+ @controller_superclass = Admin::BaseController
47
+ @model = class_name.gsub(/(\w+::)*/, '').singularize.constantize
48
+
49
+ column_names = @model.column_names.map(&:to_sym)
50
+ association_names = @model.reflections.keys.map(&:to_sym)
51
+ @column_names = column_names + association_names
52
+ # Move some columns to the end, including all timestamps
53
+ [:created_at, :updated_at].each do |column_name|
54
+ if @column_names.delete column_name
55
+ @column_names << column_name
56
+ end
57
+ end
58
+ @column_names.dup.each do |column_name|
59
+ if column_name.to_s =~ /_at$|_on$/ and @column_names.delete column_name
60
+ @column_names << column_name
61
+ end
62
+ end
63
+
64
+ namespace = class_name.underscore[ 0...(class_name.underscore.rindex( '/' ) || 0)]
65
+
66
+ record do |m|
67
+ m.template 'active_scaffold_controller.rb',
68
+ File.join('app/controllers',
69
+ class_path,
70
+ "#{file_name}_controller.rb")
71
+
72
+ m.route_namespaced_resources namespace, [@model.name.pluralize.underscore], :active_scaffold => true
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,11 @@
1
+ class <%= class_name %>Controller < <%= controller_superclass %>
2
+ active_scaffold do |config|
3
+ config.columns = [
4
+ <%=
5
+ (column_names).map(&:inspect).join(', ')
6
+ %>
7
+ ]
8
+ config.create.columns.exclude :id
9
+ config.update.columns.exclude :id
10
+ end
11
+ end
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 'active_scaffold_generator'
8
+
9
+ class Test::Unit::TestCase
10
+ end
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestActiveScaffoldGenerator < 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,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: active_scaffold_generator
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
10
+ platform: ruby
11
+ authors:
12
+ - Tyler Rick
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-08-13 00:00:00 -07:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: thoughtbot-shoulda
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 0
30
+ version: "0"
31
+ type: :development
32
+ version_requirements: *id001
33
+ description: This generator creates a controller with the given name and adds an active_scaffold declaration inside of it, listing all column names and association names, so that you can quickly start customizing it (reordering or removing columns, for example).
34
+ email: github.com@tylerrick.com
35
+ executables: []
36
+
37
+ extensions: []
38
+
39
+ extra_rdoc_files:
40
+ - LICENSE
41
+ - README.rdoc
42
+ files:
43
+ - .document
44
+ - .gitignore
45
+ - LICENSE
46
+ - README.rdoc
47
+ - Rakefile
48
+ - VERSION
49
+ - active_scaffold_generator.gemspec
50
+ - lib/active_scaffold_generator.rb
51
+ - lib/generators/active_scaffold/USAGE
52
+ - lib/generators/active_scaffold/active_scaffold_generator.rb
53
+ - lib/generators/active_scaffold/templates/active_scaffold_controller.rb
54
+ - test/helper.rb
55
+ - test/test_active_scaffold_generator.rb
56
+ has_rdoc: true
57
+ homepage: http://github.com/TylerRick/active_scaffold_generator
58
+ licenses: []
59
+
60
+ post_install_message:
61
+ rdoc_options:
62
+ - --charset=UTF-8
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ segments:
71
+ - 0
72
+ version: "0"
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ segments:
79
+ - 0
80
+ version: "0"
81
+ requirements: []
82
+
83
+ rubyforge_project:
84
+ rubygems_version: 1.3.7
85
+ signing_key:
86
+ specification_version: 3
87
+ summary: Generate new active_scaffold controllers with ease
88
+ test_files:
89
+ - test/test_active_scaffold_generator.rb
90
+ - test/helper.rb