refinerycms-registrations 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/app/assets/images/refinery/race_registrations/admin/chosen-sprite.png +0 -0
  2. data/app/assets/images/refinery/race_registrations/down_arrow.png +0 -0
  3. data/app/assets/images/refinery/race_registrations/up_arrow.png +0 -0
  4. data/app/assets/javascripts/refinery/race_registrations/admin/jquery.chosen.min.js +10 -0
  5. data/app/assets/javascripts/refinery/race_registrations/admin/race_registrations.js +53 -0
  6. data/app/assets/javascripts/refinery/race_registrations/race_registrations.js +41 -0
  7. data/app/assets/stylesheets/refinery/race_registrations/admin/chosen.css.scss +396 -0
  8. data/app/assets/stylesheets/refinery/race_registrations/admin/race_registrations.css.scss +13 -0
  9. data/app/assets/stylesheets/refinery/race_registrations/admin/sortable_table.css.scss +40 -0
  10. data/app/assets/stylesheets/refinery/race_registrations/race_registrations.css.scss +74 -0
  11. data/app/controllers/refinery/race_registrations/admin/categories_controller.rb +33 -0
  12. data/app/controllers/refinery/race_registrations/admin/groups_controller.rb +13 -0
  13. data/app/controllers/refinery/race_registrations/admin/people_controller.rb +89 -0
  14. data/app/controllers/refinery/race_registrations/admin/registrations_controller.rb +13 -0
  15. data/app/controllers/refinery/race_registrations/categories_controller.rb +17 -0
  16. data/app/controllers/refinery/race_registrations/people_controller.rb +36 -0
  17. data/app/controllers/refinery/race_registrations/registrations_controller.rb +40 -0
  18. data/app/helpers/refinery/race_registrations/admin/people_helper.rb +23 -0
  19. data/app/helpers/refinery/race_registrations/registrations_helper.rb +23 -0
  20. data/app/models/refinery/race_registrations/category.rb +17 -0
  21. data/app/models/refinery/race_registrations/group.rb +20 -0
  22. data/app/models/refinery/race_registrations/group_category.rb +8 -0
  23. data/app/models/refinery/race_registrations/person.rb +53 -0
  24. data/app/models/refinery/race_registrations/registration.rb +37 -0
  25. data/app/views/layouts/print.html.erb +14 -0
  26. data/app/views/refinery/pages/registration_list.html.erb +15 -0
  27. data/app/views/refinery/race_registrations/admin/_submenu.html.erb +77 -0
  28. data/app/views/refinery/race_registrations/admin/categories/_categories.html.erb +2 -0
  29. data/app/views/refinery/race_registrations/admin/categories/_category.html.erb +20 -0
  30. data/app/views/refinery/race_registrations/admin/categories/_form.html.erb +17 -0
  31. data/app/views/refinery/race_registrations/admin/categories/_records.html.erb +18 -0
  32. data/app/views/refinery/race_registrations/admin/categories/_sortable_list.html.erb +5 -0
  33. data/app/views/refinery/race_registrations/admin/categories/edit.html.erb +1 -0
  34. data/app/views/refinery/race_registrations/admin/categories/index.html.erb +5 -0
  35. data/app/views/refinery/race_registrations/admin/categories/new.html.erb +1 -0
  36. data/app/views/refinery/race_registrations/admin/groups/_form.html.erb +23 -0
  37. data/app/views/refinery/race_registrations/admin/groups/_group.html.erb +20 -0
  38. data/app/views/refinery/race_registrations/admin/groups/_groups.html.erb +2 -0
  39. data/app/views/refinery/race_registrations/admin/groups/_records.html.erb +18 -0
  40. data/app/views/refinery/race_registrations/admin/groups/_sortable_list.html.erb +5 -0
  41. data/app/views/refinery/race_registrations/admin/groups/edit.html.erb +1 -0
  42. data/app/views/refinery/race_registrations/admin/groups/index.html.erb +5 -0
  43. data/app/views/refinery/race_registrations/admin/groups/new.html.erb +1 -0
  44. data/app/views/refinery/race_registrations/admin/people/_form.html.erb +82 -0
  45. data/app/views/refinery/race_registrations/admin/people/_people.html.erb +14 -0
  46. data/app/views/refinery/race_registrations/admin/people/_person.html.erb +21 -0
  47. data/app/views/refinery/race_registrations/admin/people/_records.html.erb +11 -0
  48. data/app/views/refinery/race_registrations/admin/people/edit.html.erb +1 -0
  49. data/app/views/refinery/race_registrations/admin/people/index.html.erb +27 -0
  50. data/app/views/refinery/race_registrations/admin/people/index.js.erb +3 -0
  51. data/app/views/refinery/race_registrations/admin/people/new.html.erb +1 -0
  52. data/app/views/refinery/race_registrations/admin/registrations/_form.html.erb +54 -0
  53. data/app/views/refinery/race_registrations/admin/registrations/_records.html.erb +18 -0
  54. data/app/views/refinery/race_registrations/admin/registrations/_registration.html.erb +20 -0
  55. data/app/views/refinery/race_registrations/admin/registrations/_registrations.html.erb +2 -0
  56. data/app/views/refinery/race_registrations/admin/registrations/_sortable_list.html.erb +5 -0
  57. data/app/views/refinery/race_registrations/admin/registrations/edit.html.erb +1 -0
  58. data/app/views/refinery/race_registrations/admin/registrations/index.html.erb +5 -0
  59. data/app/views/refinery/race_registrations/admin/registrations/new.html.erb +1 -0
  60. data/app/views/refinery/race_registrations/categories/index.html.erb +11 -0
  61. data/app/views/refinery/race_registrations/categories/show.html.erb +27 -0
  62. data/app/views/refinery/race_registrations/groups/index.html.erb +11 -0
  63. data/app/views/refinery/race_registrations/groups/show.html.erb +27 -0
  64. data/app/views/refinery/race_registrations/people/_form.html.erb +81 -0
  65. data/app/views/refinery/race_registrations/people/_form_header.html.erb +8 -0
  66. data/app/views/refinery/race_registrations/people/new.html.erb +28 -0
  67. data/app/views/refinery/race_registrations/registrations/_registration.html.erb +47 -0
  68. data/app/views/refinery/race_registrations/registrations/_registration_chooser.html.erb +7 -0
  69. data/app/views/refinery/race_registrations/registrations/show.html.erb +21 -0
  70. data/config/initializers/refinery/core.rb +8 -0
  71. data/config/locales/en.yml +136 -0
  72. data/config/locales/es.yml +141 -0
  73. data/config/locales/fr.yml +139 -0
  74. data/config/locales/humanizer.de.yml +43 -0
  75. data/config/locales/humanizer.en.yml +43 -0
  76. data/config/locales/humanizer.es.yml +43 -0
  77. data/config/locales/humanizer.fi.yml +43 -0
  78. data/config/locales/humanizer.fr.yml +43 -0
  79. data/config/locales/humanizer.it.yml +43 -0
  80. data/config/locales/humanizer.nl.yml +43 -0
  81. data/config/locales/humanizer.pl.yml +43 -0
  82. data/config/locales/humanizer.pt-BR.yml +43 -0
  83. data/config/locales/humanizer.pt-PT.yml +43 -0
  84. data/config/locales/humanizer.ru.yml +43 -0
  85. data/config/locales/humanizer.sk.yml +9 -0
  86. data/config/locales/humanizer.zh-CN.yml +43 -0
  87. data/config/locales/nb.yml +141 -0
  88. data/config/locales/nl.yml +141 -0
  89. data/config/locales/sk.yml +138 -0
  90. data/config/routes.rb +44 -0
  91. data/db/migrate/1_create_race_registrations_registrations.rb +31 -0
  92. data/db/migrate/2_create_race_registrations_people.rb +33 -0
  93. data/db/migrate/3_create_race_registrations_categories.rb +26 -0
  94. data/db/migrate/4_create_race_registrations_groups.rb +26 -0
  95. data/db/migrate/5_create_race_registrations_group_categories.rb +18 -0
  96. data/db/migrate/6_add_registration_id_to_people.rb +20 -0
  97. data/db/migrate/7_add_group_id_to_registrations.rb +13 -0
  98. data/db/seeds.rb +51 -0
  99. data/lib/generators/refinery/registrations_generator.rb +18 -0
  100. data/lib/refinery/registrations.rb +22 -0
  101. data/lib/refinery/registrations/configuration.rb +11 -0
  102. data/lib/refinery/registrations/engine.rb +31 -0
  103. data/lib/refinery/registrations/extensions/pages_controller_extension.rb +18 -0
  104. data/lib/refinerycms-registrations.rb +1 -0
  105. data/lib/tasks/refinery/registrations.rake +13 -0
  106. data/readme.md +95 -0
  107. metadata +182 -0
