stonepath 0.0.2

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.
Files changed (54) hide show
  1. data/History.txt +4 -0
  2. data/Manifest.txt +26 -0
  3. data/PostInstall.txt +2 -0
  4. data/README.rdoc +58 -0
  5. data/Rakefile +44 -0
  6. data/VERSION +1 -0
  7. data/lib/stonepath/acl/controller.rb +86 -0
  8. data/lib/stonepath/acl/role.rb +53 -0
  9. data/lib/stonepath/acl/state.rb +20 -0
  10. data/lib/stonepath/acl.rb +3 -0
  11. data/lib/stonepath/config.rb +6 -0
  12. data/lib/stonepath/controller_hooks.rb +11 -0
  13. data/lib/stonepath/extensions/activerecordbase.rb +7 -0
  14. data/lib/stonepath/group.rb +9 -0
  15. data/lib/stonepath/role.rb +9 -0
  16. data/lib/stonepath/task.rb +76 -0
  17. data/lib/stonepath/work_bench.rb +11 -0
  18. data/lib/stonepath/work_item.rb +52 -0
  19. data/lib/stonepath/work_owner.rb +11 -0
  20. data/lib/stonepath.rb +50 -0
  21. data/rails_generators/stonepath/stonepath_audit_table_generator.rb +3 -0
  22. data/rails_generators/stonepath/stonepath_task_generator.rb +3 -0
  23. data/script/console +10 -0
  24. data/script/destroy +14 -0
  25. data/script/generate +14 -0
  26. data/stonepath.gemspec +117 -0
  27. data/test/acl_test.rb +17 -0
  28. data/test/app_root/app/controllers/application_controller.rb +2 -0
  29. data/test/app_root/app/models/assignment.rb +11 -0
  30. data/test/app_root/app/models/case.rb +67 -0
  31. data/test/app_root/app/models/user.rb +10 -0
  32. data/test/app_root/config/boot.rb +114 -0
  33. data/test/app_root/config/database.yml +21 -0
  34. data/test/app_root/config/environment.rb +14 -0
  35. data/test/app_root/config/environments/in_memory.rb +0 -0
  36. data/test/app_root/config/environments/mysql.rb +0 -0
  37. data/test/app_root/config/environments/postgresql.rb +0 -0
  38. data/test/app_root/config/environments/sqlite.rb +0 -0
  39. data/test/app_root/config/environments/sqlite3.rb +0 -0
  40. data/test/app_root/config/routes.rb +4 -0
  41. data/test/app_root/db/migrate/01_create_users.rb +15 -0
  42. data/test/app_root/db/migrate/02_create_assignments.rb +13 -0
  43. data/test/app_root/db/migrate/03_create_cases.rb +15 -0
  44. data/test/app_root/lib/console_with_fixtures.rb +4 -0
  45. data/test/app_root/log/.gitignore +1 -0
  46. data/test/app_root/script/console +9 -0
  47. data/test/fixtures/users.yml +7 -0
  48. data/test/group_test.rb +20 -0
  49. data/test/role_test.rb +20 -0
  50. data/test/stonepath_test.rb +11 -0
  51. data/test/test_helper.rb +31 -0
  52. data/test/workitem_test.rb +11 -0
  53. data/test/workowner_test.rb +25 -0
  54. metadata +138 -0
