fat_free_crm 0.11.1 → 0.11.2

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.

Potentially problematic release.


This version of fat_free_crm might be problematic. Click here for more details.

Files changed (179) hide show
  1. data/Gemfile +30 -12
  2. data/Gemfile.lock +131 -119
  3. data/Procfile +1 -1
  4. data/README.md +1 -1
  5. data/app/assets/images/notifications.png +0 -0
  6. data/app/assets/javascripts/application.js.erb +3 -0
  7. data/app/assets/javascripts/crm_textarea_autocomplete.js +44 -0
  8. data/app/assets/stylesheets/application.css.erb +2 -0
  9. data/app/assets/stylesheets/common.scss +7 -11
  10. data/app/assets/stylesheets/textarea_autocomplete.scss +42 -0
  11. data/app/controllers/admin/application_controller.rb +5 -5
  12. data/app/controllers/admin/field_groups_controller.rb +11 -51
  13. data/app/controllers/admin/fields_controller.rb +13 -59
  14. data/app/controllers/admin/plugins_controller.rb +1 -4
  15. data/app/controllers/admin/settings_controller.rb +0 -4
  16. data/app/controllers/admin/tags_controller.rb +11 -66
  17. data/app/controllers/admin/users_controller.rb +20 -83
  18. data/app/controllers/application_controller.rb +83 -69
  19. data/app/controllers/comments_controller.rb +12 -29
  20. data/app/controllers/emails_controller.rb +1 -5
  21. data/app/controllers/entities/accounts_controller.rb +13 -32
  22. data/app/controllers/entities/campaigns_controller.rb +17 -32
  23. data/app/controllers/entities/contacts_controller.rb +20 -38
  24. data/app/controllers/entities/leads_controller.rb +33 -55
  25. data/app/controllers/entities/opportunities_controller.rb +26 -42
  26. data/app/controllers/entities_controller.rb +92 -83
  27. data/app/controllers/home_controller.rb +1 -10
  28. data/app/controllers/lists_controller.rb +1 -4
  29. data/app/controllers/{entities/tasks_controller.rb → tasks_controller.rb} +21 -32
  30. data/app/controllers/users_controller.rb +6 -5
  31. data/app/helpers/accounts_helper.rb +32 -9
  32. data/app/helpers/application_helper.rb +15 -1
  33. data/app/helpers/campaigns_helper.rb +1 -1
  34. data/app/helpers/comments_helper.rb +11 -1
  35. data/app/helpers/leads_helper.rb +1 -1
  36. data/app/helpers/opportunities_helper.rb +1 -1
  37. data/app/{models/mailers/notifier.rb → mailers/dropbox_mailer.rb} +5 -16
  38. data/app/mailers/subscription_mailer.rb +37 -0
  39. data/{lib/tasks/dropbox.rake → app/mailers/user_mailer.rb} +11 -13
  40. data/app/models/entities/account.rb +3 -1
  41. data/app/models/entities/campaign.rb +3 -1
  42. data/app/models/entities/contact.rb +3 -1
  43. data/app/models/entities/lead.rb +6 -5
  44. data/app/models/entities/opportunity.rb +3 -1
  45. data/app/models/fields/field.rb +1 -1
  46. data/app/models/polymorphic/comment.rb +34 -0
  47. data/app/models/{entities → polymorphic}/task.rb +16 -3
  48. data/app/models/setting.rb +15 -15
  49. data/app/models/users/ability.rb +12 -5
  50. data/app/models/users/user.rb +7 -2
  51. data/app/views/accounts/index.html.haml +1 -1
  52. data/app/views/accounts/index.js.rjs +1 -1
  53. data/app/views/admin/plugins/index.html.haml +1 -7
  54. data/app/views/{shared/auto_complete.html.haml → application/_auto_complete.html.haml} +0 -0
  55. data/app/views/{shared → application}/index.atom.builder +1 -1
  56. data/app/views/{shared → application}/index.rss.builder +1 -1
  57. data/app/views/campaigns/index.html.haml +1 -1
  58. data/app/views/campaigns/index.js.rjs +1 -1
  59. data/app/views/comments/_new.html.haml +6 -0
  60. data/app/views/comments/_subscription_links.html.haml +13 -0
  61. data/app/views/comments/new.js.rjs +2 -0
  62. data/app/views/contacts/_top_section.html.haml +3 -13
  63. data/app/views/contacts/index.html.haml +1 -1
  64. data/app/views/contacts/index.js.rjs +1 -1
  65. data/app/views/{notifier/dropbox_ack_notification.html.haml → dropbox_mailer/dropbox_notification.html.haml} +2 -2
  66. data/app/views/{shared → entities}/attach.js.rjs +1 -1
  67. data/app/views/entities/contacts.js.rjs +1 -1
  68. data/app/views/{shared/discard.rjs → entities/discard.js.rjs} +0 -0
  69. data/app/views/entities/leads.js.rjs +1 -1
  70. data/app/views/entities/opportunities.js.rjs +1 -1
  71. data/app/views/entities/subscription_update.js.rjs +4 -0
  72. data/app/views/entities/versions.js.rjs +1 -1
  73. data/app/views/layouts/_footer.html.haml +1 -1
  74. data/app/views/layouts/application.html.haml +3 -0
  75. data/app/views/leads/_contact.html.haml +1 -0
  76. data/app/views/leads/index.html.haml +1 -1
  77. data/app/views/leads/index.js.rjs +1 -1
  78. data/app/views/opportunities/_top_section.html.haml +4 -14
  79. data/app/views/opportunities/index.html.haml +1 -1
  80. data/app/views/opportunities/index.js.rjs +1 -1
  81. data/app/views/subscription_mailer/comment_notification.text.erb +7 -0
  82. data/app/views/{notifier → user_mailer}/password_reset_instructions.html.haml +0 -0
  83. data/config/application.rb +3 -1
  84. data/config/environments/development.rb +1 -1
  85. data/config/environments/test.rb +3 -0
  86. data/config/initializers/action_mailer.rb +8 -5
  87. data/config/initializers/cancan.rb +151 -0
  88. data/config/initializers/constants.rb +1 -0
  89. data/config/initializers/locale.rb +20 -0
  90. data/config/initializers/paper_trail.rb +4 -5
  91. data/config/initializers/relative_url_root.rb +0 -1
  92. data/config/initializers/squeel.rb +5 -0
  93. data/config/locales/cz_fat_free_crm.yml +3 -3
  94. data/config/locales/de.yml +2 -2
  95. data/config/locales/de_fat_free_crm.yml +651 -596
  96. data/config/locales/en-GB_fat_free_crm.yml +3 -3
  97. data/config/locales/en-US_fat_free_crm.yml +13 -3
  98. data/config/locales/es_fat_free_crm.yml +3 -3
  99. data/config/locales/fr-CA_fat_free_crm.yml +3 -3
  100. data/config/locales/fr_fat_free_crm.yml +3 -3
  101. data/config/locales/it_fat_free_crm.yml +3 -3
  102. data/config/locales/pl_fat_free_crm.yml +3 -3
  103. data/config/locales/pt-BR_fat_free_crm.yml +3 -3
  104. data/config/locales/ru_fat_free_crm.yml +3 -3
  105. data/config/locales/sv-SE_fat_free_crm.yml +3 -3
  106. data/config/locales/th_fat_free_crm.yml +3 -3
  107. data/config/routes.rb +10 -0
  108. data/config/settings.default.yml +29 -10
  109. data/config/unicorn.rb +4 -0
  110. data/db/migrate/20111201030535_add_field_groups_klass_name.rb +3 -1
  111. data/db/migrate/20120314080441_add_subscribed_users_to_entities.rb +23 -0
  112. data/db/migrate/20120405080727_change_subscribed_users_to_set.rb +24 -0
  113. data/db/migrate/20120405080742_change_further_subscribed_users_to_set.rb +27 -0
  114. data/db/migrate/20120413034923_add_index_on_versions_item_type.rb +5 -0
  115. data/db/schema.rb +109 -126
  116. data/fat_free_crm.gemspec +12 -18
  117. data/lib/fat_free_crm.rb +0 -1
  118. data/lib/fat_free_crm/core_ext/array.rb +1 -0
  119. data/lib/fat_free_crm/gem_dependencies.rb +1 -0
  120. data/lib/fat_free_crm/mail_processor/base.rb +226 -0
  121. data/lib/fat_free_crm/mail_processor/comment_replies.rb +86 -0
  122. data/lib/fat_free_crm/mail_processor/dropbox.rb +288 -0
  123. data/lib/fat_free_crm/permissions.rb +6 -19
  124. data/lib/fat_free_crm/renderers.rb +0 -8
  125. data/lib/fat_free_crm/tabs.rb +1 -1
  126. data/lib/fat_free_crm/version.rb +1 -1
  127. data/lib/plugins/country_select/lib/country_select.rb +2 -2
  128. data/lib/tasks/mail_processing.rake +60 -0
  129. data/spec/controllers/admin/users_controller_spec.rb +0 -2
  130. data/spec/controllers/{accounts_controller_spec.rb → entities/accounts_controller_spec.rb} +7 -9
  131. data/spec/controllers/{campaigns_controller_spec.rb → entities/campaigns_controller_spec.rb} +7 -7
  132. data/spec/controllers/{contacts_controller_spec.rb → entities/contacts_controller_spec.rb} +5 -9
  133. data/spec/controllers/{leads_controller_spec.rb → entities/leads_controller_spec.rb} +7 -9
  134. data/spec/controllers/{opportunities_controller_spec.rb → entities/opportunities_controller_spec.rb} +8 -15
  135. data/spec/controllers/tasks_controller_spec.rb +1 -5
  136. data/spec/controllers/users_controller_spec.rb +5 -9
  137. data/spec/factories/subscription_factories.rb +6 -0
  138. data/spec/lib/mail_processor/base_spec.rb +164 -0
  139. data/spec/lib/mail_processor/comment_replies_spec.rb +63 -0
  140. data/spec/lib/{dropbox_spec.rb → mail_processor/dropbox_spec.rb} +73 -181
  141. data/spec/lib/mail_processor/sample_emails/dropbox.rb +167 -0
  142. data/spec/mailers/subscription_mailer_spec.rb +17 -0
  143. data/spec/models/{base → entities}/account_contact_spec.rb +0 -0
  144. data/spec/models/{base → entities}/account_opportunity_spec.rb +0 -0
  145. data/spec/models/{base → entities}/account_spec.rb +4 -0
  146. data/spec/models/{base → entities}/campaign_spec.rb +4 -0
  147. data/spec/models/{base → entities}/contact_opportunity_spec.rb +0 -0
  148. data/spec/models/{base → entities}/contact_spec.rb +4 -0
  149. data/spec/models/{base → entities}/lead_spec.rb +4 -0
  150. data/spec/models/{base → entities}/opportunity_spec.rb +4 -0
  151. data/spec/models/polymorphic/comment_spec.rb +15 -0
  152. data/spec/models/{base → polymorphic}/task_spec.rb +124 -30
  153. data/spec/models/polymorphic/version_spec.rb +1 -1
  154. data/spec/shared/controllers.rb +5 -7
  155. data/spec/shared/models.rb +46 -0
  156. data/spec/spec_helper.rb +3 -4
  157. data/spec/support/mail_processor_mocks.rb +30 -0
  158. data/spec/support/uploaded_file.rb +3 -0
  159. data/spec/views/{common → application}/auto_complete.haml_spec.rb +1 -1
  160. data/vendor/assets/images/jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  161. data/vendor/assets/images/jquery-ui/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  162. data/vendor/assets/images/jquery-ui/ui-bg_flat_10_000000_40x100.png +0 -0
  163. data/vendor/assets/images/jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  164. data/vendor/assets/images/jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  165. data/vendor/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
  166. data/vendor/assets/images/jquery-ui/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  167. data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  168. data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  169. data/vendor/assets/images/jquery-ui/ui-icons_222222_256x240.png +0 -0
  170. data/vendor/assets/images/jquery-ui/ui-icons_228ef1_256x240.png +0 -0
  171. data/vendor/assets/images/jquery-ui/ui-icons_ef8c08_256x240.png +0 -0
  172. data/vendor/assets/images/jquery-ui/ui-icons_ffd27a_256x240.png +0 -0
  173. data/vendor/assets/images/jquery-ui/ui-icons_ffffff_256x240.png +0 -0
  174. data/vendor/assets/javascripts/textarea_autocomplete.js +605 -0
  175. data/vendor/assets/stylesheets/jquery-ui.custom.css.erb +565 -0
  176. metadata +234 -154
  177. data/config/locales/simple_form.en.yml +0 -24
  178. data/lib/fat_free_crm/dropbox.rb +0 -439
  179. data/spec/lib/dropbox/email_samples.rb +0 -77