metadata ADDED
@@ -0,0 +1,182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: refinerycms-registrations
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Martin Markech
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-21 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: refinerycms-core
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 2.0.8
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: 2.0.8
30
+ - !ruby/object:Gem::Dependency
31
+ name: refinerycms-testing
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 2.0.8
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 2.0.8
46
+ description: Ruby on Rails race registrations extension for Refinery CMS
47
+ email: martin.markech@matho.sk
48
+ executables: []
49
+ extensions: []
50
+ extra_rdoc_files: []
51
+ files:
52
+ - app/models/refinery/race_registrations/person.rb
53
+ - app/models/refinery/race_registrations/category.rb
54
+ - app/models/refinery/race_registrations/group.rb
55
+ - app/models/refinery/race_registrations/group_category.rb
56
+ - app/models/refinery/race_registrations/registration.rb
57
+ - app/helpers/refinery/race_registrations/admin/people_helper.rb
58
+ - app/helpers/refinery/race_registrations/registrations_helper.rb
59
+ - app/assets/stylesheets/refinery/race_registrations/race_registrations.css.scss
60
+ - app/assets/stylesheets/refinery/race_registrations/admin/race_registrations.css.scss
61
+ - app/assets/stylesheets/refinery/race_registrations/admin/sortable_table.css.scss
62
+ - app/assets/stylesheets/refinery/race_registrations/admin/chosen.css.scss
63
+ - app/assets/images/refinery/race_registrations/admin/chosen-sprite.png
64
+ - app/assets/images/refinery/race_registrations/down_arrow.png
65
+ - app/assets/images/refinery/race_registrations/up_arrow.png
66
+ - app/assets/javascripts/refinery/race_registrations/admin/race_registrations.js
67
+ - app/assets/javascripts/refinery/race_registrations/admin/jquery.chosen.min.js
68
+ - app/assets/javascripts/refinery/race_registrations/race_registrations.js
69
+ - app/controllers/refinery/race_registrations/admin/groups_controller.rb
70
+ - app/controllers/refinery/race_registrations/admin/registrations_controller.rb
71
+ - app/controllers/refinery/race_registrations/admin/categories_controller.rb
72
+ - app/controllers/refinery/race_registrations/admin/people_controller.rb
73
+ - app/controllers/refinery/race_registrations/registrations_controller.rb
74
+ - app/controllers/refinery/race_registrations/categories_controller.rb
75
+ - app/controllers/refinery/race_registrations/people_controller.rb
76
+ - app/views/layouts/print.html.erb
77
+ - app/views/refinery/race_registrations/admin/people/index.html.erb
78
+ - app/views/refinery/race_registrations/admin/people/index.js.erb
79
+ - app/views/refinery/race_registrations/admin/people/_records.html.erb
80
+ - app/views/refinery/race_registrations/admin/people/new.html.erb
81
+ - app/views/refinery/race_registrations/admin/people/edit.html.erb
82
+ - app/views/refinery/race_registrations/admin/people/_person.html.erb
83
+ - app/views/refinery/race_registrations/admin/people/_form.html.erb
84
+ - app/views/refinery/race_registrations/admin/people/_people.html.erb
85
+ - app/views/refinery/race_registrations/admin/_submenu.html.erb
86
+ - app/views/refinery/race_registrations/admin/categories/index.html.erb
87
+ - app/views/refinery/race_registrations/admin/categories/_sortable_list.html.erb
88
+ - app/views/refinery/race_registrations/admin/categories/_category.html.erb
89
+ - app/views/refinery/race_registrations/admin/categories/_records.html.erb
90
+ - app/views/refinery/race_registrations/admin/categories/new.html.erb
91
+ - app/views/refinery/race_registrations/admin/categories/edit.html.erb
92
+ - app/views/refinery/race_registrations/admin/categories/_categories.html.erb
93
+ - app/views/refinery/race_registrations/admin/categories/_form.html.erb
94
+ - app/views/refinery/race_registrations/admin/registrations/index.html.erb
95
+ - app/views/refinery/race_registrations/admin/registrations/_sortable_list.html.erb
96
+ - app/views/refinery/race_registrations/admin/registrations/_records.html.erb
97
+ - app/views/refinery/race_registrations/admin/registrations/new.html.erb
98
+ - app/views/refinery/race_registrations/admin/registrations/_registrations.html.erb
99
+ - app/views/refinery/race_registrations/admin/registrations/edit.html.erb
100
+ - app/views/refinery/race_registrations/admin/registrations/_form.html.erb
101
+ - app/views/refinery/race_registrations/admin/registrations/_registration.html.erb
102
+ - app/views/refinery/race_registrations/admin/groups/index.html.erb
103
+ - app/views/refinery/race_registrations/admin/groups/_sortable_list.html.erb
104
+ - app/views/refinery/race_registrations/admin/groups/_records.html.erb
105
+ - app/views/refinery/race_registrations/admin/groups/new.html.erb
106
+ - app/views/refinery/race_registrations/admin/groups/_group.html.erb
107
+ - app/views/refinery/race_registrations/admin/groups/edit.html.erb
108
+ - app/views/refinery/race_registrations/admin/groups/_form.html.erb
109
+ - app/views/refinery/race_registrations/admin/groups/_groups.html.erb
110
+ - app/views/refinery/race_registrations/people/new.html.erb
111
+ - app/views/refinery/race_registrations/people/_form.html.erb
112
+ - app/views/refinery/race_registrations/people/_form_header.html.erb
113
+ - app/views/refinery/race_registrations/categories/index.html.erb
114
+ - app/views/refinery/race_registrations/categories/show.html.erb
115
+ - app/views/refinery/race_registrations/registrations/show.html.erb
116
+ - app/views/refinery/race_registrations/registrations/_registration_chooser.html.erb
117
+ - app/views/refinery/race_registrations/registrations/_registration.html.erb
118
+ - app/views/refinery/race_registrations/groups/index.html.erb
119
+ - app/views/refinery/race_registrations/groups/show.html.erb
120
+ - app/views/refinery/pages/registration_list.html.erb
121
+ - config/locales/humanizer.pt-BR.yml
122
+ - config/locales/humanizer.sk.yml
123
+ - config/locales/humanizer.pl.yml
124
+ - config/locales/humanizer.it.yml
125
+ - config/locales/nl.yml
126
+ - config/locales/humanizer.fi.yml
127
+ - config/locales/es.yml
128
+ - config/locales/humanizer.fr.yml
129
+ - config/locales/humanizer.es.yml
130
+ - config/locales/humanizer.ru.yml
131
+ - config/locales/en.yml
132
+ - config/locales/humanizer.de.yml
133
+ - config/locales/humanizer.en.yml
134
+ - config/locales/sk.yml
135
+ - config/locales/nb.yml
136
+ - config/locales/humanizer.zh-CN.yml
137
+ - config/locales/humanizer.pt-PT.yml
138
+ - config/locales/humanizer.nl.yml
139
+ - config/locales/fr.yml
140
+ - config/routes.rb
141
+ - config/initializers/refinery/core.rb
142
+ - db/migrate/3_create_race_registrations_categories.rb
143
+ - db/migrate/6_add_registration_id_to_people.rb
144
+ - db/migrate/2_create_race_registrations_people.rb
145
+ - db/migrate/4_create_race_registrations_groups.rb
146
+ - db/migrate/5_create_race_registrations_group_categories.rb
147
+ - db/migrate/7_add_group_id_to_registrations.rb
148
+ - db/migrate/1_create_race_registrations_registrations.rb
149
+ - db/seeds.rb
150
+ - lib/generators/refinery/registrations_generator.rb
151
+ - lib/tasks/refinery/registrations.rake
152
+ - lib/refinerycms-registrations.rb
153
+ - lib/refinery/registrations.rb
154
+ - lib/refinery/registrations/configuration.rb
155
+ - lib/refinery/registrations/extensions/pages_controller_extension.rb
156
+ - lib/refinery/registrations/engine.rb
157
+ - readme.md
158
+ homepage: http://github.com/Matho/refinerycms-registrations
159
+ licenses: []
160
+ post_install_message:
161
+ rdoc_options: []
162
+ require_paths:
163
+ - lib
164
+ required_ruby_version: !ruby/object:Gem::Requirement
165
+ none: false
166
+ requirements:
167
+ - - ! '>='
168
+ - !ruby/object:Gem::Version
169
+ version: '0'
170
+ required_rubygems_version: !ruby/object:Gem::Requirement
171
+ none: false
172
+ requirements:
173
+ - - ! '>='
174
+ - !ruby/object:Gem::Version
175
+ version: '0'
176
+ requirements: []
177
+ rubyforge_project:
178
+ rubygems_version: 1.8.24
179
+ signing_key:
180
+ specification_version: 3
181
+ summary: Race registrations extension for Refinery CMS
182
+ test_files: []