tawork 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +7 -0
  2. data/.DS_Store +0 -0
  3. data/.gitignore +16 -0
  4. data/Gemfile +91 -0
  5. data/Gemfile.lock +295 -0
  6. data/MIT-LICENSE +20 -0
  7. data/Procfile +2 -0
  8. data/README.md +1 -0
  9. data/Rakefile +6 -0
  10. data/app/assets/images/.keep +0 -0
  11. data/app/assets/javascripts/application.js +31 -0
  12. data/app/assets/javascripts/backbone/models/.gitkeep +0 -0
  13. data/app/assets/javascripts/backbone/routers/.gitkeep +0 -0
  14. data/app/assets/javascripts/backbone/tawork.js.coffee +11 -0
  15. data/app/assets/javascripts/backbone/templates/.gitkeep +0 -0
  16. data/app/assets/javascripts/backbone/views/.gitkeep +0 -0
  17. data/app/assets/javascripts/backbone/views/page.js.coffee +75 -0
  18. data/app/assets/javascripts/backbone/views/ticket.js.coffee +110 -0
  19. data/app/assets/javascripts/backbone/views/tree_node_page.js.coffee +16 -0
  20. data/app/assets/javascripts/backbone/views/tree_node_ticket.js.coffee +14 -0
  21. data/app/assets/javascripts/wiki/pages.js.coffee +3 -0
  22. data/app/assets/stylesheets/application.css +22 -0
  23. data/app/assets/stylesheets/bootstrap_and_overrides.sass +208 -0
  24. data/app/assets/stylesheets/diff.css +14 -0
  25. data/app/assets/stylesheets/wiki/pages.css.scss +3 -0
  26. data/app/controllers/application_controller.rb +15 -0
  27. data/app/controllers/assignments_controller.rb +30 -0
  28. data/app/controllers/attachments_controller.rb +10 -0
  29. data/app/controllers/comments_controller.rb +24 -0
  30. data/app/controllers/concerns/.keep +0 -0
  31. data/app/controllers/home_controller.rb +7 -0
  32. data/app/controllers/projects_controller.rb +31 -0
  33. data/app/controllers/search_controller.rb +49 -0
  34. data/app/controllers/sink_controller.rb +10 -0
  35. data/app/controllers/tickets_controller.rb +147 -0
  36. data/app/controllers/users/omniauth_callbacks_controller.rb +23 -0
  37. data/app/controllers/wiki/pages_controller.rb +115 -0
  38. data/app/controllers/wiki/spaces_controller.rb +37 -0
  39. data/app/helpers/application_helper.rb +20 -0
  40. data/app/helpers/wiki/pages_helper.rb +2 -0
  41. data/app/inputs/fake_input.rb +6 -0
  42. data/app/mailers/.keep +0 -0
  43. data/app/models/.keep +0 -0
  44. data/app/models/assignment.rb +5 -0
  45. data/app/models/attachment.rb +54 -0
  46. data/app/models/bug.rb +2 -0
  47. data/app/models/comment.rb +6 -0
  48. data/app/models/concerns/.keep +0 -0
  49. data/app/models/page.rb +68 -0
  50. data/app/models/project.rb +2 -0
  51. data/app/models/space.rb +2 -0
  52. data/app/models/story.rb +29 -0
  53. data/app/models/story_detail.rb +3 -0
  54. data/app/models/task.rb +2 -0
  55. data/app/models/ticket.rb +127 -0
  56. data/app/models/user.rb +36 -0
  57. data/app/models/user_verifier.rb +2 -0
  58. data/app/views/comments/_comment.html.haml +6 -0
  59. data/app/views/comments/_form.html.haml +4 -0
  60. data/app/views/comments/create.js.coffee +7 -0
  61. data/app/views/devise/confirmations/new.html.erb +12 -0
  62. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  63. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  64. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  65. data/app/views/devise/passwords/edit.html.erb +16 -0
  66. data/app/views/devise/passwords/new.html.erb +12 -0
  67. data/app/views/devise/registrations/edit.html.erb +29 -0
  68. data/app/views/devise/registrations/new.html.erb +18 -0
  69. data/app/views/devise/sessions/new.html.erb +17 -0
  70. data/app/views/devise/shared/_links.erb +25 -0
  71. data/app/views/devise/unlocks/new.html.erb +12 -0
  72. data/app/views/home/index.html.haml +4 -0
  73. data/app/views/layouts/_activity_wrapper.html.haml +17 -0
  74. data/app/views/layouts/_nav_header.html.haml +26 -0
  75. data/app/views/layouts/_spaces.html.haml +34 -0
  76. data/app/views/layouts/application.html.haml +39 -0
  77. data/app/views/layouts/minimal.html.haml +22 -0
  78. data/app/views/projects/index.html.haml +16 -0
  79. data/app/views/projects/new.html.haml +6 -0
  80. data/app/views/public_activity/ticket/_assignment.html.haml +14 -0
  81. data/app/views/public_activity/ticket/_create_comment.html.haml +10 -0
  82. data/app/views/public_activity/ticket/_created.html.haml +3 -0
  83. data/app/views/public_activity/ticket/_reorder.html.haml +2 -0
  84. data/app/views/public_activity/ticket/_state_change.html.haml +2 -0
  85. data/app/views/public_activity/ticket/_update_details.html.haml +13 -0
  86. data/app/views/tickets/_activity.html.haml +3 -0
  87. data/app/views/tickets/_breadcrumb.html.haml +7 -0
  88. data/app/views/tickets/_bug_form.html.haml +1 -0
  89. data/app/views/tickets/_events_dropdown.html.haml +4 -0
  90. data/app/views/tickets/_form.html.haml +28 -0
  91. data/app/views/tickets/_project_form.html.haml +1 -0
  92. data/app/views/tickets/_story_form.html.haml +15 -0
  93. data/app/views/tickets/_task_form.html.haml +8 -0
  94. data/app/views/tickets/_tickets_listing.html.haml +5 -0
  95. data/app/views/tickets/_title_and_description.html.haml +8 -0
  96. data/app/views/tickets/_tree_node.html.haml +28 -0
  97. data/app/views/tickets/assignment.js.coffee +3 -0
  98. data/app/views/tickets/create.js.coffee +7 -0
  99. data/app/views/tickets/new.html.haml +1 -0
  100. data/app/views/tickets/show.html.haml +64 -0
  101. data/app/views/tickets/trigger_event.js.coffee +12 -0
  102. data/app/views/tickets/update.js.coffee +12 -0
  103. data/app/views/wiki/pages/_attachment.html.haml +5 -0
  104. data/app/views/wiki/pages/_attachments.html.haml +22 -0
  105. data/app/views/wiki/pages/_breadcrumb.html.haml +9 -0
  106. data/app/views/wiki/pages/_child_menu.html.haml +9 -0
  107. data/app/views/wiki/pages/_display.html.haml +138 -0
  108. data/app/views/wiki/pages/_page_header.html.haml +13 -0
  109. data/app/views/wiki/pages/_subpages_dropdown.html.haml +6 -0
  110. data/app/views/wiki/pages/_subtree.html.haml +7 -0
  111. data/app/views/wiki/pages/_tree_node.html.haml +21 -0
  112. data/app/views/wiki/pages/attach.js.coffee +2 -0
  113. data/app/views/wiki/pages/combined.html.haml +8 -0
  114. data/app/views/wiki/pages/create.js.coffee +5 -0
  115. data/app/views/wiki/pages/edit.html.haml +2 -0
  116. data/app/views/wiki/pages/history.html.haml +13 -0
  117. data/app/views/wiki/pages/index.html.haml +2 -0
  118. data/app/views/wiki/pages/new.html.haml +13 -0
  119. data/app/views/wiki/pages/show.html.haml +14 -0
  120. data/app/views/wiki/pages/update.html.haml +2 -0
  121. data/app/views/wiki/spaces/_page_list_item.html.haml +11 -0
  122. data/app/views/wiki/spaces/_space_list.html.haml +4 -0
  123. data/app/views/wiki/spaces/new.html.haml +5 -0
  124. data/app/views/wiki/spaces/space_list.html.haml +1 -0
  125. data/bin/bundle +3 -0
  126. data/bin/rails +4 -0
  127. data/bin/rake +4 -0
  128. data/config/application.rb +30 -0
  129. data/config/boot.rb +4 -0
  130. data/config/database.yml +39 -0
  131. data/config/environment.rb +5 -0
  132. data/config/environments/development.rb +35 -0
  133. data/config/environments/production.rb +80 -0
  134. data/config/environments/test.rb +36 -0
  135. data/config/initializers/backtrace_silencers.rb +7 -0
  136. data/config/initializers/config.rb +4 -0
  137. data/config/initializers/devise.rb +257 -0
  138. data/config/initializers/elasticsearch.rb +9 -0
  139. data/config/initializers/filter_parameter_logging.rb +4 -0
  140. data/config/initializers/gollum.rb +31 -0
  141. data/config/initializers/haml_gfm.rb +66 -0
  142. data/config/initializers/inflections.rb +16 -0
  143. data/config/initializers/mime_types.rb +5 -0
  144. data/config/initializers/secret_token.rb +12 -0
  145. data/config/initializers/session_store.rb +3 -0
  146. data/config/initializers/simple_form.rb +145 -0
  147. data/config/initializers/simple_form_bootstrap.rb +73 -0
  148. data/config/initializers/wrap_parameters.rb +14 -0
  149. data/config/locales/devise.en.yml +59 -0
  150. data/config/locales/en.yml +23 -0
  151. data/config/locales/simple_form.en.yml +26 -0
  152. data/config/routes.rb +101 -0
  153. data/config/tinymce.yml +10 -0
  154. data/config.ru +4 -0
  155. data/db/migrate/20131209041251_create_tickets.rb +13 -0
  156. data/db/migrate/20131210041050_devise_create_users.rb +42 -0
  157. data/db/migrate/20131210043014_add_username_to_users.rb +5 -0
  158. data/db/migrate/20131210045348_add_creator_to_ticket.rb +5 -0
  159. data/db/migrate/20131211034104_create_comments.rb +11 -0
  160. data/db/migrate/20131212073014_create_assignments.rb +12 -0
  161. data/db/migrate/20131215220825_add_position_to_ticket.rb +5 -0
  162. data/db/migrate/20131216044331_create_story_details.rb +12 -0
  163. data/db/migrate/20131218060557_create_activities.rb +23 -0
  164. data/db/migrate/20140109235844_create_pages.rb +14 -0
  165. data/db/migrate/20140112004346_create_attachments.rb +13 -0
  166. data/db/migrate/20140120030547_add_name_to_users.rb +5 -0
  167. data/db/schema.rb +125 -0
  168. data/db/seeds.rb +7 -0
  169. data/init.rb +1 -0
  170. data/lib/assets/.keep +0 -0
  171. data/lib/tasks/.keep +0 -0
  172. data/lib/tawork/engine.rb +13 -0
  173. data/lib/tawork/version.rb +3 -0
  174. data/lib/tawork.rb +4 -0
  175. data/lib/templates/haml/scaffold/_form.html.haml +10 -0
  176. data/lib/ticket_assignment.rb +25 -0
  177. data/log/.keep +0 -0
  178. data/public/401.html +57 -0
  179. data/public/404.html +58 -0
  180. data/public/422.html +58 -0
  181. data/public/500.html +57 -0
  182. data/public/favicon.ico +0 -0
  183. data/public/robots.txt +5 -0
  184. data/tags +279 -0
  185. data/tawork.gemspec +24 -0
  186. data/vendor/.DS_Store +0 -0
  187. data/vendor/assets/.DS_Store +0 -0
  188. data/vendor/assets/javascripts/.keep +0 -0
  189. data/vendor/assets/javascripts/bootstrap-tagsinput.js +503 -0
  190. data/vendor/assets/javascripts/bootstrap-tree.js +15 -0
  191. data/vendor/assets/javascripts/bootstrap-typeahead.js +335 -0
  192. data/vendor/assets/javascripts/hallo.js +2949 -0
  193. data/vendor/assets/javascripts/highlight.pack.js +1 -0
  194. data/vendor/assets/javascripts/jquery.autosize.js +250 -0
  195. data/vendor/assets/javascripts/jquery.mjs.nestedSortable.js +613 -0
  196. data/vendor/assets/javascripts/rangy-core.js +94 -0
  197. data/vendor/assets/javascripts/tinymce/mention/plugin.js +358 -0
  198. data/vendor/assets/stylesheets/.keep +0 -0
  199. data/vendor/assets/stylesheets/bootflat-extensions.css +356 -0
  200. data/vendor/assets/stylesheets/bootflat-square.css +69 -0
  201. data/vendor/assets/stylesheets/bootflat.css +1556 -0
  202. data/vendor/assets/stylesheets/bootstrap-tagsinput.css +45 -0
  203. data/vendor/assets/stylesheets/bootstrap-tree.sass +82 -0
  204. data/vendor/assets/stylesheets/highlight/arta.css +160 -0
  205. data/vendor/assets/stylesheets/highlight/ascetic.css +50 -0
  206. data/vendor/assets/stylesheets/highlight/brown_paper.css +105 -0
  207. data/vendor/assets/stylesheets/highlight/brown_papersq.png +0 -0
  208. data/vendor/assets/stylesheets/highlight/dark.css +105 -0
  209. data/vendor/assets/stylesheets/highlight/default.css +153 -0
  210. data/vendor/assets/stylesheets/highlight/docco.css +132 -0
  211. data/vendor/assets/stylesheets/highlight/far.css +113 -0
  212. data/vendor/assets/stylesheets/highlight/foundation.css +133 -0
  213. data/vendor/assets/stylesheets/highlight/github.css +130 -0
  214. data/vendor/assets/stylesheets/highlight/googlecode.css +146 -0
  215. data/vendor/assets/stylesheets/highlight/idea.css +122 -0
  216. data/vendor/assets/stylesheets/highlight/ir_black.css +105 -0
  217. data/vendor/assets/stylesheets/highlight/magula.css +123 -0
  218. data/vendor/assets/stylesheets/highlight/mono-blue.css +62 -0
  219. data/vendor/assets/stylesheets/highlight/monokai.css +127 -0
  220. data/vendor/assets/stylesheets/highlight/monokai_sublime.css +102 -0
  221. data/vendor/assets/stylesheets/highlight/obsidian.css +154 -0
  222. data/vendor/assets/stylesheets/highlight/pojoaque.css +105 -0
  223. data/vendor/assets/stylesheets/highlight/pojoaque.jpg +0 -0
  224. data/vendor/assets/stylesheets/highlight/railscasts.css +182 -0
  225. data/vendor/assets/stylesheets/highlight/rainbow.css +115 -0
  226. data/vendor/assets/stylesheets/highlight/school_book.css +113 -0
  227. data/vendor/assets/stylesheets/highlight/school_book.png +0 -0
  228. data/vendor/assets/stylesheets/highlight/solarized_dark.css +92 -0
  229. data/vendor/assets/stylesheets/highlight/solarized_light.css +92 -0
  230. data/vendor/assets/stylesheets/highlight/sunburst.css +160 -0
  231. data/vendor/assets/stylesheets/highlight/tomorrow-night-blue.css +52 -0
  232. data/vendor/assets/stylesheets/highlight/tomorrow-night-bright.css +51 -0
  233. data/vendor/assets/stylesheets/highlight/tomorrow-night-eighties.css +51 -0
  234. data/vendor/assets/stylesheets/highlight/tomorrow-night.css +52 -0
  235. data/vendor/assets/stylesheets/highlight/tomorrow.css +49 -0
  236. data/vendor/assets/stylesheets/highlight/vs.css +89 -0
  237. data/vendor/assets/stylesheets/highlight/xcode.css +157 -0
  238. data/vendor/assets/stylesheets/highlight/zenburn.css +117 -0
  239. metadata +299 -0