data/Gemfile CHANGED
@@ -1,5 +1,11 @@
1
1
  source :rubygems
2
2
 
3
+ # Uncomment the database that you have configured in config/database.yml
4
+ # ----------------------------------------------------------------------
5
+ # gem 'mysql2', '0.3.10'
6
+ # gem 'sqlite3'
7
+ gem 'pg', '~> 0.13.2'
8
+
3
9
  # Removes a gem dependency
4
10
  def remove(name)
5
11
  @dependencies.reject! {|d| d.name == name }
@@ -11,9 +17,6 @@ def gem(name, *args)
11
17
  super
12
18
  end
13
19
 
14
- # Load development dependencies from gemspec
15
- gemspec
16
-
17
20
  # Bundler no longer treats runtime dependencies as base dependencies.
18
21
  # The following code restores this behaviour.
19
22
  # (See https://github.com/carlhuda/bundler/issues/1041)
@@ -22,23 +25,38 @@ spec.runtime_dependencies.each do |dep|
22
25
  gem dep.name, *(dep.requirement.as_list)
23
26
  end
24
27
 
25
- gem 'ransack', :git => "https://github.com/fatfreecrm/ransack.git"
26
- gem 'chosen-rails', :git => "https://github.com/fatfreecrm/chosen-rails.git"
27
- gem 'responds_to_parent', :git => "https://github.com/LessonPlanet/responds_to_parent.git"
28
+ # Remove premailer auto-require
29
+ gem 'premailer', :require => false
28
30
 
