acts_as_arter_flow_object 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +56 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/acts_as_arter_flow_object.gemspec +56 -0
- data/generators/acts_as_arter_flow_object/USAGE +8 -0
- data/generators/acts_as_arter_flow_object/acts_as_arter_flow_object_generator.rb +41 -0
- data/generators/acts_as_arter_flow_object/templates/migration.rb +17 -0
- data/lib/acts_as_arter_flow_object.rb +5 -0
- data/lib/afo/acts_as_afo.rb +47 -0
- data/lib/afo/arter_flow_object.rb +13 -0
- data/test/helper.rb +10 -0
- data/test/test_acts_as_arter_flow_object.rb +7 -0
- metadata +78 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 tim.teng
|
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,56 @@
|
|
1
|
+
= acts_as_arter_flow_object
|
2
|
+
|
3
|
+
= Scenario
|
4
|
+
|
5
|
+
In arters view, any character in a game has four process before it's created, desined or not, modeling? mapping? and rigged or not. They need to mark the progress of a character,
|
6
|
+
this gem is a simple recorder to touch and untouch each process. You also can overwrite default four steps. Enjoy.
|
7
|
+
|
8
|
+
|
9
|
+
= Install
|
10
|
+
|
11
|
+
gem install acts_as_arter_flow_object, then in your config/environment.rb add
|
12
|
+
|
13
|
+
config.gem 'acts_as_arter_flow_object', :version => '>=0.1.0'
|
14
|
+
|
15
|
+
= Scaffold
|
16
|
+
|
17
|
+
After configuring gem, we should create a migrate file, run
|
18
|
+
|
19
|
+
script/generate acts_as_arter_flow_object
|
20
|
+
|
21
|
+
This will add a migrate file to your db/migrate directory
|
22
|
+
|
23
|
+
rake db:migrate
|
24
|
+
|
25
|
+
= Models
|
26
|
+
|
27
|
+
in models which you'd like to mark as an arter flow object
|
28
|
+
|
29
|
+
class Foo < AR
|
30
|
+
acts_as_arter_flow_object
|
31
|
+
end
|
32
|
+
|
33
|
+
After Foo create a new instance, there also a new ploymorphic record will be insert into arter_flow_objects table.
|
34
|
+
|
35
|
+
To touch any process for a object:
|
36
|
+
|
37
|
+
foo = Foo.find a_id
|
38
|
+
foo.toggle_design!(some_arter)
|
39
|
+
|
40
|
+
Get a progress status:
|
41
|
+
|
42
|
+
foo.desined? or foo.mapped?, etc
|
43
|
+
|
44
|
+
== Note on Patches/Pull Requests
|
45
|
+
|
46
|
+
* Fork the project.
|
47
|
+
* Make your feature addition or bug fix.
|
48
|
+
* Add tests for it. This is important so I don't break it in a
|
49
|
+
future version unintentionally.
|
50
|
+
* Commit, do not mess with rakefile, version, or history.
|
51
|
+
(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)
|
52
|
+
* Send me a pull request. Bonus points for topic branches.
|
53
|
+
|
54
|
+
== Copyright
|
55
|
+
|
56
|
+
Copyright (c) 2010 tim.teng. 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 = "acts_as_arter_flow_object"
|
8
|
+
gem.summary = %Q{a simple flow marker for game arter in sgf.com}
|
9
|
+
gem.description = %Q{simple progress indicator for game arters }
|
10
|
+
gem.email = "tim.rubist@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/tteng/acts_as_arter_flow_object"
|
12
|
+
gem.authors = ["tim.teng"]
|
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 = "acts_as_arter_flow_object #{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,56 @@
|
|
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{acts_as_arter_flow_object}
|
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 = ["tim.teng"]
|
12
|
+
s.date = %q{2010-04-16}
|
13
|
+
s.description = %q{simple progress indicator for game arters }
|
14
|
+
s.email = %q{tim.rubist@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
|
+
"acts_as_arter_flow_object.gemspec",
|
27
|
+
"generators/acts_as_arter_flow_object/USAGE",
|
28
|
+
"generators/acts_as_arter_flow_object/acts_as_arter_flow_object_generator.rb",
|
29
|
+
"generators/acts_as_arter_flow_object/templates/migration.rb",
|
30
|
+
"lib/acts_as_arter_flow_object.rb",
|
31
|
+
"lib/afo/acts_as_afo.rb",
|
32
|
+
"lib/afo/arter_flow_object.rb",
|
33
|
+
"test/helper.rb",
|
34
|
+
"test/test_acts_as_arter_flow_object.rb"
|
35
|
+
]
|
36
|
+
s.homepage = %q{http://github.com/tteng/acts_as_arter_flow_object}
|
37
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
38
|
+
s.require_paths = ["lib"]
|
39
|
+
s.rubygems_version = %q{1.3.6}
|
40
|
+
s.summary = %q{a simple flow marker for game arter in sgf.com}
|
41
|
+
s.test_files = [
|
42
|
+
"test/helper.rb",
|
43
|
+
"test/test_acts_as_arter_flow_object.rb"
|
44
|
+
]
|
45
|
+
|
46
|
+
if s.respond_to? :specification_version then
|
47
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
48
|
+
s.specification_version = 3
|
49
|
+
|
50
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
51
|
+
else
|
52
|
+
end
|
53
|
+
else
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
@@ -0,0 +1,41 @@
|
|
1
|
+
class ActsAsArterFlowObjectGenerator < Rails::Generator::Base
|
2
|
+
def initialize(runtime_args, runtime_options = {})
|
3
|
+
super
|
4
|
+
end
|
5
|
+
|
6
|
+
def manifest
|
7
|
+
recorded_session = record do |m|
|
8
|
+
unless options[:skip_migration]
|
9
|
+
m.migration_template 'migration.rb', 'db/migrate',
|
10
|
+
:assigns => { :migration_name => "CreateArterFlowObjectsTable" },
|
11
|
+
:migration_file_name => "create_arter_flow_objects_table"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
action = nil
|
16
|
+
action = $0.split("/")[1]
|
17
|
+
case action
|
18
|
+
when "generate"
|
19
|
+
puts
|
20
|
+
puts ("-" * 70)
|
21
|
+
puts "Success!"
|
22
|
+
puts
|
23
|
+
puts "Dont't Forget to:"
|
24
|
+
puts " - Add the acts_as_arter_flow_object to the model that accepts afo objects"
|
25
|
+
puts
|
26
|
+
unless options[:skip_migration]
|
27
|
+
puts " - Run the migration."
|
28
|
+
puts " rake db:migrate"
|
29
|
+
end
|
30
|
+
puts
|
31
|
+
puts
|
32
|
+
puts ("-" * 70)
|
33
|
+
puts
|
34
|
+
else
|
35
|
+
puts
|
36
|
+
end
|
37
|
+
|
38
|
+
recorded_session
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class <%= migration_name %> < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :arter_flow_objects do |t|
|
4
|
+
t.integer :afoable_id
|
5
|
+
t.string :afoable_type
|
6
|
+
ArterFlowObject::STEPS.each do |step|
|
7
|
+
t.boolean step
|
8
|
+
t.references "#{step}_updater".to_sym
|
9
|
+
end
|
10
|
+
t.timestamps
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.down
|
15
|
+
drop_table :arter_flow_objects
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module ActsAsAFO
|
2
|
+
|
3
|
+
def self.included(base)
|
4
|
+
base.extend ClassMethods
|
5
|
+
end
|
6
|
+
|
7
|
+
module ClassMethods
|
8
|
+
|
9
|
+
def acts_as_arter_flow_object
|
10
|
+
has_one :arter_flow_object, :as => :afoable, :dependent => :destroy
|
11
|
+
include InstanceMethods
|
12
|
+
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
module InstanceMethods
|
18
|
+
|
19
|
+
def after_create
|
20
|
+
super
|
21
|
+
create_arter_flow_objecjt
|
22
|
+
end
|
23
|
+
|
24
|
+
ArterFlowObject::STEPS.each do |s|
|
25
|
+
module_eval <<-EOF
|
26
|
+
def #{s}ed?
|
27
|
+
arter_flow_object.send(:#{s}) rescue false
|
28
|
+
end
|
29
|
+
|
30
|
+
def toggle_#{s}!(usr)
|
31
|
+
raise ActiveRecord::RecordNotFound.new("no corresponding arter flow object record found") unless arter_flow_object
|
32
|
+
arter_flow_object.toggle(:#{s})
|
33
|
+
arter_flow_object.#{s}_updater = usr
|
34
|
+
arter_flow_object.save
|
35
|
+
end
|
36
|
+
EOF
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def create_arter_flow_object
|
42
|
+
arter_flow_object.create
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class ArterFlowObject < ActiveRecord::Base
|
2
|
+
|
3
|
+
belongs_to :afoable, :polymorphic => true
|
4
|
+
|
5
|
+
STEPS = [:design, :model, :map, :rig]
|
6
|
+
|
7
|
+
STEPS.each do |s|
|
8
|
+
self.class_eval <<-EOF
|
9
|
+
belongs_to :#{s}_updater, :class_name => "User", :foreign_key => :#{s}_updater_id
|
10
|
+
EOF
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
data/test/helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: acts_as_arter_flow_object
|
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
|
+
- tim.teng
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-04-16 00:00:00 +08:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: "simple progress indicator for game arters "
|
22
|
+
email: tim.rubist@gmail.com
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions: []
|
26
|
+
|
27
|
+
extra_rdoc_files:
|
28
|
+
- LICENSE
|
29
|
+
- README.rdoc
|
30
|
+
files:
|
31
|
+
- .document
|
32
|
+
- .gitignore
|
33
|
+
- LICENSE
|
34
|
+
- README.rdoc
|
35
|
+
- Rakefile
|
36
|
+
- VERSION
|
37
|
+
- acts_as_arter_flow_object.gemspec
|
38
|
+
- generators/acts_as_arter_flow_object/USAGE
|
39
|
+
- generators/acts_as_arter_flow_object/acts_as_arter_flow_object_generator.rb
|
40
|
+
- generators/acts_as_arter_flow_object/templates/migration.rb
|
41
|
+
- lib/acts_as_arter_flow_object.rb
|
42
|
+
- lib/afo/acts_as_afo.rb
|
43
|
+
- lib/afo/arter_flow_object.rb
|
44
|
+
- test/helper.rb
|
45
|
+
- test/test_acts_as_arter_flow_object.rb
|
46
|
+
has_rdoc: true
|
47
|
+
homepage: http://github.com/tteng/acts_as_arter_flow_object
|
48
|
+
licenses: []
|
49
|
+
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --charset=UTF-8
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
segments:
|
67
|
+
- 0
|
68
|
+
version: "0"
|
69
|
+
requirements: []
|
70
|
+
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 1.3.6
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: a simple flow marker for game arter in sgf.com
|
76
|
+
test_files:
|
77
|
+
- test/helper.rb
|
78
|
+
- test/test_acts_as_arter_flow_object.rb
|