metadata ADDED
@@ -0,0 +1,138 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stonepath
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - David Bock
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-17 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activerecord
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.0.0
24
+ version:
25
+ description: Stateful workflow modeling for Rails
26
+ email: dbock@codesherpas.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - README.rdoc
33
+ files:
34
+ - History.txt
35
+ - Manifest.txt
36
+ - PostInstall.txt
37
+ - README.rdoc
38
+ - Rakefile
39
+ - VERSION
40
+ - lib/stonepath.rb
41
+ - lib/stonepath/acl.rb
42
+ - lib/stonepath/acl/controller.rb
43
+ - lib/stonepath/acl/role.rb
44
+ - lib/stonepath/acl/state.rb
45
+ - lib/stonepath/config.rb
46
+ - lib/stonepath/controller_hooks.rb
47
+ - lib/stonepath/extensions/activerecordbase.rb
48
+ - lib/stonepath/group.rb
49
+ - lib/stonepath/role.rb
50
+ - lib/stonepath/task.rb
51
+ - lib/stonepath/work_bench.rb
52
+ - lib/stonepath/work_item.rb
53
+ - lib/stonepath/work_owner.rb
54
+ - rails_generators/stonepath/stonepath_audit_table_generator.rb
55
+ - rails_generators/stonepath/stonepath_task_generator.rb
56
+ - script/console
57
+ - script/destroy
58
+ - script/generate
59
+ - stonepath.gemspec
60
+ - test/acl_test.rb
61
+ - test/app_root/app/controllers/application_controller.rb
62
+ - test/app_root/app/models/assignment.rb
63
+ - test/app_root/app/models/case.rb
64
+ - test/app_root/app/models/user.rb
65
+ - test/app_root/config/boot.rb
66
+ - test/app_root/config/database.yml
67
+ - test/app_root/config/environment.rb
68
+ - test/app_root/config/environments/in_memory.rb
69
+ - test/app_root/config/environments/mysql.rb
70
+ - test/app_root/config/environments/postgresql.rb
71
+ - test/app_root/config/environments/sqlite.rb
72
+ - test/app_root/config/environments/sqlite3.rb
73
+ - test/app_root/config/routes.rb
74
+ - test/app_root/db/migrate/01_create_users.rb
75
+ - test/app_root/db/migrate/02_create_assignments.rb
76
+ - test/app_root/db/migrate/03_create_cases.rb
77
+ - test/app_root/lib/console_with_fixtures.rb
78
+ - test/app_root/log/.gitignore
79
+ - test/app_root/script/console
80
+ - test/fixtures/users.yml
81
+ - test/group_test.rb
82
+ - test/role_test.rb
83
+ - test/stonepath_test.rb
84
+ - test/test_helper.rb
85
+ - test/workitem_test.rb
86
+ - test/workowner_test.rb
87
+ has_rdoc: true
88
+ homepage: http://github.com/bokmann/stonepath
89
+ licenses: []
90
+
91
+ post_install_message:
92
+ rdoc_options:
93
+ - --charset=UTF-8
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: "0"
101
+ version:
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: "0"
107
+ version:
108
+ requirements: []
109
+
110
+ rubyforge_project:
111
+ rubygems_version: 1.3.5
112
+ signing_key:
113
+ specification_version: 3
114
+ summary: "Stonepath: stateful workflow modeling for rails"
115
+ test_files:
116
+ - test/acl_test.rb
117
+ - test/app_root/app/controllers/application_controller.rb
118
+ - test/app_root/app/models/assignment.rb
119
+ - test/app_root/app/models/case.rb
120
+ - test/app_root/app/models/user.rb
121
+ - test/app_root/config/boot.rb
122
+ - test/app_root/config/environment.rb
123
+ - test/app_root/config/environments/in_memory.rb
124
+ - test/app_root/config/environments/mysql.rb
125
+ - test/app_root/config/environments/postgresql.rb
126
+ - test/app_root/config/environments/sqlite.rb
127
+ - test/app_root/config/environments/sqlite3.rb
128
+ - test/app_root/config/routes.rb
129
+ - test/app_root/db/migrate/01_create_users.rb
130
+ - test/app_root/db/migrate/02_create_assignments.rb
131
+ - test/app_root/db/migrate/03_create_cases.rb
132
+ - test/app_root/lib/console_with_fixtures.rb
133
+ - test/group_test.rb
134
+ - test/role_test.rb
135
+ - test/stonepath_test.rb
136
+ - test/test_helper.rb
137
+ - test/workitem_test.rb
138
+ - test/workowner_test.rb