29
- # Remove fat_free_crm from dependencies, to stop it from being auto-required.
31
+ # Remove fat_free_crm dependency, to stop it from being auto-required too early.
30
32
  remove 'fat_free_crm'
31
33
 
32
- gem 'pg', '~> 0.13.2'
33
-
34
34
  group :development, :test do
35
- gem 'rspec-rails'
35
+ gem 'rspec-rails', '~> 2.9.0'
36
36
  gem 'steak', :require => false
37
37
  gem 'headless'
38
38
  unless ENV["CI"]
39
- gem 'ruby-debug', :platform => :mri_18
40
- gem 'ruby-debug19', :platform => :mri_19
39
+ gem 'ruby-debug', :platform => :mri_18
40
+ gem 'debugger', :platform => :mri_19
41
41
  end
42
+ gem 'pry-rails'
43
+ end
44
+
45
+ group :test do
46
+ gem 'capybara'
47
+ gem 'spork'
48
+ gem 'database_cleaner'
49
+ gem 'fuubar'
50
+
51
+ if RUBY_VERSION.to_f >= 1.9
52
+ gem 'factory_girl_rails', '~> 3.0.0'
53
+ else
54
+ gem 'factory_girl_rails', '~> 1.7.0'
55
+ end
56
+ end
57
+
58
+ group :heroku do
59
+ gem 'unicorn', :platform => :ruby
42
60
  end
43
61
 
44
62
 
data/Gemfile.lock CHANGED
@@ -1,70 +1,42 @@
1
- GIT
2
- remote: https://github.com/LessonPlanet/responds_to_parent.git
3
- revision: 1f0c6d82eda5e7f331a30fc029e7ead2a7dbdebf
4
- specs:
5
- responds_to_parent (1.0.20091013)
6
-
7
- GIT
8
- remote: https://github.com/fatfreecrm/chosen-rails.git
9
- revision: 33c92a8554ee14d11b7293eb531371a05c0a0b67
10
- specs:
11
- chosen-rails (0.9.5)
12
- railties (~> 3.0)
13
- thor (~> 0.14)
14
-
15
- GIT
16
- remote: https://github.com/fatfreecrm/ransack.git
17
- revision: 92f5812d4320e5f1959f844d19d0386bb5654a08
18
- specs:
19
- ransack (0.6.0)
20
- actionpack (~> 3.0)
21
- activerecord (~> 3.0)
22
- chronic (~> 0.6.7)
23
- polyamorous (~> 0.5.0)
24
-
25
- PATH
26
- remote: .
27
- specs:
28
-
29
1
  GEM
30
2
  remote: http://rubygems.org/
31
3
  specs:
32
- actionmailer (3.2.2)
33
- actionpack (= 3.2.2)
34
- mail (~> 2.4.0)
35
- actionpack (3.2.2)
36
- activemodel (= 3.2.2)
37
- activesupport (= 3.2.2)
4
+ actionmailer (3.2.3)
5
+ actionpack (= 3.2.3)
6
+ mail (~> 2.4.4)
7
+ actionpack (3.2.3)
8
+ activemodel (= 3.2.3)
9
+ activesupport (= 3.2.3)
38
10
  builder (~> 3.0.0)
39
11
  erubis (~> 2.7.0)
40
12
  journey (~> 1.0.1)
41
13
  rack (~> 1.4.0)
42
- rack-cache (~> 1.1)
14
+ rack-cache (~> 1.2)
43
15
  rack-test (~> 0.6.1)
44
16
  sprockets (~> 2.1.2)
45
- activemodel (3.2.2)
46
- activesupport (= 3.2.2)
17
+ activemodel (3.2.3)
18
+ activesupport (= 3.2.3)
47
19
  builder (~> 3.0.0)
48
- activerecord (3.2.2)
49
- activemodel (= 3.2.2)
50
- activesupport (= 3.2.2)
20
+ activerecord (3.2.3)
21
+ activemodel (= 3.2.3)
22
+ activesupport (= 3.2.3)
51
23
  arel (~> 3.0.2)
52
24
  tzinfo (~> 0.3.29)
53
- activeresource (3.2.2)
54
- activemodel (= 3.2.2)
55
- activesupport (= 3.2.2)
56
- activesupport (3.2.2)
25
+ activeresource (3.2.3)
26
+ activemodel (= 3.2.3)
27
+ activesupport (= 3.2.3)
28
+ activesupport (3.2.3)
57
29
  i18n (~> 0.6)
58
30
  multi_json (~> 1.0)
59
31
  acts-as-taggable-on (2.2.2)
60
32
  rails (~> 3.0)
61
33
  acts_as_commentable (3.0.1)
62
- acts_as_list (0.1.5)
63
- ajax-chosen-rails (0.1.5)
64
- chosen-rails
34
+ acts_as_list (0.1.6)
35
+ addressable (2.2.8)
36
+ ajax-chosen-rails (0.2.0)
37
+ chosen-rails_ffcrm
65
38
  railties (~> 3.0)
66
39
  thor (~> 0.14)
67
- archive-tar-minitar (0.5.2)
68
40
  arel (3.0.2)
69
41
  authlogic (3.1.0)
70
42
  activerecord (>= 3.0.7)
@@ -78,58 +50,77 @@ GEM
78
50
  rack-test (>= 0.5.4)
79
51
  selenium-webdriver (~> 2.0)
80
52
  xpath (~> 0.1.4)
81
- childprocess (0.3.1)
53
+ childprocess (0.3.2)
82
54
  ffi (~> 1.0.6)
55
+ chosen-rails_ffcrm (0.9.5)
56
+ railties (~> 3.0)
57
+ thor (~> 0.14)
83
58
  chronic (0.6.7)
84
59
  cocaine (0.2.1)
60
+ coderay (1.0.6)
85
61
  coffee-rails (3.2.2)
86
62
  coffee-script (>= 2.2.0)
87
63
  railties (~> 3.2.0)
88
64
  coffee-script (2.2.0)
89
65
  coffee-script-source
90
66
  execjs
91
- coffee-script-source (1.2.0)
67
+ coffee-script-source (1.3.1)
92
68
  columnize (0.3.6)
93
- database_cleaner (0.7.1)
69
+ css_parser (1.2.6)
70
+ addressable
71
+ rdoc
72
+ database_cleaner (0.7.2)
73
+ debugger (1.1.3)
74
+ columnize (>= 0.3.1)
75
+ debugger-linecache (~> 1.1.1)
76
+ debugger-ruby_core_source (~> 1.1.2)
77
+ debugger-linecache (1.1.1)
78
+ debugger-ruby_core_source (>= 1.1.1)
79
+ debugger-ruby_core_source (1.1.2)
94
80
  diff-lcs (1.1.3)
95
81
  dynamic_form (1.1.4)
82
+ email_reply_parser_ffcrm (0.5.0)
96
83
  erubis (2.7.0)
97
- execjs (1.3.0)
84
+ execjs (1.3.1)
98
85
  multi_json (~> 1.0)
99
- factory_girl (2.6.1)
100
- activesupport (>= 2.3.9)
101
- factory_girl_rails (1.7.0)
102
- factory_girl (~> 2.6.0)
86
+ factory_girl (3.0.0)
87
+ activesupport (>= 3.0.0)
88
+ factory_girl_rails (3.0.0)
89
+ factory_girl (~> 3.0.0)
103
90
  railties (>= 3.0.0)
104
- ffaker (1.13.0)
91
+ ffaker (1.14.0)
105
92
  ffi (1.0.11)
106
93
  fuubar (1.0.0)
107
94
  rspec (~> 2.0)
108
95
  rspec-instafail (~> 0.2.0)
109
96
  ruby-progressbar (~> 0.0.10)
110
97
  haml (3.1.4)
111
- headless (0.2.2)
98
+ headless (0.3.1)
112
99
  hike (1.2.1)
100
+ htmlentities (4.3.1)
113
101
  i18n (0.6.0)
114
102
  journey (1.0.3)
115
- jquery-rails (2.0.1)
103
+ jquery-rails (2.0.2)
116
104
  railties (>= 3.2.0, < 5.0)
117
105
  thor (~> 0.14)
118
- json (1.6.5)
106
+ json (1.7.0)
107
+ kgio (2.7.4)
119
108
  libv8 (3.3.10.4)
109
+ libwebsocket (0.1.3)
110
+ addressable
120
111
  linecache (0.46)
121
112
  rbx-require-relative (> 0.0.4)
122
- linecache19 (0.5.12)
123
- ruby_core_source (>= 0.1.4)
124
- mail (2.4.1)
113
+ mail (2.4.4)
125
114
  i18n (>= 0.4.0)
126
115
  mime-types (~> 1.16)
127
116
  treetop (~> 1.4.8)
128
- mime-types (1.17.2)
129
- multi_json (1.1.0)
130
- nokogiri (1.5.0)
131
- paper_trail (2.6.0)
132
- rails (~> 3)
117
+ method_source (0.7.1)
118
+ mime-types (1.18)
119
+ multi_json (1.3.4)
120
+ nokogiri (1.5.2)
121
+ paper_trail (2.6.3)
122
+ activerecord (~> 3.0)
123
+ railties (~> 3.0)
133
124
  paperclip (2.7.0)
134
125
  activerecord (>= 2.3.0)
135
126
  activesupport (>= 2.3.2)
@@ -139,97 +130,113 @@ GEM
139
130
  polyamorous (0.5.0)
140
131
  activerecord (~> 3.0)
141
132
  polyglot (0.3.3)
133
+ premailer (1.7.3)
134
+ css_parser (>= 1.1.9)
135
+ htmlentities (>= 4.0.0)
142
136
  prototype-rails (3.2.1)
143
137
  rails (~> 3.2)
138
+ pry (0.9.9.4)
139
+ coderay (~> 1.0.5)
140
+ method_source (~> 0.7.1)
141
+ slop (>= 2.4.4, < 3)
142
+ pry-rails (0.1.6)
143
+ pry
144
144
  rack (1.4.1)
145
- rack-cache (1.1)
145
+ rack-cache (1.2)
146
146
  rack (>= 0.4)
147
147
  rack-ssl (1.3.2)
148
148
  rack
149
149
  rack-test (0.6.1)
150
150
  rack (>= 1.0)
151
- rails (3.2.2)
152
- actionmailer (= 3.2.2)
153
- actionpack (= 3.2.2)
154
- activerecord (= 3.2.2)
155
- activeresource (= 3.2.2)
156
- activesupport (= 3.2.2)
151
+ rails (3.2.3)
152
+ actionmailer (= 3.2.3)
153
+ actionpack (= 3.2.3)
154
+ activerecord (= 3.2.3)
155
+ activeresource (= 3.2.3)
156
+ activesupport (= 3.2.3)
157
157
  bundler (~> 1.0)
158
- railties (= 3.2.2)
159
- railties (3.2.2)
160
- actionpack (= 3.2.2)
161
- activesupport (= 3.2.2)
158
+ railties (= 3.2.3)
159
+ railties (3.2.3)
160
+ actionpack (= 3.2.3)
161
+ activesupport (= 3.2.3)
162
162
  rack-ssl (~> 1.3.2)
163
163
  rake (>= 0.8.7)
164
164
  rdoc (~> 3.4)
165
165
  thor (~> 0.14.6)
166
+ raindrops (0.8.0)
166
167
  rake (0.9.2.2)
168
+ ransack_ffcrm (0.6.0)
169
+ actionpack (~> 3.0)
170
+ activerecord (~> 3.0)
171
+ chronic (~> 0.6.7)
172
+ polyamorous (~> 0.5.0)
167
173
  rbx-require-relative (0.0.9)
168
174
  rdoc (3.12)
169
175
  json (~> 1.4)
170
- rspec (2.8.0)
171
- rspec-core (~> 2.8.0)
172
- rspec-expectations (~> 2.8.0)
173
- rspec-mocks (~> 2.8.0)
174
- rspec-core (2.8.0)
175
- rspec-expectations (2.8.0)
176
- diff-lcs (~> 1.1.2)
177
- rspec-instafail (0.2.2)
178
- rspec-mocks (2.8.0)
179
- rspec-rails (2.8.1)
176
+ responds_to_parent_ffcrm (1.1.0)
177
+ rspec (2.9.0)
178
+ rspec-core (~> 2.9.0)
179
+ rspec-expectations (~> 2.9.0)
180
+ rspec-mocks (~> 2.9.0)
181
+ rspec-core (2.9.0)
182
+ rspec-expectations (2.9.1)
183
+ diff-lcs (~> 1.1.3)
184
+ rspec-instafail (0.2.4)
185
+ rspec-mocks (2.9.0)
186
+ rspec-rails (2.9.0)
180
187
  actionpack (>= 3.0)
181
188
  activesupport (>= 3.0)
182
189
  railties (>= 3.0)
183
- rspec (~> 2.8.0)
190
+ rspec (~> 2.9.0)
184
191
  ruby-debug (0.10.4)
185
192
  columnize (>= 0.1)
186
193
  ruby-debug-base (~> 0.10.4.0)
187
194
  ruby-debug-base (0.10.4)
188
195
  linecache (>= 0.3)
189
- ruby-debug-base19 (0.11.25)
190
- columnize (>= 0.3.1)
191
- linecache19 (>= 0.5.11)
192
- ruby_core_source (>= 0.1.4)
193
- ruby-debug19 (0.11.6)
194
- columnize (>= 0.3.1)
195
- linecache19 (>= 0.5.11)
196
- ruby-debug-base19 (>= 0.11.19)
197
196
  ruby-progressbar (0.0.10)
198
- ruby_core_source (0.1.5)
199
- archive-tar-minitar (>= 0.5.2)
200
- rubyzip (0.9.6.1)
201
- sass (3.1.15)
202
- sass-rails (3.2.4)
197
+ rubyzip (0.9.8)
198
+ sass (3.1.16)
199
+ sass-rails (3.2.5)
203
200
  railties (~> 3.2.0)