@@ -0,0 +1,157 @@
1
+ /*
2
+
3
+ XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
4
+
5
+ */
6
+
7
+ pre code {
8
+ display: block; padding: 0.5em;
9
+ background: #fff; color: black;
10
+ }
11
+
12
+ pre .comment,
13
+ pre .template_comment,
14
+ pre .javadoc,
15
+ pre .comment * {
16
+ color: rgb(0,106,0);
17
+ }
18
+
19
+ pre .keyword,
20
+ pre .literal,
21
+ pre .nginx .title {
22
+ color: rgb(170,13,145);
23
+ }
24
+ pre .method,
25
+ pre .list .title,
26
+ pre .tag .title,
27
+ pre .setting .value,
28
+ pre .winutils,
29
+ pre .tex .command,
30
+ pre .http .title,
31
+ pre .request,
32
+ pre .status {
33
+ color: #008;
34
+ }
35
+
36
+ pre .envvar,
37
+ pre .tex .special {
38
+ color: #660;
39
+ }
40
+
41
+ pre .string {
42
+ color: rgb(196,26,22);
43
+ }
44
+ pre .tag .value,
45
+ pre .cdata,
46
+ pre .filter .argument,
47
+ pre .attr_selector,
48
+ pre .apache .cbracket,
49
+ pre .date,
50
+ pre .regexp {
51
+ color: #080;
52
+ }
53
+
54
+ pre .sub .identifier,
55
+ pre .pi,
56
+ pre .tag,
57
+ pre .tag .keyword,
58
+ pre .decorator,
59
+ pre .ini .title,
60
+ pre .shebang,
61
+ pre .prompt,
62
+ pre .hexcolor,
63
+ pre .rules .value,
64
+ pre .css .value .number,
65
+ pre .symbol,
66
+ pre .symbol .string,
67
+ pre .number,
68
+ pre .css .function,
69
+ pre .clojure .title,
70
+ pre .clojure .built_in,
71
+ pre .function .title,
72
+ pre .coffeescript .attribute {
73
+ color: rgb(28,0,207);
74
+ }
75
+
76
+ pre .class .title,
77
+ pre .haskell .type,
78
+ pre .smalltalk .class,
79
+ pre .javadoctag,
80
+ pre .yardoctag,
81
+ pre .phpdoc,
82
+ pre .typename,
83
+ pre .tag .attribute,
84
+ pre .doctype,
85
+ pre .class .id,
86
+ pre .built_in,
87
+ pre .setting,
88
+ pre .params,
89
+ pre .clojure .attribute {
90
+ color: rgb(92,38,153);
91
+ }
92
+
93
+ pre .variable {
94
+ color: rgb(63,110,116);
95
+ }
96
+ pre .css .tag,
97
+ pre .rules .property,
98
+ pre .pseudo,
99
+ pre .subst {
100
+ color: #000;
101
+ }
102
+
103
+ pre .css .class, pre .css .id {
104
+ color: #9B703F;
105
+ }
106
+
107
+ pre .value .important {
108
+ color: #ff7700;
109
+ font-weight: bold;
110
+ }
111
+
112
+ pre .rules .keyword {
113
+ color: #C5AF75;
114
+ }
115
+
116
+ pre .annotation,
117
+ pre .apache .sqbracket,
118
+ pre .nginx .built_in {
119
+ color: #9B859D;
120
+ }
121
+
122
+ pre .preprocessor,
123
+ pre .preprocessor *,
124
+ pre .pragma {
125
+ color: rgb(100,56,32);
126
+ }
127
+
128
+ pre .tex .formula {
129
+ background-color: #EEE;
130
+ font-style: italic;
131
+ }
132
+
133
+ pre .diff .header,
134
+ pre .chunk {
135
+ color: #808080;
136
+ font-weight: bold;
137
+ }
138
+
139
+ pre .diff .change {
140
+ background-color: #BCCFF9;
141
+ }
142
+
143
+ pre .addition {
144
+ background-color: #BAEEBA;
145
+ }
146
+
147
+ pre .deletion {
148
+ background-color: #FFC8BD;
149
+ }
150
+
151
+ pre .comment .yardoctag {
152
+ font-weight: bold;
153
+ }
154
+
155
+ pre .method .id {
156
+ color: #000;
157
+ }
@@ -0,0 +1,117 @@
1
+ /*
2
+
3
+ Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
4
+ based on dark.css by Ivan Sagalaev
5
+
6
+ */
7
+
8
+ pre code {
9
+ display: block; padding: 0.5em;
10
+ background: #3F3F3F;
11
+ color: #DCDCDC;
12
+ }
13
+
14
+ pre .keyword,
15
+ pre .tag,
16
+ pre .css .class,
17
+ pre .css .id,
18
+ pre .lisp .title,
19
+ pre .nginx .title,
20
+ pre .request,
21
+ pre .status,
22
+ pre .clojure .attribute {
23
+ color: #E3CEAB;
24
+ }
25
+
26
+ pre .django .template_tag,
27
+ pre .django .variable,
28
+ pre .django .filter .argument {
29
+ color: #DCDCDC;
30
+ }
31
+
32
+ pre .number,
33
+ pre .date {
34
+ color: #8CD0D3;
35
+ }
36
+
37
+ pre .dos .envvar,
38
+ pre .dos .stream,
39
+ pre .variable,
40
+ pre .apache .sqbracket {
41
+ color: #EFDCBC;
42
+ }
43
+
44
+ pre .dos .flow,
45
+ pre .diff .change,
46
+ pre .python .exception,
47
+ pre .python .built_in,
48
+ pre .literal,
49
+ pre .tex .special {
50
+ color: #EFEFAF;
51
+ }
52
+
53
+ pre .diff .chunk,
54
+ pre .subst {
55
+ color: #8F8F8F;
56
+ }
57
+
58
+ pre .dos .keyword,
59
+ pre .python .decorator,
60
+ pre .title,
61
+ pre .haskell .type,
62
+ pre .diff .header,
63
+ pre .ruby .class .parent,
64
+ pre .apache .tag,
65
+ pre .nginx .built_in,
66
+ pre .tex .command,
67
+ pre .prompt {
68
+ color: #efef8f;
69
+ }
70
+
71
+ pre .dos .winutils,
72
+ pre .ruby .symbol,
73
+ pre .ruby .symbol .string,
74
+ pre .ruby .string {
75
+ color: #DCA3A3;
76
+ }
77
+
78
+ pre .diff .deletion,
79
+ pre .string,
80
+ pre .tag .value,
81
+ pre .preprocessor,
82
+ pre .pragma,
83
+ pre .built_in,
84
+ pre .sql .aggregate,
85
+ pre .javadoc,
86
+ pre .smalltalk .class,
87
+ pre .smalltalk .localvars,
88
+ pre .smalltalk .array,
89
+ pre .css .rules .value,
90
+ pre .attr_selector,
91
+ pre .pseudo,
92
+ pre .apache .cbracket,
93
+ pre .tex .formula,
94
+ pre .coffeescript .attribute {
95
+ color: #CC9393;
96
+ }
97
+
98
+ pre .shebang,
99
+ pre .diff .addition,
100
+ pre .comment,
101
+ pre .java .annotation,
102
+ pre .template_comment,
103
+ pre .pi,
104
+ pre .doctype {
105
+ color: #7F9F7F;
106
+ }
107
+
108
+ pre .coffeescript .javascript,
109
+ pre .javascript .xml,
110
+ pre .tex .formula,
111
+ pre .xml .javascript,
112
+ pre .xml .vbscript,
113
+ pre .xml .css,
114
+ pre .xml .cdata {
115
+ opacity: 0.5;
116
+ }
117
+
metadata ADDED
@@ -0,0 +1,299 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tawork
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Adnan Ali
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ type: :runtime
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: 4.1.0.beta1
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.0.beta1
27
+ description: Wiki and Tickets
28
+ email:
29
+ - adnan.ali@gmail.com
30
+ executables:
31
+ - bundle
32
+ - rails
33
+ - rake
34
+ extensions: []
35
+ extra_rdoc_files: []
36
+ files:
37
+ - .DS_Store
38
+ - .gitignore
39
+ - Gemfile
40
+ - Gemfile.lock
41
+ - MIT-LICENSE
42
+ - Procfile
43
+ - README.md
44
+ - Rakefile
45
+ - app/assets/images/.keep
46
+ - app/assets/javascripts/application.js
47
+ - app/assets/javascripts/backbone/models/.gitkeep
48
+ - app/assets/javascripts/backbone/routers/.gitkeep
49
+ - app/assets/javascripts/backbone/tawork.js.coffee
50
+ - app/assets/javascripts/backbone/templates/.gitkeep
51
+ - app/assets/javascripts/backbone/views/.gitkeep
52
+ - app/assets/javascripts/backbone/views/page.js.coffee
53
+ - app/assets/javascripts/backbone/views/ticket.js.coffee
54
+ - app/assets/javascripts/backbone/views/tree_node_page.js.coffee
55
+ - app/assets/javascripts/backbone/views/tree_node_ticket.js.coffee
56
+ - app/assets/javascripts/wiki/pages.js.coffee
57
+ - app/assets/stylesheets/application.css
58
+ - app/assets/stylesheets/bootstrap_and_overrides.sass
59
+ - app/assets/stylesheets/diff.css
60
+ - app/assets/stylesheets/wiki/pages.css.scss
61
+ - app/controllers/application_controller.rb
62
+ - app/controllers/assignments_controller.rb
63
+ - app/controllers/attachments_controller.rb
64
+ - app/controllers/comments_controller.rb
65
+ - app/controllers/concerns/.keep
66
+ - app/controllers/home_controller.rb
67
+ - app/controllers/projects_controller.rb
68
+ - app/controllers/search_controller.rb
69
+ - app/controllers/sink_controller.rb
70
+ - app/controllers/tickets_controller.rb
71
+ - app/controllers/users/omniauth_callbacks_controller.rb
72
+ - app/controllers/wiki/pages_controller.rb
73
+ - app/controllers/wiki/spaces_controller.rb
74
+ - app/helpers/application_helper.rb
75
+ - app/helpers/wiki/pages_helper.rb
76
+ - app/inputs/fake_input.rb
77
+ - app/mailers/.keep
78
+ - app/models/.keep
79
+ - app/models/assignment.rb
80
+ - app/models/attachment.rb
81
+ - app/models/bug.rb
82
+ - app/models/comment.rb
83
+ - app/models/concerns/.keep
84
+ - app/models/page.rb
85
+ - app/models/project.rb
86
+ - app/models/space.rb
87
+ - app/models/story.rb
88
+ - app/models/story_detail.rb
89
+ - app/models/task.rb
90
+ - app/models/ticket.rb
91
+ - app/models/user.rb
92
+ - app/models/user_verifier.rb
93
+ - app/views/comments/_comment.html.haml
94
+ - app/views/comments/_form.html.haml
95
+ - app/views/comments/create.js.coffee
96
+ - app/views/devise/confirmations/new.html.erb
97
+ - app/views/devise/mailer/confirmation_instructions.html.erb
98
+ - app/views/devise/mailer/reset_password_instructions.html.erb
99
+ - app/views/devise/mailer/unlock_instructions.html.erb
100
+ - app/views/devise/passwords/edit.html.erb
101
+ - app/views/devise/passwords/new.html.erb
102
+ - app/views/devise/registrations/edit.html.erb
103
+ - app/views/devise/registrations/new.html.erb
104
+ - app/views/devise/sessions/new.html.erb
105
+ - app/views/devise/shared/_links.erb
106
+ - app/views/devise/unlocks/new.html.erb
107
+ - app/views/home/index.html.haml
108
+ - app/views/layouts/_activity_wrapper.html.haml
109
+ - app/views/layouts/_nav_header.html.haml
110
+ - app/views/layouts/_spaces.html.haml
111
+ - app/views/layouts/application.html.haml
112
+ - app/views/layouts/minimal.html.haml
113
+ - app/views/projects/index.html.haml
114
+ - app/views/projects/new.html.haml
115
+ - app/views/public_activity/ticket/_assignment.html.haml
116
+ - app/views/public_activity/ticket/_create_comment.html.haml
117
+ - app/views/public_activity/ticket/_created.html.haml
118
+ - app/views/public_activity/ticket/_reorder.html.haml
119
+ - app/views/public_activity/ticket/_state_change.html.haml
120
+ - app/views/public_activity/ticket/_update_details.html.haml
121
+ - app/views/tickets/_activity.html.haml
122
+ - app/views/tickets/_breadcrumb.html.haml
123
+ - app/views/tickets/_bug_form.html.haml
124
+ - app/views/tickets/_events_dropdown.html.haml
125
+ - app/views/tickets/_form.html.haml
126
+ - app/views/tickets/_project_form.html.haml
127
+ - app/views/tickets/_story_form.html.haml
128
+ - app/views/tickets/_task_form.html.haml
129
+ - app/views/tickets/_tickets_listing.html.haml
130
+ - app/views/tickets/_title_and_description.html.haml
131
+ - app/views/tickets/_tree_node.html.haml
132
+ - app/views/tickets/assignment.js.coffee
133
+ - app/views/tickets/create.js.coffee
134
+ - app/views/tickets/new.html.haml
135
+ - app/views/tickets/show.html.haml
136
+ - app/views/tickets/trigger_event.js.coffee
137
+ - app/views/tickets/update.js.coffee
138
+ - app/views/wiki/pages/_attachment.html.haml
139
+ - app/views/wiki/pages/_attachments.html.haml
140
+ - app/views/wiki/pages/_breadcrumb.html.haml
141
+ - app/views/wiki/pages/_child_menu.html.haml
142
+ - app/views/wiki/pages/_display.html.haml
143
+ - app/views/wiki/pages/_page_header.html.haml
144
+ - app/views/wiki/pages/_subpages_dropdown.html.haml
145
+ - app/views/wiki/pages/_subtree.html.haml
146
+ - app/views/wiki/pages/_tree_node.html.haml
147
+ - app/views/wiki/pages/attach.js.coffee
148
+ - app/views/wiki/pages/combined.html.haml
149
+ - app/views/wiki/pages/create.js.coffee
150
+ - app/views/wiki/pages/edit.html.haml
151
+ - app/views/wiki/pages/history.html.haml
152
+ - app/views/wiki/pages/index.html.haml
153
+ - app/views/wiki/pages/new.html.haml
154
+ - app/views/wiki/pages/show.html.haml
155
+ - app/views/wiki/pages/update.html.haml
156
+ - app/views/wiki/spaces/_page_list_item.html.haml
157
+ - app/views/wiki/spaces/_space_list.html.haml
158
+ - app/views/wiki/spaces/new.html.haml
159
+ - app/views/wiki/spaces/space_list.html.haml
160
+ - bin/bundle
161
+ - bin/rails
162
+ - bin/rake
163
+ - config.ru
164
+ - config/application.rb
165
+ - config/boot.rb
166
+ - config/database.yml
167
+ - config/environment.rb
168
+ - config/environments/development.rb
169
+ - config/environments/production.rb
170
+ - config/environments/test.rb
171
+ - config/initializers/backtrace_silencers.rb
172
+ - config/initializers/config.rb
173
+ - config/initializers/devise.rb
174
+ - config/initializers/elasticsearch.rb
175
+ - config/initializers/filter_parameter_logging.rb
176
+ - config/initializers/gollum.rb
177
+ - config/initializers/haml_gfm.rb
178
+ - config/initializers/inflections.rb
179
+ - config/initializers/mime_types.rb
180
+ - config/initializers/secret_token.rb
181
+ - config/initializers/session_store.rb
182
+ - config/initializers/simple_form.rb
183
+ - config/initializers/simple_form_bootstrap.rb
184
+ - config/initializers/wrap_parameters.rb
185
+ - config/locales/devise.en.yml
186
+ - config/locales/en.yml
187
+ - config/locales/simple_form.en.yml
188
+ - config/routes.rb
189
+ - config/tinymce.yml
190
+ - db/migrate/20131209041251_create_tickets.rb
191
+ - db/migrate/20131210041050_devise_create_users.rb
192
+ - db/migrate/20131210043014_add_username_to_users.rb
193
+ - db/migrate/20131210045348_add_creator_to_ticket.rb
194
+ - db/migrate/20131211034104_create_comments.rb
195
+ - db/migrate/20131212073014_create_assignments.rb
196
+ - db/migrate/20131215220825_add_position_to_ticket.rb
197
+ - db/migrate/20131216044331_create_story_details.rb
198
+ - db/migrate/20131218060557_create_activities.rb
199
+ - db/migrate/20140109235844_create_pages.rb
200
+ - db/migrate/20140112004346_create_attachments.rb
201
+ - db/migrate/20140120030547_add_name_to_users.rb
202
+ - db/schema.rb
203
+ - db/seeds.rb
204
+ - init.rb
205
+ - lib/assets/.keep
206
+ - lib/tasks/.keep
207
+ - lib/tawork.rb
208
+ - lib/tawork/engine.rb
209
+ - lib/tawork/version.rb
210
+ - lib/templates/haml/scaffold/_form.html.haml
211
+ - lib/ticket_assignment.rb
212
+ - log/.keep
213
+ - public/401.html
214
+ - public/404.html
215
+ - public/422.html
216
+ - public/500.html
217
+ - public/favicon.ico
218
+ - public/robots.txt
219
+ - tags
220
+ - tawork.gemspec
221
+ - vendor/.DS_Store
222
+ - vendor/assets/.DS_Store
223
+ - vendor/assets/javascripts/.keep
224
+ - vendor/assets/javascripts/bootstrap-tagsinput.js
225
+ - vendor/assets/javascripts/bootstrap-tree.js
226
+ - vendor/assets/javascripts/bootstrap-typeahead.js
227
+ - vendor/assets/javascripts/hallo.js
228
+ - vendor/assets/javascripts/highlight.pack.js
229
+ - vendor/assets/javascripts/jquery.autosize.js
230
+ - vendor/assets/javascripts/jquery.mjs.nestedSortable.js
231
+ - vendor/assets/javascripts/rangy-core.js
232
+ - vendor/assets/javascripts/tinymce/mention/plugin.js
233
+ - vendor/assets/stylesheets/.keep
234
+ - vendor/assets/stylesheets/bootflat-extensions.css
235
+ - vendor/assets/stylesheets/bootflat-square.css
236
+ - vendor/assets/stylesheets/bootflat.css
237
+ - vendor/assets/stylesheets/bootstrap-tagsinput.css
238
+ - vendor/assets/stylesheets/bootstrap-tree.sass
239
+ - vendor/assets/stylesheets/highlight/arta.css
240
+ - vendor/assets/stylesheets/highlight/ascetic.css
241
+ - vendor/assets/stylesheets/highlight/brown_paper.css
242
+ - vendor/assets/stylesheets/highlight/brown_papersq.png
243
+ - vendor/assets/stylesheets/highlight/dark.css
244
+ - vendor/assets/stylesheets/highlight/default.css
245
+ - vendor/assets/stylesheets/highlight/docco.css
246
+ - vendor/assets/stylesheets/highlight/far.css
247
+ - vendor/assets/stylesheets/highlight/foundation.css
248
+ - vendor/assets/stylesheets/highlight/github.css
249
+ - vendor/assets/stylesheets/highlight/googlecode.css
250
+ - vendor/assets/stylesheets/highlight/idea.css
251
+ - vendor/assets/stylesheets/highlight/ir_black.css
252
+ - vendor/assets/stylesheets/highlight/magula.css
253
+ - vendor/assets/stylesheets/highlight/mono-blue.css
254
+ - vendor/assets/stylesheets/highlight/monokai.css
255
+ - vendor/assets/stylesheets/highlight/monokai_sublime.css
256
+ - vendor/assets/stylesheets/highlight/obsidian.css
257
+ - vendor/assets/stylesheets/highlight/pojoaque.css
258
+ - vendor/assets/stylesheets/highlight/pojoaque.jpg
259
+ - vendor/assets/stylesheets/highlight/railscasts.css
260
+ - vendor/assets/stylesheets/highlight/rainbow.css
261
+ - vendor/assets/stylesheets/highlight/school_book.css
262
+ - vendor/assets/stylesheets/highlight/school_book.png
263
+ - vendor/assets/stylesheets/highlight/solarized_dark.css
264
+ - vendor/assets/stylesheets/highlight/solarized_light.css
265
+ - vendor/assets/stylesheets/highlight/sunburst.css
266
+ - vendor/assets/stylesheets/highlight/tomorrow-night-blue.css
267
+ - vendor/assets/stylesheets/highlight/tomorrow-night-bright.css
268
+ - vendor/assets/stylesheets/highlight/tomorrow-night-eighties.css
269
+ - vendor/assets/stylesheets/highlight/tomorrow-night.css
270
+ - vendor/assets/stylesheets/highlight/tomorrow.css
271
+ - vendor/assets/stylesheets/highlight/vs.css
272
+ - vendor/assets/stylesheets/highlight/xcode.css
273
+ - vendor/assets/stylesheets/highlight/zenburn.css
274
+ homepage: ''
275
+ licenses:
276
+ - MIT
277
+ metadata: {}
278
+ post_install_message:
279
+ rdoc_options: []
280
+ require_paths:
281
+ - lib
282
+ required_ruby_version: !ruby/object:Gem::Requirement
283
+ requirements:
284
+ - - '>='
285
+ - !ruby/object:Gem::Version
286
+ version: '0'
287
+ required_rubygems_version: !ruby/object:Gem::Requirement
288
+ requirements:
289
+ - - '>='
290
+ - !ruby/object:Gem::Version
291
+ version: '0'
292
+ requirements: []
293
+ rubyforge_project:
294
+ rubygems_version: 2.1.11
295
+ signing_key:
296
+ specification_version: 4
297
+ summary: Wiki and Tickets
298
+ test_files: []
299
+ has_rdoc: