yawl_rails 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.
Files changed (69) hide show
  1. data/.gitignore +12 -0
  2. data/Gemfile +14 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +11 -0
  5. data/Rakefile +24 -0
  6. data/app/assets/javascripts/yawl_rails/processes.js +44 -0
  7. data/app/controllers/yawl_rails/application_controller.rb +4 -0
  8. data/app/controllers/yawl_rails/processes_controller.rb +42 -0
  9. data/app/controllers/yawl_rails/steps_controller.rb +15 -0
  10. data/app/helpers/yawl_rails/application_helper.rb +4 -0
  11. data/app/helpers/yawl_rails/processes_helper.rb +10 -0
  12. data/app/views/yawl_rails/processes/_show_inline_js.html.haml +5 -0
  13. data/app/views/yawl_rails/processes/_step_rows.html.haml +12 -0
  14. data/app/views/yawl_rails/processes/index.html.haml +19 -0
  15. data/app/views/yawl_rails/processes/show.html.haml +31 -0
  16. data/app/views/yawl_rails/steps/show.html.haml +17 -0
  17. data/bin/rails +8 -0
  18. data/config/routes.rb +11 -0
  19. data/db/migrate/20140225002136_setup_yawl.rb +11 -0
  20. data/lib/tasks/yawl_rails_tasks.rake +4 -0
  21. data/lib/yawl/process_active_record.rb +12 -0
  22. data/lib/yawl/rails.rb +2 -0
  23. data/lib/yawl_rails/engine.rb +24 -0
  24. data/lib/yawl_rails/version.rb +3 -0
  25. data/lib/yawl_rails.rb +8 -0
  26. data/spec/controllers/yawl_rails/processes_controller_spec.rb +23 -0
  27. data/spec/controllers/yawl_rails/steps_controller_spec.rb +25 -0
  28. data/spec/helpers/yawl_rails/processes_helper_spec.rb +19 -0
  29. data/spec/spec_helper.rb +23 -0
  30. data/spec/test_app/README.rdoc +28 -0
  31. data/spec/test_app/Rakefile +6 -0
  32. data/spec/test_app/app/assets/images/.keep +0 -0
  33. data/spec/test_app/app/assets/javascripts/application.js +13 -0
  34. data/spec/test_app/app/assets/stylesheets/application.css +13 -0
  35. data/spec/test_app/app/controllers/application_controller.rb +5 -0
  36. data/spec/test_app/app/controllers/concerns/.keep +0 -0
  37. data/spec/test_app/app/helpers/application_helper.rb +2 -0
  38. data/spec/test_app/app/mailers/.keep +0 -0
  39. data/spec/test_app/app/models/.keep +0 -0
  40. data/spec/test_app/app/models/concerns/.keep +0 -0
  41. data/spec/test_app/app/views/layouts/application.html.erb +14 -0
  42. data/spec/test_app/bin/bundle +3 -0
  43. data/spec/test_app/bin/rails +4 -0
  44. data/spec/test_app/bin/rake +4 -0
  45. data/spec/test_app/config/application.rb +28 -0
  46. data/spec/test_app/config/boot.rb +5 -0
  47. data/spec/test_app/config/database.yml +15 -0
  48. data/spec/test_app/config/environment.rb +5 -0
  49. data/spec/test_app/config/environments/development.rb +29 -0
  50. data/spec/test_app/config/environments/production.rb +80 -0
  51. data/spec/test_app/config/environments/test.rb +36 -0
  52. data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
  53. data/spec/test_app/config/initializers/filter_parameter_logging.rb +4 -0
  54. data/spec/test_app/config/initializers/inflections.rb +16 -0
  55. data/spec/test_app/config/initializers/mime_types.rb +5 -0
  56. data/spec/test_app/config/initializers/secret_token.rb +12 -0
  57. data/spec/test_app/config/initializers/session_store.rb +3 -0
  58. data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
  59. data/spec/test_app/config/locales/en.yml +23 -0
  60. data/spec/test_app/config/routes.rb +4 -0
  61. data/spec/test_app/config.ru +4 -0
  62. data/spec/test_app/lib/assets/.keep +0 -0
  63. data/spec/test_app/log/.keep +0 -0
  64. data/spec/test_app/public/404.html +58 -0
  65. data/spec/test_app/public/422.html +58 -0
  66. data/spec/test_app/public/500.html +57 -0
  67. data/spec/test_app/public/favicon.ico +0 -0
  68. data/yawl_rails.gemspec +28 -0
  69. metadata +243 -0