204
201
  sass (>= 3.1.10)
205
202
  tilt (~> 1.3)
206
- selenium-webdriver (2.20.0)
203
+ selenium-webdriver (2.21.2)
207
204
  childprocess (>= 0.2.5)
208
205
  ffi (~> 1.0)
206
+ libwebsocket (~> 0.1.3)
209
207
  multi_json (~> 1.0)
210
208
  rubyzip
211
- simple_form (2.0.1)
209
+ simple_form (2.0.2)
212
210
  actionpack (~> 3.0)
213
211
  activemodel (~> 3.0)
214
- spork (0.9.0)
215
- sprockets (2.1.2)
212
+ slop (2.4.4)
213
+ spork (0.9.1)
214
+ sprockets (2.1.3)
216
215
  hike (~> 1.2)
217
216
  rack (~> 1.0)
218
217
  tilt (~> 1.1, != 1.3.0)
218
+ squeel (0.9.5)
219
+ activerecord (~> 3.0)
220
+ activesupport (~> 3.0)
221
+ polyamorous (~> 0.5.0)
219
222
  steak (2.0.0)
220
223
  capybara (>= 1.0.0)
221
224
  rspec-rails (>= 2.5.0)
222
- therubyracer (0.9.10)
225
+ therubyracer (0.10.1)
223
226
  libv8 (~> 3.3.10)
224
227
  thor (0.14.6)
225
228
  tilt (1.3.3)
226
229
  treetop (1.4.10)
227
230
  polyglot
228
231
  polyglot (>= 0.3.1)
229
- tzinfo (0.3.31)
230
- uglifier (1.2.3)
232
+ tzinfo (0.3.33)
233
+ uglifier (1.2.4)
231
234
  execjs (>= 0.3.0)
232
235
  multi_json (>= 1.0.2)
236
+ unicorn (4.3.1)
237
+ kgio (~> 2.6)
238
+ rack
239
+ raindrops (~> 0.7)
233
240
  will_paginate (3.0.3)
234
241
  xpath (0.1.4)
235
242
  nokogiri (~> 1.3)
@@ -241,36 +248,41 @@ DEPENDENCIES
241
248
  acts-as-taggable-on (~> 2.2.1)
242
249
  acts_as_commentable (~> 3.0.1)
243
250
  acts_as_list (~> 0.1.4)
244
- ajax-chosen-rails (>= 0.1.5)
251
+ ajax-chosen-rails (>= 0.2.0)
245
252
  authlogic (~> 3.1.0)
246
253
  cancan
247
254
  capybara
248
- chosen-rails!
255
+ chosen-rails_ffcrm
249
256
  coffee-rails (~> 3.2.1)
250
257
  database_cleaner
258
+ debugger
251
259
  dynamic_form
252
- factory_girl (~> 2.6.1)
253
- factory_girl_rails (~> 1.7.0)
260
+ email_reply_parser_ffcrm
261
+ factory_girl_rails (~> 3.0.0)
254
262
  ffaker (>= 1.12.0)
255
263
  fuubar
256
264
  haml (~> 3.1.3)
257
265
  headless
258
266
  jquery-rails
267
+ nokogiri
259
268
  paper_trail
260
269
  paperclip (~> 2.7.0)
261
270
  pg (~> 0.13.2)
271
+ premailer
262
272
  prototype-rails
273
+ pry-rails
263
274
  rails (~> 3.2.2)
264
- ransack!
265
- responds_to_parent!
266
- rspec-rails
275
+ ransack_ffcrm (~> 0.6.0)
276
+ responds_to_parent_ffcrm
277
+ rspec-rails (~> 2.9.0)
267
278
  ruby-debug
268
- ruby-debug19
269
- sass (~> 3.1.15)
279
+ sass (~> 3.1.10)
270
280
  sass-rails (~> 3.2.3)
271
281
  simple_form (~> 2.0.1)
272
282
  spork
283
+ squeel (~> 0.9.3)
273
284
  steak
274
285
  therubyracer
275
286
  uglifier (>= 1.0.3)
287
+ unicorn
276
288
  will_paginate (~> 3.0.2)