the_jobbook_admin_data 1.3.0a

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. data/.gitignore +19 -0
  2. data/CHANGELOG.rdoc +284 -0
  3. data/Gemfile +22 -0
  4. data/Gemfile.lock +121 -0
  5. data/Guardfile +14 -0
  6. data/MIT-LICENSE +20 -0
  7. data/README.md +37 -0
  8. data/README.rdoc +3 -0
  9. data/Rakefile +40 -0
  10. data/admin_data.gemspec +23 -0
  11. data/app/assets/images/add.png +0 -0
  12. data/app/assets/images/admin_data/.gitkeep +0 -0
  13. data/app/assets/images/no.png +0 -0
  14. data/app/assets/images/site.png +0 -0
  15. data/app/assets/images/sort_by_asc.jpg +0 -0
  16. data/app/assets/images/sort_by_desc.jpg +0 -0
  17. data/app/assets/images/sort_by_nothing.jpg +0 -0
  18. data/app/assets/javascripts/admin_data.js +18 -0
  19. data/app/assets/javascripts/admin_data/application.js +15 -0
  20. data/app/assets/javascripts/advance_search/act_on_result.js +45 -0
  21. data/app/assets/javascripts/advance_search/advance_search.js +83 -0
  22. data/app/assets/javascripts/advance_search/advance_search_structure.js +79 -0
  23. data/app/assets/javascripts/advance_search/ajaxify_advance_search.js +28 -0
  24. data/app/assets/javascripts/advance_search/build_first_row.js +8 -0
  25. data/app/assets/javascripts/advance_search/event_bindings.js +76 -0
  26. data/app/assets/javascripts/advance_search/global_ajax_setting.js +10 -0
  27. data/app/assets/javascripts/advance_search/sortby.js +14 -0
  28. data/app/assets/javascripts/advance_search/trigger_submit_on_domready.js +6 -0
  29. data/app/assets/javascripts/analytics/report.js +7 -0
  30. data/app/assets/javascripts/misc/drop_down_change.js +8 -0
  31. data/app/assets/javascripts/misc/js_util.js +58 -0
  32. data/app/assets/javascripts/misc/quick_search_input_focus.js +6 -0
  33. data/app/assets/javascripts/vendor/jquery-1.4.2.js +6240 -0
  34. data/app/assets/javascripts/vendor/jquery-ui-1.7.2.custom.min.js +298 -0
  35. data/app/assets/javascripts/vendor/jquery.ba-isjquery.js +21 -0
  36. data/app/assets/javascripts/vendor/jquery_form.js +814 -0
  37. data/app/assets/javascripts/vendor/log.js +9 -0
  38. data/app/assets/javascripts/vendor/rails.js +132 -0
  39. data/app/assets/stylesheets/admin_data.css +1141 -0
  40. data/app/assets/stylesheets/admin_data/application.css +13 -0
  41. data/app/assets/stylesheets/vendor/jquery-ui-1.7.2.custom.css +406 -0
  42. data/app/controllers/admin_data/application_controller.rb +107 -0
  43. data/app/controllers/admin_data/crud_controller.rb +100 -0
  44. data/app/controllers/admin_data/feed_controller.rb +48 -0
  45. data/app/controllers/admin_data/home_controller.rb +8 -0
  46. data/app/controllers/admin_data/migration_controller.rb +18 -0
  47. data/app/controllers/admin_data/public_controller.rb +28 -0
  48. data/app/controllers/admin_data/search_controller.rb +143 -0
  49. data/app/controllers/admin_data/table_structure_controller.rb +25 -0
  50. data/app/helpers/admin_data/application_helper.rb +320 -0
  51. data/app/views/admin_data/crud/association/_association_info.html.erb +11 -0
  52. data/app/views/admin_data/crud/association/_belongs_to_info.html.erb +7 -0
  53. data/app/views/admin_data/crud/association/_habtm_info.html.erb +7 -0
  54. data/app/views/admin_data/crud/association/_has_many_info.html.erb +7 -0
  55. data/app/views/admin_data/crud/association/_has_one_info.html.erb +6 -0
  56. data/app/views/admin_data/crud/edit.html.erb +36 -0
  57. data/app/views/admin_data/crud/misc/_form.html.erb +38 -0
  58. data/app/views/admin_data/crud/misc/_modify_record.html.erb +18 -0
  59. data/app/views/admin_data/crud/new.html.erb +25 -0
  60. data/app/views/admin_data/crud/show.html.erb +42 -0
  61. data/app/views/admin_data/feed/index.rss.builder +25 -0
  62. data/app/views/admin_data/home/index.html.erb +21 -0
  63. data/app/views/admin_data/migration/index.html.erb +18 -0
  64. data/app/views/admin_data/migration/jstest.html.erb +51 -0
  65. data/app/views/admin_data/search/advance_search.html.erb +1 -0
  66. data/app/views/admin_data/search/quick_search.html.erb +1 -0
  67. data/app/views/admin_data/search/search/_advance_search_form.html.erb +52 -0
  68. data/app/views/admin_data/search/search/_errors.html.erb +5 -0
  69. data/app/views/admin_data/search/search/_listing.html.erb +43 -0
  70. data/app/views/admin_data/search/search/_search_form.html.erb +27 -0
  71. data/app/views/admin_data/search/search/_title.html.erb +34 -0
  72. data/app/views/admin_data/shared/_breadcrum.html.erb +16 -0
  73. data/app/views/admin_data/shared/_drop_down_klasses.html.erb +4 -0
  74. data/app/views/admin_data/shared/_flash_message.html.erb +13 -0
  75. data/app/views/admin_data/shared/_header.html.erb +20 -0
  76. data/app/views/admin_data/shared/_powered_by.html.erb +6 -0
  77. data/app/views/admin_data/shared/_secondary_navigation.html.erb +26 -0
  78. data/app/views/admin_data/table_structure/index.html.erb +54 -0
  79. data/app/views/layouts/admin_data.html.erb +34 -0
  80. data/app/views/layouts/admin_data/application.html.erb +14 -0
  81. data/app/views/layouts/search.html.erb +71 -0
  82. data/config/routes.rb +32 -0
  83. data/lib/admin_data.rb +27 -0
  84. data/lib/admin_data/active_record_util.rb +102 -0
  85. data/lib/admin_data/analytics.rb +176 -0
  86. data/lib/admin_data/authenticator.rb +15 -0
  87. data/lib/admin_data/config.rb +38 -0
  88. data/lib/admin_data/configuration.rb +127 -0
  89. data/lib/admin_data/date_util.rb +58 -0
  90. data/lib/admin_data/engine.rb +17 -0
  91. data/lib/admin_data/model_finder.rb +15 -0
  92. data/lib/admin_data/rails_version_check.rb +8 -0
  93. data/lib/admin_data/search.rb +188 -0
  94. data/lib/admin_data/setup_config.rb +24 -0
  95. data/lib/admin_data/util.rb +102 -0
  96. data/lib/admin_data/version.rb +3 -0
  97. data/lib/tasks/admin_data_tasks.rake +4 -0
  98. data/script/rails +8 -0
  99. data/test/admin_data_test.rb +7 -0
  100. data/test/dummy/README.md +19 -0
  101. data/test/dummy/Rakefile +7 -0
  102. data/test/dummy/app/controllers/application_controller.rb +3 -0
  103. data/test/dummy/app/helpers/application_helper.rb +5 -0
  104. data/test/dummy/app/models/user.rb +3 -0
  105. data/test/dummy/app/models/user/student.rb +2 -0
  106. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  107. data/test/dummy/config.ru +4 -0
  108. data/test/dummy/config/application.rb +15 -0
  109. data/test/dummy/config/boot.rb +13 -0
  110. data/test/dummy/config/cucumber.yml +9 -0
  111. data/test/dummy/config/database.yml +25 -0
  112. data/test/dummy/config/database.yml.mysql +22 -0
  113. data/test/dummy/config/database.yml.pg +15 -0
  114. data/test/dummy/config/database.yml.sqlite3 +25 -0
  115. data/test/dummy/config/environment.rb +5 -0
  116. data/test/dummy/config/environments/development.rb +22 -0
  117. data/test/dummy/config/environments/production.rb +49 -0
  118. data/test/dummy/config/environments/test.rb +35 -0
  119. data/test/dummy/config/initializers/admin_data.rb +15 -0
  120. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  121. data/test/dummy/config/initializers/empty_spaces_to_nil.rb +10 -0
  122. data/test/dummy/config/initializers/inflections.rb +10 -0
  123. data/test/dummy/config/initializers/mime_types.rb +5 -0
  124. data/test/dummy/config/initializers/secret_token.rb +7 -0
  125. data/test/dummy/config/initializers/session_store.rb +8 -0
  126. data/test/dummy/config/locales/en.yml +5 -0
  127. data/test/dummy/config/routes.rb +9 -0
  128. data/test/dummy/db/development.sqlite3 +0 -0
  129. data/test/dummy/db/migrate/20091030202259_create_tables.rb +72 -0
  130. data/test/dummy/db/production.sqlite3 +1 -0
  131. data/test/dummy/db/schema.rb +23 -0
  132. data/test/dummy/db/seeds.rb +40 -0
  133. data/test/dummy/db/test.sqlite3 +0 -0
  134. data/test/dummy/features/advance_search/boolean.feature +74 -0
  135. data/test/dummy/features/advance_search/datetime.feature +101 -0
  136. data/test/dummy/features/advance_search/delete_all.feature +20 -0
  137. data/test/dummy/features/advance_search/destroy_all.feature +20 -0
  138. data/test/dummy/features/advance_search/integer.feature +69 -0
  139. data/test/dummy/features/advance_search/multiple_rows.feature +87 -0
  140. data/test/dummy/features/advance_search/string.feature +130 -0
  141. data/test/dummy/features/crud.feature +50 -0
  142. data/test/dummy/features/crud_show.feature +56 -0
  143. data/test/dummy/features/feed.feature +13 -0
  144. data/test/dummy/features/home.feature +42 -0
  145. data/test/dummy/features/migration.feature +7 -0
  146. data/test/dummy/features/quick_search.feature +113 -0
  147. data/test/dummy/features/step_definitions/advance_search_steps.rb +13 -0
  148. data/test/dummy/features/step_definitions/app_steps.rb +36 -0
  149. data/test/dummy/features/step_definitions/async.rb +18 -0
  150. data/test/dummy/features/step_definitions/configuration_steps.rb +61 -0
  151. data/test/dummy/features/step_definitions/crud_show_steps.rb +37 -0
  152. data/test/dummy/features/step_definitions/feed_steps.rb +24 -0
  153. data/test/dummy/features/step_definitions/quick_search_steps.rb +68 -0
  154. data/test/dummy/features/step_definitions/util.rb +90 -0
  155. data/test/dummy/features/step_definitions/web_steps.rb +219 -0
  156. data/test/dummy/features/support/env.rb +66 -0
  157. data/test/dummy/features/support/hooks.rb +9 -0
  158. data/test/dummy/features/support/paths.rb +33 -0
  159. data/test/dummy/features/table_structure.feature +18 -0
  160. data/test/dummy/lib/tasks/.gitkeep +0 -0
  161. data/test/dummy/lib/tasks/cucumber.rake +53 -0
  162. data/test/dummy/lib/tasks/dbs.rake +30 -0
  163. data/test/dummy/lib/tasks/sample_cars.rake +18 -0
  164. data/test/dummy/public/.gitkeep +0 -0
  165. data/test/dummy/script/cucumber +10 -0
  166. data/test/dummy/script/rails +6 -0
  167. data/test/dummy/test/factories.rb +30 -0
  168. data/test/dummy/test/test_helper.rb +7 -0
  169. data/test/integration/navigation_test.rb +10 -0
  170. data/test/test_helper.rb +15 -0
  171. data/test/unit/admin_data/model_finder_test.rb +16 -0
  172. data/test/unit/car_test.rb +96 -0
  173. data/test/unit/user_phone_test.rb +19 -0
  174. metadata +253 -0
