helpdesk 0.0.2 → 0.0.3

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 (85) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/helpdesk/admin/tickets.js +1 -13
  3. data/app/assets/javascripts/helpdesk/application.js +0 -1
  4. data/app/assets/stylesheets/helpdesk/admin.css +0 -2
  5. data/app/assets/stylesheets/helpdesk/imports.css.scss +34 -0
  6. data/app/controllers/helpdesk/admin/base_controller.rb +2 -2
  7. data/app/controllers/helpdesk/admin/faqs_controller.rb +2 -7
  8. data/app/controllers/helpdesk/admin/subscribers_controller.rb +2 -8
  9. data/app/controllers/helpdesk/admin/ticket_types_controller.rb +3 -9
  10. data/app/controllers/helpdesk/admin/tickets_controller.rb +9 -21
  11. data/app/controllers/helpdesk/application_controller.rb +9 -4
  12. data/app/controllers/helpdesk/dashboard_controller.rb +2 -2
  13. data/app/controllers/helpdesk/faqs_controller.rb +80 -2
  14. data/app/controllers/helpdesk/subscribers_controller.rb +41 -18
  15. data/app/controllers/helpdesk/tickets_controller.rb +15 -20
  16. data/app/helpers/helpdesk/admin/tickets_helper.rb +0 -9
  17. data/app/helpers/helpdesk/helpdesk_helper.rb +6 -30
  18. data/app/helpers/helpdesk/tickets_helper.rb +0 -3
  19. data/app/mailers/helpdesk/comment_by_requester_confirmation +38 -0
  20. data/app/mailers/helpdesk/notifications_mailer.rb +1 -2
  21. data/app/models/helpdesk/comment.rb +5 -11
  22. data/app/models/helpdesk/faq.rb +1 -1
  23. data/app/models/helpdesk/ticket.rb +24 -27
  24. data/app/models/helpdesk/ticket_type.rb +4 -4
  25. data/app/views/helpdesk/admin/faqs/_form.html.haml +2 -2
  26. data/app/views/helpdesk/admin/faqs/edit.html.haml +9 -6
  27. data/app/views/helpdesk/admin/faqs/index.html.haml +2 -2
  28. data/app/views/helpdesk/admin/faqs/new.html.haml +1 -2
  29. data/app/views/helpdesk/admin/faqs/show.html.haml +1 -1
  30. data/app/views/helpdesk/admin/subscribers/edit.html.haml +1 -2
  31. data/app/views/helpdesk/admin/subscribers/index.html.haml +2 -3
  32. data/app/views/helpdesk/admin/subscribers/new.html.haml +1 -2
  33. data/app/views/helpdesk/admin/ticket_types/edit.html.haml +1 -2
  34. data/app/views/helpdesk/admin/ticket_types/index.html.haml +1 -1
  35. data/app/views/helpdesk/admin/ticket_types/new.html.haml +1 -2
  36. data/app/views/helpdesk/admin/tickets/_form.html.haml +9 -9
  37. data/app/views/helpdesk/admin/tickets/_ticket.html.haml +16 -15
  38. data/app/views/helpdesk/admin/tickets/edit.html.haml +5 -5
  39. data/app/views/helpdesk/admin/tickets/index.html.haml +5 -7
  40. data/app/views/helpdesk/admin/tickets/list.html.haml +2 -3
  41. data/app/views/helpdesk/admin/tickets/new.html.haml +2 -2
  42. data/app/views/helpdesk/admin/tickets/show.html.haml +9 -9
  43. data/app/views/helpdesk/faqs/_form.html.erb +33 -0
  44. data/app/views/helpdesk/faqs/edit.html.erb +6 -0
  45. data/app/views/helpdesk/faqs/index.html.erb +29 -0
  46. data/app/views/helpdesk/faqs/new.html.erb +5 -0
  47. data/app/views/helpdesk/faqs/show.html.erb +25 -0
  48. data/app/views/helpdesk/notifications_mailer/comment_by_helpdesk_confirmation.pl.html.haml +32 -0
  49. data/app/views/helpdesk/notifications_mailer/comment_by_helpdesk_notification.pl.html.haml +28 -0
  50. data/app/views/helpdesk/notifications_mailer/comment_by_requester_confirmation.pl.html.haml +32 -0
  51. data/app/views/helpdesk/notifications_mailer/comment_by_requester_notification.pl.html.haml +42 -0
  52. data/app/views/helpdesk/notifications_mailer/ticket_created_confirmation.pl.html.haml +34 -0
  53. data/app/views/helpdesk/notifications_mailer/ticket_created_notification.pl.html.haml +42 -0
  54. data/app/views/helpdesk/tickets/_form.html.haml +11 -11
  55. data/app/views/helpdesk/tickets/_ticket.html.haml +10 -10
  56. data/app/views/helpdesk/tickets/index.html.haml +2 -3
  57. data/app/views/helpdesk/tickets/new.html.haml +2 -2
  58. data/app/views/helpdesk/tickets/show.html.haml +12 -16
  59. data/app/views/layouts/helpdesk/_topmenu.html.haml +21 -27
  60. data/app/views/layouts/helpdesk/_topuser.html.haml +9 -32
  61. data/app/views/layouts/helpdesk/admin.html.haml +6 -14
  62. data/app/views/layouts/helpdesk/user.html.haml +6 -14
  63. data/config/initializers/simple_form.rb +144 -85
  64. data/config/locales/helpdesk.en.yml +3 -107
  65. data/config/locales/helpdesk.pl.yml +7 -46
  66. data/config/routes.rb +5 -6
  67. data/db/migrate/20130521105605_create_helpdesk_ticket_types.rb +1 -21
  68. data/db/migrate/20130521132216_add_tr_class_to_ticket_type.rb +5 -0
  69. data/lib/generators/helpdesk/install_generator.rb +0 -11
  70. data/lib/generators/helpdesk/templates/README +9 -17
  71. data/lib/generators/helpdesk/templates/helpdesk.rb +6 -9
  72. data/lib/helpdesk.rb +4 -4
  73. data/lib/helpdesk/engine.rb +0 -8
  74. data/lib/helpdesk/version.rb +1 -1
  75. metadata +28 -137
  76. data/app/assets/stylesheets/helpdesk/imports.css.sass +0 -0
  77. data/app/views/helpdesk/faqs/index.html.haml +0 -20
  78. data/app/views/helpdesk/notifications_mailer/comment_by_helpdesk_confirmation.html.haml +0 -15
  79. data/app/views/helpdesk/notifications_mailer/comment_by_helpdesk_notification.html.haml +0 -19
  80. data/app/views/helpdesk/notifications_mailer/comment_by_requester_confirmation.html.haml +0 -16
  81. data/app/views/helpdesk/notifications_mailer/comment_by_requester_notification.html.haml +0 -27
  82. data/app/views/helpdesk/notifications_mailer/ticket_created_confirmation.html.haml +0 -16
  83. data/app/views/helpdesk/notifications_mailer/ticket_created_notification.html.haml +0 -21
  84. data/app/views/layouts/mailer_layout.html.haml +0 -20
  85. data/config/initializers/globalize.rb +0 -4
data/config/routes.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  Helpdesk::Engine.routes.draw do
2
- # Rails.application.routes.draw do
2
+
3
3
  scope "(:locale)", :locale => /pl|en/ do
4
+
4
5
  # Admin only roots
5
6
  namespace :admin do
6
7
  resources :tickets do
@@ -11,12 +12,10 @@ Helpdesk::Engine.routes.draw do
11
12
  post :sort, on: :collection
12
13
  end
13
14
  resources :subscribers
14
- root :to => "tickets#index"
15
+ root :to => "dashboard#index"
15
16
  end
16
-
17
- resources :faqs, :only => [ :index ]
18
17
  resources :tickets, :except => [ :edit, :destroy ]
19
- root :to => "faqs#index"
20
-
18
+ root :to => "tickets#index"
19
+
21
20
  end
22
21
  end
@@ -3,30 +3,10 @@ class CreateHelpdeskTicketTypes < ActiveRecord::Migration
3
3
  create_table :helpdesk_ticket_types do |t|
4
4
  t.integer :position
5
5
  t.boolean :active,:default=>1,:null=>false
6
- t.string :tr_class
6
+
7
7
  t.timestamps
8
8
  end
9
-
10
9
  Helpdesk::TicketType.create_translation_table! :title => :string
11
-
12
-
13
- tt = [["Sugestia","Sugestion","warning"],
14
- ["Pochwała","Appreciation","success"],
15
- ["Błąd","Complaint","error"],
16
- ["Pytanie","Enquiry","info"],
17
- ["Kontakt","Contact","contact"]]
18
-
19
- tt.each do |item|
20
- I18n.locale = :pl
21
- type = Helpdesk::TicketType.new
22
- type.title = item[0]
23
- I18n.locale = :en
24
- type.title = item[1]
25
- type.tr_class = item[2]
26
- type.active = true
27
- type.save!
28
- end
29
-
30
10
  end
31
11
 
32
12
  def down
@@ -0,0 +1,5 @@
1
+ class AddTrClassToTicketType < ActiveRecord::Migration
2
+ def change
3
+ add_column :helpdesk_ticket_types, :tr_class, :string
4
+ end
5
+ end
@@ -16,20 +16,9 @@ module Helpdesk
16
16
  copy_file "../../../../config/locales/helpdesk.pl.yml", "config/locales/helpdesk.pl.yml"
17
17
  end
18
18
 
19
- def run_rake
20
- rake "helpdesk:install:migrations"
21
- rake "db:migrate"
22
- end
23
-
24
- def add_engine_to_route
25
- route "mount Helpdesk::Engine, :at => '/helpdesk'"
26
- end
27
-
28
19
  def show_readme
29
20
  readme "README" if behavior == :invoke
30
21
  end
31
-
32
-
33
22
  end
34
23
  end
35
24
  end
@@ -5,27 +5,19 @@ You need to do some manual setup to get Helpdesk working:
5
5
  1. Review settings in new config/initializers/helpdesk.rb and update where
6
6
  neccessary.
7
7
 
8
- 2. Add 3 methods to your applications application_controller.rb
9
- * helpdesk_user - to exposes your current_user
10
- * helpdesk_admin? - to check privileges
11
- * helpdesk_admins_collection - to list all admin
8
+ 2. Mount the engine into your application by editing your config/routes.rb
12
9
 
13
- Example, for app with devise&rolify gems:
14
- application_controller.rb:
10
+ mount Helpdesk::Engine, :at => "support"
15
11
 
16
- helper_method :helpdesk_user,:helpdesk_admin?,:helpdesk_admin_collection
17
- def helpdesk_user
18
- current_user
19
- end
12
+ 3. Install and run the migrations
20
13
 
21
- def helpdesk_admin?
22
- current_user.has_role? :admin
23
- end
14
+ rake helpdesk:install:migrations
24
15
 
25
- def helpdesk_admin_collection
26
- (Helpdesk.user_class).with_role(:admin)
27
- end
16
+ rake db:migrate
28
17
 
29
- 3. Restart app
18
+ 4. Add a helpdesk_user method to your applications application_controller.rb
19
+ that exposes your current_user
20
+
21
+ 5.
30
22
 
31
23
  ===============================================================================
@@ -1,20 +1,17 @@
1
1
  require 'helpdesk'
2
2
 
3
3
  ::Helpdesk.setup do |config|
4
- # Class that represents the user/admin
4
+ # Class that represents the user
5
5
  config.user_class = "User"
6
6
 
7
- # Method usign to display information about user for users
8
- config.display_user = "name"
9
-
10
- # Method usign to display information about user for admins (name+id?)
11
- config.display_user_uniq_info = "email"
12
-
13
7
  # Require User to be present in order to access Helpdesk
14
8
  config.require_user = true
15
-
9
+
16
10
  # Base application sign in route name
17
- config.sign_in_url = 'new_user_session_path'
11
+ config.sign_in_url = 'sign_in_url'
12
+
13
+ # Ticket issue types
14
+ config.issue_types = ['bug', 'change request', 'new feature']
18
15
 
19
16
  # Helpdesk email for notification
20
17
  config.email = 'helpdesk@example.com'
data/lib/helpdesk.rb CHANGED
@@ -10,8 +10,8 @@ module Helpdesk
10
10
 