metadata ADDED
@@ -0,0 +1,243 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yawl_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Ricardo Chimal, Jr.
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-02-25 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: yawl
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 0.2.0
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 0.2.0
46
+ - !ruby/object:Gem::Dependency
47
+ name: haml
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: pg
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: rspec-rails
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ description: Rails UI for YAWL
95
+ email:
96
+ - kiwi@null.cx
97
+ executables:
98
+ - rails
99
+ extensions: []
100
+ extra_rdoc_files: []
101
+ files:
102
+ - .gitignore
103
+ - Gemfile
104
+ - LICENSE.txt
105
+ - README.md
106
+ - Rakefile
107
+ - app/assets/javascripts/yawl_rails/processes.js
108
+ - app/controllers/yawl_rails/application_controller.rb
109
+ - app/controllers/yawl_rails/processes_controller.rb
110
+ - app/controllers/yawl_rails/steps_controller.rb
111
+ - app/helpers/yawl_rails/application_helper.rb
112
+ - app/helpers/yawl_rails/processes_helper.rb
113
+ - app/views/yawl_rails/processes/_show_inline_js.html.haml
114
+ - app/views/yawl_rails/processes/_step_rows.html.haml
115
+ - app/views/yawl_rails/processes/index.html.haml
116
+ - app/views/yawl_rails/processes/show.html.haml
117
+ - app/views/yawl_rails/steps/show.html.haml
118
+ - bin/rails
119
+ - config/routes.rb
120
+ - db/migrate/20140225002136_setup_yawl.rb
121
+ - lib/tasks/yawl_rails_tasks.rake
122
+ - lib/yawl/process_active_record.rb
123
+ - lib/yawl/rails.rb
124
+ - lib/yawl_rails.rb
125
+ - lib/yawl_rails/engine.rb
126
+ - lib/yawl_rails/version.rb
127
+ - spec/controllers/yawl_rails/processes_controller_spec.rb
128
+ - spec/controllers/yawl_rails/steps_controller_spec.rb
129
+ - spec/helpers/yawl_rails/processes_helper_spec.rb
130
+ - spec/spec_helper.rb
131
+ - spec/test_app/README.rdoc
132
+ - spec/test_app/Rakefile
133
+ - spec/test_app/app/assets/images/.keep
134
+ - spec/test_app/app/assets/javascripts/application.js
135
+ - spec/test_app/app/assets/stylesheets/application.css
136
+ - spec/test_app/app/controllers/application_controller.rb
137
+ - spec/test_app/app/controllers/concerns/.keep
138
+ - spec/test_app/app/helpers/application_helper.rb
139
+ - spec/test_app/app/mailers/.keep
140
+ - spec/test_app/app/models/.keep
141
+ - spec/test_app/app/models/concerns/.keep
142
+ - spec/test_app/app/views/layouts/application.html.erb
143
+ - spec/test_app/bin/bundle
144
+ - spec/test_app/bin/rails
145
+ - spec/test_app/bin/rake
146
+ - spec/test_app/config.ru
147
+ - spec/test_app/config/application.rb
148
+ - spec/test_app/config/boot.rb
149
+ - spec/test_app/config/database.yml
150
+ - spec/test_app/config/environment.rb
151
+ - spec/test_app/config/environments/development.rb
152
+ - spec/test_app/config/environments/production.rb
153
+ - spec/test_app/config/environments/test.rb
154
+ - spec/test_app/config/initializers/backtrace_silencers.rb
155
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
156
+ - spec/test_app/config/initializers/inflections.rb
157
+ - spec/test_app/config/initializers/mime_types.rb
158
+ - spec/test_app/config/initializers/secret_token.rb
159
+ - spec/test_app/config/initializers/session_store.rb
160
+ - spec/test_app/config/initializers/wrap_parameters.rb
161
+ - spec/test_app/config/locales/en.yml
162
+ - spec/test_app/config/routes.rb
163
+ - spec/test_app/lib/assets/.keep
164
+ - spec/test_app/log/.keep
165
+ - spec/test_app/public/404.html
166
+ - spec/test_app/public/422.html
167
+ - spec/test_app/public/500.html
168
+ - spec/test_app/public/favicon.ico
169
+ - yawl_rails.gemspec
170
+ homepage: ''
171
+ licenses:
172
+ - MIT
173
+ post_install_message:
174
+ rdoc_options: []
175
+ require_paths:
176
+ - lib
177
+ required_ruby_version: !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ! '>='
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ segments:
184
+ - 0
185
+ hash: 2686957709145176493
186
+ required_rubygems_version: !ruby/object:Gem::Requirement
187
+ none: false
188
+ requirements:
189
+ - - ! '>='
190
+ - !ruby/object:Gem::Version
191
+ version: '0'
192
+ segments:
193
+ - 0
194
+ hash: 2686957709145176493
195
+ requirements: []
196
+ rubyforge_project:
197
+ rubygems_version: 1.8.23
198
+ signing_key:
199
+ specification_version: 3
200
+ summary: Rails UI for YAWL
201
+ test_files:
202
+ - spec/controllers/yawl_rails/processes_controller_spec.rb
203
+ - spec/controllers/yawl_rails/steps_controller_spec.rb
204
+ - spec/helpers/yawl_rails/processes_helper_spec.rb
205
+ - spec/spec_helper.rb
206
+ - spec/test_app/README.rdoc
207
+ - spec/test_app/Rakefile
208
+ - spec/test_app/app/assets/images/.keep
209
+ - spec/test_app/app/assets/javascripts/application.js
210
+ - spec/test_app/app/assets/stylesheets/application.css
211
+ - spec/test_app/app/controllers/application_controller.rb
212
+ - spec/test_app/app/controllers/concerns/.keep
213
+ - spec/test_app/app/helpers/application_helper.rb
214
+ - spec/test_app/app/mailers/.keep
215
+ - spec/test_app/app/models/.keep
216
+ - spec/test_app/app/models/concerns/.keep
217
+ - spec/test_app/app/views/layouts/application.html.erb
218
+ - spec/test_app/bin/bundle
219
+ - spec/test_app/bin/rails
220
+ - spec/test_app/bin/rake
221
+ - spec/test_app/config.ru
222
+ - spec/test_app/config/application.rb
223
+ - spec/test_app/config/boot.rb
224
+ - spec/test_app/config/database.yml
225
+ - spec/test_app/config/environment.rb
226
+ - spec/test_app/config/environments/development.rb
227
+ - spec/test_app/config/environments/production.rb
228
+ - spec/test_app/config/environments/test.rb
229
+ - spec/test_app/config/initializers/backtrace_silencers.rb
230
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
231
+ - spec/test_app/config/initializers/inflections.rb
232
+ - spec/test_app/config/initializers/mime_types.rb
233
+ - spec/test_app/config/initializers/secret_token.rb
234
+ - spec/test_app/config/initializers/session_store.rb
235
+ - spec/test_app/config/initializers/wrap_parameters.rb
236
+ - spec/test_app/config/locales/en.yml
237
+ - spec/test_app/config/routes.rb
238
+ - spec/test_app/lib/assets/.keep
239
+ - spec/test_app/log/.keep
240
+ - spec/test_app/public/404.html
241
+ - spec/test_app/public/422.html
242
+ - spec/test_app/public/500.html
243
+ - spec/test_app/public/favicon.ico