data/.gitignore ADDED
@@ -0,0 +1,19 @@
1
+ *.log
2
+ tmp/*
3
+ .DS_Store
4
+ *.swp
5
+ *.db
6
+ response.html
7
+ tags
8
+ pkg
9
+ .rvmrc
10
+ admindatademo/
11
+
12
+ test/rails_root/tmp/**/*
13
+ test/rails_root/log/*.*
14
+ test/rails_root/vendor/**/*.*
15
+ test/rails_root/db/*.sqlite3
16
+ test/rails_root/.rvmrc
17
+ test/rails_root/.bundle
18
+ test/rails_root/.bundle/*
19
+ test/rails_root/config/database.yml
data/CHANGELOG.rdoc ADDED
@@ -0,0 +1,284 @@
1
+ == 1.1.13
2
+
3
+ * 24-June-2011
4
+ * Analytics feature
5
+ * Remove failing and not useful test
6
+ * Better sorting for advance search
7
+ * Better sorting for quick search
8
+
9
+ == 2010-12-07
10
+
11
+ * new router api
12
+ * new configuration api. It is not backward compatible. However the error message is nice.
13
+ * cucumber tests are inside the repo
14
+ * support for column_headers
15
+ * support for column_settings
16
+
17
+ == 2010-11-08 v1.0.20
18
+
19
+ * support for habtm
20
+ * do not get the list of nested models. It breaks routing. Comprehensive nested models fix coming soon.
21
+
22
+ == 2010-11-08 v1.0.19
23
+
24
+ * used unscoped on the model to have basic search result always in the order user wants
25
+ * remove inline css
26
+
27
+ == 2010-11-08 v1.0.18
28
+
29
+ * disable the columns not being used
30
+ * use parseJSON instead of eval
31
+ * javascript variable declaration refactoring
32
+
33
+ == 2010-10-12 v1.0.17
34
+
35
+ * use image for advance search add and remove link
36
+ * fix bug regarding "Destroy All"
37
+ * layout change
38
+ * have only one drop down in the homepage
39
+
40
+
41
+ == 2010-09-22 v1.0.11
42
+
43
+ == 2010-10-12 v1.0.14
44
+
45
+ * use the new way of routing. remove deprecation
46
+
47
+ == 2010-09-22 v1.0.11
48
+
49
+ * fix for pagination not working in chrome
50
+ * css cleanup
51
+ * JavaScript cleanup
52
+ * bumped up jQuery from 1.4.1 to jQuery 1.4.2
53
+
54
+ == 2010-09-09 v1.0.10
55
+
56
+ * fix for delete and destroy link
57
+
58
+ == 2010-08-17 v1.0.8
59
+
60
+ * fix for deprecation warning in routes
61
+
62
+ == 2010-08-17 v1.0.5
63
+
64
+ * fix for options defined in ~/config/initializers/admin_data_settings.rb not taking effect
65
+
66
+ == 2010-08-17 v1.0.3
67
+
68
+ * added more tests
69
+ * fixed a bug related to :is_allowed_to_view_klass
70
+
71
+ == 2010-08-16
72
+
73
+ * released as a gem
74
+ * version 1.0.2
75
+ * only works with rails3
76
+
77
+ == 2010-04-14
78
+
79
+ * JavaScript code refactoring
80
+ * More JavaScript code test
81
+ * Moved functionalities from layout to helper
82
+
83
+ == 0.0.37 2010-01-28
84
+
85
+ * refactored the code to take inline style out to style section
86
+ * moves a lot of ruby code from view to helpers and controllers
87
+ * better indentation
88
+
89
+ == 0.0.36 2010-01-05
90
+
91
+ * Fixing the online validation of models that have primary key not id
92
+
93
+ == 0.0.35 2010-01-05
94
+
95
+ * If invalid children value is passed in apply rescue
96
+
97
+ == 0.0.34 2010-01-04
98
+
99
+ * updated README
100
+
101
+ == 0.0.33 2009-12-27
102
+
103
+ * added authentication for feed
104
+
105
+ == 0.0.32 2009-12-23
106
+
107
+ * the default search result for advance search should be primary key des
108
+ * changed the layout for quick search
109
+
110
+ == 0.0.31 2009-12-15
111
+
112
+ * association information is rescued so that show method works even if association info throws error
113
+ * association info is displayed with belongs_to or has_many name instead of class name
114
+ * debugging variable $debug_admin_data
115
+
116
+ == 0.0.30 2009-12-02
117
+
118
+ * RSS feed for all the models
119
+
120
+ == 0.0.29 2009-11-18
121
+
122
+ * rake task to validate all the models
123
+ * ability to validate all the models using browser
124
+ * increased the font size of overall app
125
+
126
+ == 0.0.28 2009-11-12
127
+
128
+ * has_many association_info were too close to each other
129
+ * fixing the issue where a class is used as a hash key. It breaks in development
130
+
131
+ == 0.0.28 2009-11-11
132
+
133
+ * better link color
134
+
135
+ == 0.0.28 2009-11-11
136
+
137
+ * refactored the way advance search JavaScript code
138
+ * for pretty urls like /42-SEO-friendly-title the show method should pickup 42 as id
139
+
140
+ == 0.0.27 2009-11-04
141
+
142
+ * test for has_one association
143
+
144
+ == 0.0.26 2009-11-04
145
+
146
+ * cleaning up History.txt file
147
+
148
+ == 0.0.25 2009-11-03
149
+
150
+ * fix for issue #14 so that not like will also include records which are null
151
+
152
+ == 0.0.24 2009-11-03
153
+
154
+ * advance search refactoring
155
+
156
+ == 0.0.23 2009-10-29
157
+
158
+ * advance search bug fix
159
+
160
+ == 0.0.22 2009-10-26
161
+
162
+ * fixed adding rows on advanced search
163
+ * consistenly use model_id for search and association parent objects
164
+ * datetime/date/time fixes on edit and advanced search pages
165
+ * added configuration to not use admin_data layout and use application one instead
166
+
167
+ == 0.0.21 2009-10-26
168
+
169
+ * fixed the formatting issue while displaying missing index in diagnostic section
170
+ * by passing additional parameter called 'attr' editing of a record would display only one field to avoid any accidental change.
171
+
172
+ == 0.0.20 2009-10-22
173
+
174
+ * warning message if JavaScript is disabled
175
+
176
+ == 0.0.19 2009-10-20
177
+
178
+ * ability to pass :find_conditions to settings so that models with to_param method could override the sql that is built by admin_data
179
+
180
+ == 0.0.18 2009-10-16
181
+
182
+ * changed theme from warehouse to dark because the association info on the right hand side was not appearing correctly
183
+ * homepage should have main tab selected
184
+ * changed urls to support models that override to_param to other than id
185
+ * fixed the sorting order. model a, model B and model A/Q was being sorted as A,Q,B instead of A,B,Q.
186
+
187
+ == 0.0.17 2009-10-08
188
+
189
+ * drop down of klasses is now available at the center of home page
190
+ * current model will be selected in the drop down
191
+
192
+ == 0.0.16 2009-10-07
193
+
194
+ * form UI foreign keys are dropdown (display name attribute if it exists and id otherwise)
195
+ * form UI date fields use date_select (with free text year since we cannot guess a good range)
196
+ * form UI refactored to use form_for instead of form_tag and hadcoded html
197
+
198
+ == 0.0.15 2009-10-06
199
+
200
+ * cache the list of models
201
+ * advance search refactoring
202
+ * jQuery UI datepicker for date field
203
+ * advance search now shows validation error for integer and date fields
204
+ * log.js for easy logging in JavaScript
205
+
206
+ == 0.0.14 2009-10-05
207
+
208
+ * while editing match was being done for hard coded value id. Now it looks for klass.primary_key
209
+
210
+ == 0.0.13 2009-10-04
211
+
212
+ * fixed IE7 bug
213
+
214
+ == 0.0.12 2009-10-04
215
+
216
+ * fixed bug regarding integer values not appearning in listing
217
+ * better indentation
218
+
219
+ == 0.0.11 2009-10-01
220
+
221
+ * Major contribution in this release by Alex Rothenberg. http://github.com/alexrothenberg
222
+ * this plugin now treats each model as a restful resource.
223
+ * security fix and test for it
224
+ * commented out offending code for has_one relationship
225
+ * has_one and habtm relationships along with test would be taken up in next release
226
+
227
+ == 0.0.11 2009-09-28
228
+
229
+ * renamed quick search to search
230
+ * using jQuery theme to make drop down boxes jazzier
231
+ * more tests
232
+ * moved some inline css to external css file
233
+
234
+ == 0.0.10 2009-09-18
235
+
236
+ * fixed listing and has_many association info for namespaced model
237
+
238
+ == 0.0.9 2009-09-18
239
+
240
+ * fixed security issue
241
+
242
+ == 0.0.8 2009-09-18
243
+
244
+ * do not assume that primary key is 'id' . Respect the primary key set by model.
245
+ * test for alternate primary key
246
+
247
+ == 0.0.7 2009-09-17
248
+
249
+ * fixed test for Vehicle::Car
250
+
251
+ == 0.0.6 2009-09-09
252
+
253
+ * more tests for the plugin. Now 151 tests and 229 assertions
254
+ * support for name spaced models like Vehicle::Car and Vehicle::Engine
255
+ * fixed a bug related to advance search
256
+ * refactored JavaScript code for advance search
257
+
258
+ == 0.0.5 2009-09-04
259
+
260
+ * tests for the plugin
261
+ * changed the way security configiruation is passed to the plugin
262
+ * users can configure number of records in a page. Default is 50
263
+ * fixed bug associated with advance search
264
+ * added link to report bug in footer
265
+ * fixed bug in date parsing
266
+
267
+ == 0.0.4 2009-08-28
268
+
269
+ * storing serialized array in string causing problem in truncate method. more at
270
+ * http://github.com/neerajdotname/admin_data/issues#issue/3
271
+
272
+ == 0.0.3 2009-08-10
273
+
274
+ * not requiring rubygems
275
+ * if will_paginate is missing then not raising exception
276
+
277
+ == 0.0.2 2009-07-06
278
+
279
+ * ability to sort records
280
+ * better visual clue that search is in progress
281
+
282
+ == 0.0.1 2009-05-01
283
+
284
+ * Initial release
data/Gemfile ADDED
@@ -0,0 +1,22 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Declare your gem's dependencies in admin_data.gemspec.
4
+ # Bundler will treat runtime dependencies like base dependencies, and
5
+ # development dependencies will be added by default to the :development group.
6
+ gemspec
7
+
8
+ # jquery-rails is used by the dummy application
9
+ gem "jquery-rails"
10
+ gem 'sqlite3'
11
+
12
+ group :tools do
13
+ gem 'guard-test'
14
+ end
15
+
16
+ # Declare any dependencies that are still in development here instead of in
17
+ # your gemspec. These might include edge Rails or gems from your path or
18
+ # Git. Remember to move these dependencies to your gemspec before releasing
19
+ # your gem to rubygems.org.
20
+
21
+ # To use debugger
22
+ # gem 'debugger'
data/Gemfile.lock ADDED
@@ -0,0 +1,121 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ the_jobbook_admin_data (1.3.0a)
5
+ rails (~> 3.1)
6
+ will_paginate (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionmailer (3.2.12)
12
+ actionpack (= 3.2.12)
13
+ mail (~> 2.4.4)
14
+ actionpack (3.2.12)
15
+ activemodel (= 3.2.12)
16
+ activesupport (= 3.2.12)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.4)
20
+ rack (~> 1.4.5)
21
+ rack-cache (~> 1.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.2.1)
24
+ activemodel (3.2.12)
25
+ activesupport (= 3.2.12)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.12)
28
+ activemodel (= 3.2.12)
29
+ activesupport (= 3.2.12)
30
+ arel (~> 3.0.2)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.12)
33
+ activemodel (= 3.2.12)
34
+ activesupport (= 3.2.12)
35
+ activesupport (3.2.12)
36
+ i18n (~> 0.6)
37
+ multi_json (~> 1.0)
38
+ arel (3.0.2)
39
+ builder (3.0.4)
40
+ coderay (1.0.9)
41
+ erubis (2.7.0)
42
+ guard (1.6.2)
43
+ listen (>= 0.6.0)
44
+ lumberjack (>= 1.0.2)
45
+ pry (>= 0.9.10)
46
+ terminal-table (>= 1.4.3)
47
+ thor (>= 0.14.6)
48
+ guard-test (0.7.0)
49
+ guard (>= 1.1)
50
+ test-unit (~> 2.2)
51
+ hike (1.2.1)
52
+ i18n (0.6.4)
53
+ journey (1.0.4)
54
+ jquery-rails (2.2.1)
55
+ railties (>= 3.0, < 5.0)
56
+ thor (>= 0.14, < 2.0)
57
+ json (1.7.7)
58
+ listen (0.7.3)
59
+ lumberjack (1.0.2)
60
+ mail (2.4.4)
61
+ i18n (>= 0.4.0)
62
+ mime-types (~> 1.16)
63
+ treetop (~> 1.4.8)
64
+ method_source (0.8.1)
65
+ mime-types (1.25)
66
+ multi_json (1.6.1)
67
+ polyglot (0.3.3)
68
+ pry (0.9.12)
69
+ coderay (~> 1.0.5)
70
+ method_source (~> 0.8)
71
+ slop (~> 3.4)
72
+ rack (1.4.5)
73
+ rack-cache (1.2)
74
+ rack (>= 0.4)
75
+ rack-ssl (1.3.3)
76
+ rack
77
+ rack-test (0.6.2)
78
+ rack (>= 1.0)
79
+ rails (3.2.12)
80
+ actionmailer (= 3.2.12)
81
+ actionpack (= 3.2.12)
82
+ activerecord (= 3.2.12)
83
+ activeresource (= 3.2.12)
84
+ activesupport (= 3.2.12)
85
+ bundler (~> 1.0)
86
+ railties (= 3.2.12)
87
+ railties (3.2.12)
88
+ actionpack (= 3.2.12)
89
+ activesupport (= 3.2.12)
90
+ rack-ssl (~> 1.3.2)
91
+ rake (>= 0.8.7)
92
+ rdoc (~> 3.4)
93
+ thor (>= 0.14.6, < 2.0)
94
+ rake (10.0.3)
95
+ rdoc (3.12.2)
96
+ json (~> 1.4)
97
+ slop (3.4.3)
98
+ sprockets (2.2.2)
99
+ hike (~> 1.2)
100
+ multi_json (~> 1.0)
101
+ rack (~> 1.0)
102
+ tilt (~> 1.1, != 1.3.0)
103
+ sqlite3 (1.3.7)
104
+ terminal-table (1.4.5)
105
+ test-unit (2.5.4)
106
+ thor (0.17.0)
107
+ tilt (1.3.4)
108
+ treetop (1.4.15)
109
+ polyglot
110
+ polyglot (>= 0.3.1)
111
+ tzinfo (0.3.38)
112
+ will_paginate (3.0.5)
113
+
114
+ PLATFORMS
115
+ ruby
116
+
117
+ DEPENDENCIES
118
+ guard-test
119
+ jquery-rails
120
+ sqlite3
121
+ the_jobbook_admin_data!