11
11
  mattr_accessor :display_user
12
12
 
13
- mattr_accessor :display_user_uniq_info
14
-
13
+ mattr_accessor :issue_types
14
+
15
15
  mattr_accessor :mail_server
16
16
 
17
17
  mattr_accessor :email
@@ -23,9 +23,9 @@ module Helpdesk
23
23
 
24
24
  mattr_accessor :site_address
25
25
 
26
- mattr_accessor :helpdesk_name
26
+ mattr_accessor :helpdesk_name
27
27
  @@helpdesk_name = "Helpdesk"
28
-
28
+
29
29
  def self.setup
30
30
  yield self
31
31
  end
@@ -2,14 +2,6 @@ require 'rails'
2
2
  require 'simple_form'
3
3
  require 'state_machine'
4
4
  require 'bootstrap-sass'
5
- require 'rails_autolink'
6
- require 'simple_form'
7
- require 'globalize'
8
- require 'batch_translations'
9
- require 'ckeditor'
10
- require 'chosen-rails'
11
- require 'kaminari'
12
- require 'jquery-ui-rails'
13
5
 
14
6
  module Helpdesk
15
7
  class Engine < ::Rails::Engine
@@ -1,3 +1,3 @@
1
1
  module Helpdesk
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: helpdesk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Beynon Wacław Łuczak
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-25 00:00:00.000000000 Z
11
+ date: 2013-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: launchy
@@ -137,105 +137,7 @@ dependencies:
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
139
  - !ruby/object:Gem::Dependency
140
- name: bullet
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - '>='
144
- - !ruby/object:Gem::Version
145
- version: '0'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - '>='
151
- - !ruby/object:Gem::Version
152
- version: '0'
153
- - !ruby/object:Gem::Dependency
154
- name: haml-rails
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - '>='
158
- - !ruby/object:Gem::Version
159
- version: '0'
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - '>='
165
- - !ruby/object:Gem::Version
166
- version: '0'
167
- - !ruby/object:Gem::Dependency
168
- name: sass
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - ~>
172
- - !ruby/object:Gem::Version
173
- version: 3.2.10
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - ~>
179
- - !ruby/object:Gem::Version
180
- version: 3.2.10
181
- - !ruby/object:Gem::Dependency
182
- name: compass
183
- requirement: !ruby/object:Gem::Requirement
184
- requirements:
185
- - - '='
186
- - !ruby/object:Gem::Version
187
- version: 0.12.2
188
- type: :development
189
- prerelease: false
190
- version_requirements: !ruby/object:Gem::Requirement
191
- requirements:
192
- - - '='
193
- - !ruby/object:Gem::Version
194
- version: 0.12.2
195
- - !ruby/object:Gem::Dependency
196
- name: kaminari
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - '>='
200
- - !ruby/object:Gem::Version
201
- version: '0'
202
- type: :runtime
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - '>='
207
- - !ruby/object:Gem::Version
208
- version: '0'
209
- - !ruby/object:Gem::Dependency
210
- name: jquery-ui-rails
211
- requirement: !ruby/object:Gem::Requirement
212
- requirements:
213
- - - '>='
214
- - !ruby/object:Gem::Version
215
- version: '0'
216
- type: :runtime
217
- prerelease: false
218
- version_requirements: !ruby/object:Gem::Requirement
219
- requirements:
220
- - - '>='
221
- - !ruby/object:Gem::Version
222
- version: '0'
223
- - !ruby/object:Gem::Dependency
224
- name: chosen-rails
225
- requirement: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - '>='
228
- - !ruby/object:Gem::Version
229
- version: '0'
230
- type: :runtime
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - '>='
235
- - !ruby/object:Gem::Version
236
- version: '0'
237
- - !ruby/object:Gem::Dependency
238
- name: rails_autolink
140
+ name: bootstrap-sass
239
141
  requirement: !ruby/object:Gem::Requirement
240
142
  requirements:
241
143
  - - '>='
@@ -248,34 +150,20 @@ dependencies:
248
150
  - - '>='
249
151
  - !ruby/object:Gem::Version
250
152
  version: '0'
251
- - !ruby/object:Gem::Dependency
252
- name: bootstrap-sass
253
- requirement: !ruby/object:Gem::Requirement
254
- requirements:
255
- - - ~>
256
- - !ruby/object:Gem::Version
257
- version: 3.1.0
258
- type: :runtime
259
- prerelease: false
260
- version_requirements: !ruby/object:Gem::Requirement
261
- requirements:
262
- - - ~>
263
- - !ruby/object:Gem::Version
264
- version: 3.1.0
265
153
  - !ruby/object:Gem::Dependency
266
154
  name: rails
267
155
  requirement: !ruby/object:Gem::Requirement
268
156
  requirements:
269
157
  - - '>='
270
158
  - !ruby/object:Gem::Version
271
- version: 4.0.0
159
+ version: 3.2.3
272
160
  type: :runtime
273
161
  prerelease: false
274
162
  version_requirements: !ruby/object:Gem::Requirement
275
163
  requirements:
276
164
  - - '>='
277
165
  - !ruby/object:Gem::Version
278
- version: 4.0.0
166
+ version: 3.2.3
279
167
  - !ruby/object:Gem::Dependency
280
168
  name: sass-rails
281
169
  requirement: !ruby/object:Gem::Requirement
@@ -319,7 +207,7 @@ dependencies:
319
207
  - !ruby/object:Gem::Version
320
208
  version: '0'
321
209
  - !ruby/object:Gem::Dependency
322
- name: globalize
210
+ name: globalize3
323
211
  requirement: !ruby/object:Gem::Requirement
324
212
  requirements:
325
213
  - - '>='
@@ -367,8 +255,6 @@ executables: []
367
255
  extensions: []
368
256
  extra_rdoc_files: []
369
257
  files:
370
- - MIT-LICENSE
371
- - Rakefile
372
258
  - app/assets/javascripts/helpdesk/admin/dashboard.js
373
259
  - app/assets/javascripts/helpdesk/admin/tickets.js
374
260
  - app/assets/javascripts/helpdesk/application.js
@@ -376,14 +262,14 @@ files:
376
262
  - app/assets/javascripts/helpdesk/dashboard.js
377
263
  - app/assets/javascripts/helpdesk/faqs.js
378
264
  - app/assets/javascripts/helpdesk/subscribers.js
379
- - app/assets/stylesheets/helpdesk/admin.css
380
265
  - app/assets/stylesheets/helpdesk/admin/bootstrap_overrides.css
381
266
  - app/assets/stylesheets/helpdesk/admin/dashboard.css
382
267
  - app/assets/stylesheets/helpdesk/admin/tickets.css
268
+ - app/assets/stylesheets/helpdesk/admin.css
383
269
  - app/assets/stylesheets/helpdesk/application.css
384
270
  - app/assets/stylesheets/helpdesk/dashboard.css
385
271
  - app/assets/stylesheets/helpdesk/faqs.css.scss
386
- - app/assets/stylesheets/helpdesk/imports.css.sass
272
+ - app/assets/stylesheets/helpdesk/imports.css.scss
387
273
  - app/assets/stylesheets/helpdesk/subscribers.css.scss
388
274
  - app/assets/stylesheets/helpdesk/tickets.css.sass
389
275
  - app/controllers/helpdesk/admin/base_controller.rb
@@ -404,6 +290,7 @@ files:
404
290
  - app/helpers/helpdesk/helpdesk_helper.rb
405
291
  - app/helpers/helpdesk/subscribers_helper.rb
406
292
  - app/helpers/helpdesk/tickets_helper.rb
293
+ - app/mailers/helpdesk/comment_by_requester_confirmation
407
294
  - app/mailers/helpdesk/notifications_mailer.rb
408
295
  - app/models/helpdesk/comment.rb
409
296
  - app/models/helpdesk/faq.rb
@@ -437,13 +324,17 @@ files:
437
324
  - app/views/helpdesk/admin/tickets/new.html.haml
438
325
  - app/views/helpdesk/admin/tickets/show.html.haml
439
326
  - app/views/helpdesk/dashboard/index.html.erb
440
- - app/views/helpdesk/faqs/index.html.haml
441
- - app/views/helpdesk/notifications_mailer/comment_by_helpdesk_confirmation.html.haml
442
- - app/views/helpdesk/notifications_mailer/comment_by_helpdesk_notification.html.haml
443
- - app/views/helpdesk/notifications_mailer/comment_by_requester_confirmation.html.haml
444
- - app/views/helpdesk/notifications_mailer/comment_by_requester_notification.html.haml
445
- - app/views/helpdesk/notifications_mailer/ticket_created_confirmation.html.haml
446
- - app/views/helpdesk/notifications_mailer/ticket_created_notification.html.haml
327
+ - app/views/helpdesk/faqs/_form.html.erb
328
+ - app/views/helpdesk/faqs/edit.html.erb
329
+ - app/views/helpdesk/faqs/index.html.erb
330
+ - app/views/helpdesk/faqs/new.html.erb
331
+ - app/views/helpdesk/faqs/show.html.erb
332
+ - app/views/helpdesk/notifications_mailer/comment_by_helpdesk_confirmation.pl.html.haml
333
+ - app/views/helpdesk/notifications_mailer/comment_by_helpdesk_notification.pl.html.haml
334
+ - app/views/helpdesk/notifications_mailer/comment_by_requester_confirmation.pl.html.haml
335
+ - app/views/helpdesk/notifications_mailer/comment_by_requester_notification.pl.html.haml
336
+ - app/views/helpdesk/notifications_mailer/ticket_created_confirmation.pl.html.haml
337
+ - app/views/helpdesk/notifications_mailer/ticket_created_notification.pl.html.haml
447
338
  - app/views/helpdesk/subscribers/_form.html.erb
448
339
  - app/views/helpdesk/subscribers/edit.html.erb
449
340
  - app/views/helpdesk/subscribers/index.html.erb
@@ -459,8 +350,6 @@ files:
459
350
  - app/views/layouts/helpdesk/_topuser.html.haml
460
351
  - app/views/layouts/helpdesk/admin.html.haml
461
352
  - app/views/layouts/helpdesk/user.html.haml
462
- - app/views/layouts/mailer_layout.html.haml
463
- - config/initializers/globalize.rb
464
353
  - config/initializers/simple_form.rb
465
354
  - config/locales/helpdesk.en.yml
466
355
  - config/locales/helpdesk.pl.yml
@@ -471,19 +360,21 @@ files:
471
360
  - db/migrate/20120420104051_create_helpdesk_tickets.rb
472
361
  - db/migrate/20120423113938_create_helpdesk_comments.rb
473
362
  - db/migrate/20130521105605_create_helpdesk_ticket_types.rb
363
+ - db/migrate/20130521132216_add_tr_class_to_ticket_type.rb
474
364
  - db/migrate/20130522085614_create_helpdesk_faqs.rb
475
365
  - db/migrate/20130522090420_create_helpdesk_subscribers.rb
476
366
  - lib/generators/helpdesk/install_generator.rb
477
- - lib/generators/helpdesk/templates/README
478
367
  - lib/generators/helpdesk/templates/helpdesk.rb
479
- - lib/helpdesk.rb
368
+ - lib/generators/helpdesk/templates/README
480
369
  - lib/helpdesk/engine.rb
481
370
  - lib/helpdesk/version.rb
371
+ - lib/helpdesk.rb
482
372
  - lib/tasks/prepare_ci_env.rake
483
373
  - lib/templates/erb/scaffold/_form.html.erb
484
- homepage: http://github.com/wacaw/helpdesk
485
- licenses:
486
- - MIT
374
+ - MIT-LICENSE
375
+ - Rakefile
376
+ homepage: http://github.com/johnbeynon/helpdesk
377
+ licenses: []
487
378
  metadata: {}
488
379
  post_install_message:
489
380
  rdoc_options: []
@@ -501,7 +392,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
501
392
  version: '0'
502
393
  requirements: []
503
394
  rubyforge_project:
504
- rubygems_version: 2.2.2
395
+ rubygems_version: 2.0.3
505
396
  signing_key:
506
397
  specification_version: 4
507
398
  summary: Rails mountable engine providing basic helpdesk functionality for your applications