fat_free_crm 0.15.0.beta → 0.15.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +7 -0
  3. data/.rubocop_todo.yml +517 -0
  4. data/.travis.yml +1 -1
  5. data/CHANGELOG.md +145 -9
  6. data/Gemfile +11 -13
  7. data/Gemfile.lock +104 -92
  8. data/README.md +2 -9
  9. data/app/assets/javascripts/application.js.erb +1 -1
  10. data/app/assets/javascripts/crm_select2.js.coffee +0 -1
  11. data/app/controllers/application_controller.rb +6 -6
  12. data/app/controllers/comments_controller.rb +7 -5
  13. data/app/controllers/entities/contacts_controller.rb +4 -4
  14. data/app/controllers/entities/opportunities_controller.rb +3 -3
  15. data/app/controllers/entities_controller.rb +3 -2
  16. data/app/controllers/home_controller.rb +21 -14
  17. data/app/controllers/passwords_controller.rb +1 -1
  18. data/app/controllers/users_controller.rb +3 -3
  19. data/app/helpers/accounts_helper.rb +2 -2
  20. data/app/helpers/application_helper.rb +20 -19
  21. data/app/helpers/campaigns_helper.rb +1 -1
  22. data/app/helpers/opportunities_helper.rb +4 -3
  23. data/app/helpers/tasks_helper.rb +6 -4
  24. data/app/helpers/users_helper.rb +1 -1
  25. data/app/helpers/versions_helper.rb +1 -1
  26. data/app/inputs/date_pair_input.rb +1 -1
  27. data/app/inputs/date_time_input.rb +1 -1
  28. data/app/models/entities/contact.rb +1 -0
  29. data/app/models/entities/lead.rb +4 -9
  30. data/app/models/entities/opportunity.rb +3 -6
  31. data/app/models/fields/field.rb +2 -3
  32. data/app/models/polymorphic/address.rb +1 -1
  33. data/app/models/polymorphic/comment.rb +1 -1
  34. data/app/models/polymorphic/task.rb +2 -3
  35. data/app/models/polymorphic/version.rb +5 -5
  36. data/app/models/setting.rb +6 -7
  37. data/app/models/users/user.rb +2 -2
  38. data/app/views/shared/_tags.html.haml +1 -5
  39. data/config/environments/test.rb +1 -1
  40. data/config/initializers/assets.rb +1 -1
  41. data/config/initializers/paper_trail.rb +1 -1
  42. data/config/initializers/simple_form.rb +1 -1
  43. data/config/initializers/views.rb +0 -1
  44. data/config/locales/th.rb +4 -4
  45. data/config/unicorn.rb +2 -2
  46. data/db/migrate/20100928030620_remove_uuid.rb +2 -4
  47. data/db/migrate/20111201030535_add_field_groups_klass_name.rb +2 -1
  48. data/db/migrate/20120224073107_remove_default_value_and_clear_settings.rb +1 -1
  49. data/db/schema.rb +0 -2
  50. data/fat_free_crm.gemspec +5 -5
  51. data/lib/fat_free_crm.rb +1 -3
  52. data/lib/fat_free_crm/callback.rb +2 -1
  53. data/lib/fat_free_crm/core_ext/string.rb +2 -2
  54. data/lib/fat_free_crm/engine.rb +1 -1
  55. data/lib/fat_free_crm/fields.rb +1 -1
  56. data/lib/fat_free_crm/i18n.rb +1 -1
  57. data/lib/fat_free_crm/mail_processor/base.rb +8 -2
  58. data/lib/fat_free_crm/mail_processor/comment_replies.rb +2 -1
  59. data/lib/fat_free_crm/permissions.rb +1 -1
  60. data/lib/fat_free_crm/version.rb +1 -1
  61. data/lib/gravatar_image_tag.rb +2 -2
  62. data/lib/tasks/ffcrm/comment_replies.rake +2 -2
  63. data/lib/tasks/ffcrm/config.rake +7 -6
  64. data/lib/tasks/ffcrm/demo.rake +1 -1
  65. data/lib/tasks/ffcrm/dropbox.rake +2 -2
  66. data/lib/tasks/ffcrm/setup.rake +4 -2
  67. data/lib/tasks/ffcrm/update_data.rake +5 -7
  68. data/spec/controllers/entities/campaigns_controller_spec.rb +1 -1
  69. data/spec/controllers/entities/leads_controller_spec.rb +1 -1
  70. data/spec/controllers/home_controller_spec.rb +5 -5
  71. data/spec/controllers/tasks_controller_spec.rb +3 -2
  72. data/spec/factories/sequences.rb +1 -2
  73. data/spec/factories/shared_factories.rb +5 -5
  74. data/spec/factories/user_factories.rb +3 -3
  75. data/spec/models/entities/opportunity_spec.rb +1 -1
  76. data/spec/models/fields/custom_field_pair_spec.rb +2 -2
  77. data/spec/models/setting_spec.rb +1 -1
  78. data/spec/shared/controllers.rb +1 -1
  79. data/spec/support/auth_macros.rb +6 -5
  80. data/spec/support/macros.rb +1 -1
  81. data/spec/views/application/auto_complete.haml_spec.rb +3 -3
  82. data/spec/views/campaigns/show.haml_spec.rb +2 -2
  83. data/spec/views/leads/update.js.haml_spec.rb +1 -1
  84. data/spec/views/tasks/index.haml_spec.rb +1 -1
  85. data/spec/views/tasks/update.js.haml_spec.rb +7 -7
  86. metadata +29 -4
data/.travis.yml CHANGED
@@ -40,7 +40,7 @@ script:
40
40
  - "RAILS_ENV=test bundle exec rake spec:routing"
41
41
  - "RAILS_ENV=test bundle exec rake spec:views"
42
42
  - "RAILS_ENV=test bundle exec rake spec:features"
43
-
43
+ - "RAILS_ENV=test bundle exec rubocop"
44
44
 
45
45
  notifications:
46
46
  webhooks:
data/CHANGELOG.md CHANGED
@@ -18,30 +18,166 @@ This release is aimed at getting as many dependencies as possible up to date wit
18
18
 
19
19
  Mon, Dec 5, 2016 (0.14.0)
20
20
  ---------------------------------------------------------------------
21
- Forked to publish 'reduced_fat_crm', a version of fat-free-crm with
22
- more pull requests merged and more contributors.
23
-
24
- At this stage, no classes etc have been renamed.
25
-
26
21
  - Various security fixes
27
22
  - Enable CORS headers
28
23
  - Ruby 2.0 or less dropped from CI
29
24
 
30
25
 
31
- Missing release notes
32
- ---------------------------------------------------------------------
33
26
  0.13.6 - February 12, 2015
27
+ ---------------------------------------------------------------------
28
+ - Fixes #413 and #414 - bold tag being escaped on user profile.
29
+ - Fix for CVE-2015-1585 - CSRF vulnerability.
30
+
31
+ Full list:
32
+ https://github.com/fatfreecrm/fat_free_crm/compare/v0.13.5...v0.13.6
33
+
34
34
  0.13.5 - January 22, 2015
35
+ ---------------------------------------------------------------------
36
+ - Update gems
37
+ - Fixed #337 Added index on Versions created_at
38
+ - [Security] Team section should not display opportunities current user is not allowed to see...
39
+ - Update to rails 3.2.20
40
+ - Fixed issue #347
41
+ - Fixed issue #349
42
+ - Fixed #351 - missing interpolation argument.
43
+ - Fixed #353 - observes is a prototype function that is no longer used.
44
+ - Fixed #283 - email max length is 254 according to IETF
45
+ - Fix avatar issue in recent_activity
46
+ - Merge pull request #354
47
+ - Fixed custom field handling of html entities.
48
+ - Merge pull request #355
49
+ - Fixed issue #374 - global lists missing from UK translation file.
50
+ - Fix #356 - default SMTP session should have no auth
51
+
52
+
53
+ Full list:
54
+ https://github.com/fatfreecrm/fat_free_crm/compare/v0.13.4...v0.13.5
55
+
35
56
  0.13.4 - September 4, 2014
57
+ ---------------------------------------------------------------------
58
+ - Fixed XSS vulnerability in helper method.
59
+ - Use rails_autolink gem which contains updated XSS fixes.
60
+ - Fixed XSS vulnerability if email data is manipulated.
61
+
62
+ Full list:
63
+ https://github.com/fatfreecrm/fat_free_crm/compare/v0.13.3...v0.13.4
64
+
36
65
  0.13.3 - August 26, 2014
66
+ ---------------------------------------------------------------------
67
+ - Fixed bug where starts_on was being used instead of ends_on. a0f69d7
68
+ - fixes bug with toggling select/create account when converting lead 7c76b9c
69
+ - Russian locale fixes.
70
+ - Add entity_observer to list of observers when running as an engine.
71
+ - Allow notification emails to be sent from a particular address. Many
72
+ - Convert tag select box to Select2. We're deprecating Chosen
73
+ - Enable fallback translations.
74
+ - Fixed 'end of week' spec in tasks using Timecop.
75
+ - Fixed bug with recent items box replacement.
76
+ - #311 - problem with Thor being reference before it is loa
77
+ - Fixed some bugs related to sorting custom fields.
78
+ - #334 Added byebug for ruby2+. 5dca0ba
79
+ - Update rails
80
+ - Update gems
81
+ - removes prototype-rails dependency
82
+ - replaces prototype with jquery
83
+
84
+ Full list:
85
+ https://github.com/fatfreecrm/fat_free_crm/compare/v0.13.2...v0.13.3
86
+
37
87
  0.13.2 - January 9, 2014
88
+ ---------------------------------------------------------------------
89
+ - Fixed issue with secret token not being saved if DB does not exist.
90
+
38
91
  0.13.1 - January 7, 2014
39
- 0.13.0 - December 27, 2013
92
+ ---------------------------------------------------------------------
93
+ - Lock down routes.
94
+ - Remove stub hook
95
+ - Remove unneccessary function
96
+ - Don't spam gmail by default
97
+ - consider_all_requests_local should be off by default in production mode
98
+ - Remove pysch by default (optimise for ruby 2 now)
99
+ - Fixed regular expression logic to be more sensitive to newline attacks.
100
+ - users_controller requires security on its actions.
101
+ - Send emails to file in development mode
102
+ - Don't show user list if not logged in.
103
+ - Remove old 'rake acceptance' task 2d4411a
104
+ - Refactored secret token generation code
105
+ - Hide password related attributes from the logs.
106
+ - File syntax layout tweak.
107
+ - Escape autocomplete output safely.
108
+ - Locked down available views in Task.
109
+ - sanitize list.url
110
+ - Don't generate secret token in test mode.
111
+ - Don't raise secret token generation error during tests.
112
+
113
+ Full list
114
+ https://github.com/fatfreecrm/fat_free_crm/compare/v0.13.0...v0.13.1
115
+
116
+ Fri Dec 27, 2013 (0.13.0)
117
+ ---------------------------------------------------------------------
118
+ - Add user_id to lists table
119
+ - Add campaign to opportunity advanced search.
120
+ - Add id to export formats.
121
+ - Added ActiveSupport lazy load hooks for all models in Fat Free CRM.
122
+ - Added timeago library to enable future caching of search results.
123
+ - Atom and RSS feeds now deal with cases where user doesn't exist.
124
+ - Better solution to internationalizing jquery.timeago plugin.
125
+ - Configurationise the uniqueness constraint for account first names
126
+ - Convert settings from syck to psych and remove dependency on Syck.
127
+ - Enforce available locales in latest version of I18n.
128
+ - German translations
129
+ - Introducing client-side unobtrusive javascript for new comments.
130
+ - Peg paper_trail to v2.7
131
+ - Replaces rjs with erb/haml
132
+ - Updated to latest rails version
133
+
134
+ Bug fixes
135
+ - Ensure user isn't deleted if they still have tasks.
136
+ - Fix delete button not showing
137
+ - Fix global list save problem
138
+ - Closes #268: Replace the contents of "div#leads_pagination"
139
+ - #242 and #245. Fix cohsen_select helper to be able to
140
+ - Fixed issue #282
141
+ - Fixed issue with account categories inclusion matcher.
142
+ - Fixed issue with timeago plugin not precompiling. Resolves issue #286
143
+ - Fixed issue#281 - psych v2 is not supported.
144
+ - Fixed one_submit_only js format and fixed red background highlight
145
+ - Fixed uninitialized constant 'Version' error on dashboard ATOM/RSS
146
+ - #270. Fixed procfile command for heroku.
147
+ - #273 from notentered/testFixes
148
+ - #279 from roadt/bugfix
149
+ - #284 from roadt/bugfix
150
+ - #287 from szetobo/fix_test_case
151
+ - #288 from szetobo/update_scope
152
+ - rake ffcrm:setup no longer nukes the database before starting.
153
+
154
+ Full changes:
155
+ https://github.com/fatfreecrm/fat_free_crm/compare/v0.12.3...v0.13.0
156
+
157
+
40
158
  0.12.3 - January 9, 2014
159
+ ---------------------------------------------------------------------
160
+ No changes
161
+
41
162
  0.12.2 - January 7, 2014
42
- 0.12.1 - December 27, 2013
163
+ ---------------------------------------------------------------------
164
+ - users_controller requires security on its actions.
165
+ - Refactored secret token generation code to generate and persist a secret token in the DB if one doesn't exist
166
+ - Don't show user list if not logged in.
167
+ - Hide password related attributes from the logs.
168
+ - consider_all_requests_local should be off by default in production mode
169
+ - Fixed issue with secret token not being saved if DB does not exist.
43
170
 
44
171
 
172
+ 0.12.1 - December 27, 2013
173
+ ---------------------------------------------------------------------
174
+ - Strengthen case to generate unique secret token.
175
+ - Ensure requests are protected.
176
+ - Add custom serializers for xml and json.
177
+ - Fixed sql injection in timeline method.
178
+ - Refactor activity_user to remove possible SQL injection points.
179
+ - Update gems to compile through
180
+
45
181
  Fri, Jun 28, 2013 (0.12.0)
46
182
  ---------------------------------------------------------------------
47
183
  - Ruby 1.9 support only (no ruby 1.8 and not yet ruby 2)
data/Gemfile CHANGED
@@ -2,15 +2,13 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Uncomment the database that you have configured in config/database.yml
4
4
  # ----------------------------------------------------------------------
5
- case ENV['CI'] && ENV['DB']
6
- when "mysql"; gem "mysql2"
7
- when "sqlite"; gem "sqlite3"
8
- when "postgres"; gem "pg"
9
- else
10
- # gem 'mysql2'
11
- # gem 'sqlite3'
12
- gem 'pg'
13
- end
5
+ db_drivers = {
6
+ "mysql" => "mysql2",
7
+ "sqlite" => "sqlite3",
8
+ "postgres" => "pg"
9
+ }
10
+
11
+ gem db_drivers[ENV['CI'] && ENV['DB']] || 'pg'
14
12
 
15
13
  # Removes a gem dependency
16
14
  def remove(name)
@@ -28,7 +26,7 @@ end
28
26
  # (See https://github.com/carlhuda/bundler/issues/1041)
29
27
  spec = Bundler.load_gemspec(File.expand_path("../fat_free_crm.gemspec", __FILE__))
30
28
  spec.runtime_dependencies.each do |dep|
31
- gem dep.name, *(dep.requirement.as_list)
29
+ gem dep.name, *dep.requirement.as_list
32
30
  end
33
31
 
34
32
  # Remove premailer auto-require
@@ -46,8 +44,6 @@ group :development do
46
44
  gem 'capistrano-bundler'
47
45
  gem 'capistrano-rails'
48
46
  gem 'capistrano-rvm'
49
- #~ gem 'capistrano-chruby'
50
- #~ gem 'capistrano-rbenv'
51
47
  gem 'guard'
52
48
  gem 'guard-rspec'
53
49
  gem 'guard-rails'
@@ -63,7 +59,9 @@ group :development, :test do
63
59
  gem 'headless'
64
60
  gem 'byebug'
65
61
  gem 'pry-rails' unless ENV["CI"]
66
- gem 'factory_girl_rails'
62
+ gem 'factory_girl_rails', '~> 4.7.0' # 4.8.0+ stubbed models are not allowed to access the database - User#destroyed?()
63
+ gem 'rubocop'
64
+ gem 'rainbow', '< 2.2.1' # https://github.com/fatfreecrm/fat_free_crm/issues/551
67
65
  end
68
66
 
69
67
  group :test do
data/Gemfile.lock CHANGED
@@ -1,38 +1,37 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- actionmailer (4.2.7.1)
5
- actionpack (= 4.2.7.1)
6
- actionview (= 4.2.7.1)
7
- activejob (= 4.2.7.1)
4
+ actionmailer (4.2.8)
5
+ actionpack (= 4.2.8)
6
+ actionview (= 4.2.8)
7
+ activejob (= 4.2.8)
8
8
  mail (~> 2.5, >= 2.5.4)
9
9
  rails-dom-testing (~> 1.0, >= 1.0.5)
10
- actionpack (4.2.7.1)
11
- actionview (= 4.2.7.1)
12
- activesupport (= 4.2.7.1)
10
+ actionpack (4.2.8)
11
+ actionview (= 4.2.8)
12
+ activesupport (= 4.2.8)
13
13
  rack (~> 1.6)
14
14
  rack-test (~> 0.6.2)
15
15
  rails-dom-testing (~> 1.0, >= 1.0.5)
16
16
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
17
- actionview (4.2.7.1)
18
- activesupport (= 4.2.7.1)
17
+ actionview (4.2.8)
18
+ activesupport (= 4.2.8)
19
19
  builder (~> 3.1)
20
20
  erubis (~> 2.7.0)
21
21
  rails-dom-testing (~> 1.0, >= 1.0.5)
22
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
23
- activejob (4.2.7.1)
24
- activesupport (= 4.2.7.1)
22
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
23
+ activejob (4.2.8)
24
+ activesupport (= 4.2.8)
25
25
  globalid (>= 0.3.0)
26
- activemodel (4.2.7.1)
27
- activesupport (= 4.2.7.1)
26
+ activemodel (4.2.8)
27
+ activesupport (= 4.2.8)
28
28
  builder (~> 3.1)
29
- activerecord (4.2.7.1)
30
- activemodel (= 4.2.7.1)
31
- activesupport (= 4.2.7.1)
29
+ activerecord (4.2.8)
30
+ activemodel (= 4.2.8)
31
+ activesupport (= 4.2.8)
32
32
  arel (~> 6.0)
33
- activesupport (4.2.7.1)
33
+ activesupport (4.2.8)
34
34
  i18n (~> 0.7)
35
- json (~> 1.7, >= 1.7.7)
36
35
  minitest (~> 5.1)
37
36
  thread_safe (~> 0.3, >= 0.3.4)
38
37
  tzinfo (~> 1.1)
@@ -42,22 +41,23 @@ GEM
42
41
  acts_as_fu (0.0.9)
43
42
  activerecord
44
43
  sqlite3
45
- acts_as_list (0.8.2)
44
+ acts_as_list (0.9.2)
46
45
  activerecord (>= 3.0)
47
46
  addressable (2.5.0)
48
47
  public_suffix (~> 2.0, >= 2.0.2)
49
- airbrussh (1.1.1)
48
+ airbrussh (1.1.2)
50
49
  sshkit (>= 1.6.1, != 1.7.0)
51
- arel (6.0.3)
50
+ arel (6.0.4)
51
+ ast (2.3.0)
52
52
  authlogic (3.4.6)
53
53
  activerecord (>= 3.2)
54
54
  activesupport (>= 3.2)
55
55
  request_store (~> 1.0)
56
56
  scrypt (>= 1.2, < 3.0)
57
- builder (3.2.2)
57
+ builder (3.2.3)
58
58
  byebug (9.0.6)
59
- cancancan (1.15.0)
60
- capistrano (3.6.1)
59
+ cancancan (1.16.0)
60
+ capistrano (3.7.2)
61
61
  airbrussh (>= 1.0.0)
62
62
  capistrano-harrow
63
63
  i18n
@@ -67,24 +67,23 @@ GEM
67
67
  capistrano (~> 3.1)
68
68
  sshkit (~> 1.2)
69
69
  capistrano-harrow (0.5.3)
70
- capistrano-rails (1.2.0)
70
+ capistrano-rails (1.2.2)
71
71
  capistrano (~> 3.1)
72
72
  capistrano-bundler (~> 1.1)
73
73
  capistrano-rvm (0.1.2)
74
74
  capistrano (~> 3.0)
75
75
  sshkit (~> 1.2)
76
- capybara (2.10.2)
76
+ capybara (2.12.1)
77
77
  addressable
78
78
  mime-types (>= 1.16)
79
79
  nokogiri (>= 1.3.3)
80
80
  rack (>= 1.0.0)
81
81
  rack-test (>= 0.5.4)
82
82
  xpath (~> 2.0)
83
- childprocess (0.5.9)
83
+ childprocess (0.6.1)
84
84
  ffi (~> 1.0, >= 1.0.11)
85
85
  chronic (0.10.2)
86
- climate_control (0.0.3)
87
- activesupport (>= 3.0)
86
+ climate_control (0.1.0)
88
87
  cocaine (0.5.8)
89
88
  climate_control (>= 0.0.3, < 1.0)
90
89
  coderay (1.1.1)
@@ -95,40 +94,41 @@ GEM
95
94
  coffee-script-source
96
95
  execjs
97
96
  coffee-script-source (1.8.0)
98
- concurrent-ruby (1.0.2)
99
- countries (2.0.4)
97
+ concurrent-ruby (1.0.4)
98
+ countries (2.0.7)
100
99
  i18n_data (~> 0.7.0)
101
100
  money (~> 6.7)
101
+ sixarm_ruby_unaccent (~> 1.1)
102
102
  unicode_utils (~> 1.4)
103
103
  country_select (3.0.0)
104
104
  countries (~> 2.0)
105
105
  sort_alphabetical (~> 1.0)
106
- css_parser (1.4.7)
106
+ css_parser (1.4.8)
107
107
  addressable
108
108
  daemons (1.2.4)
109
109
  database_cleaner (1.5.3)
110
- diff-lcs (1.2.5)
110
+ diff-lcs (1.3)
111
111
  dynamic_form (1.1.4)
112
112
  email_reply_parser_ffcrm (0.5.0)
113
113
  erubis (2.7.0)
114
- eventmachine (1.2.1)
114
+ eventmachine (1.2.2)
115
115
  execjs (2.7.0)
116
116
  factory_girl (4.7.0)
117
117
  activesupport (>= 3.0.0)
118
118
  factory_girl_rails (4.7.0)
119
119
  factory_girl (~> 4.7.0)
120
120
  railties (>= 3.0.0)
121
- ffaker (2.3.0)
122
- ffi (1.9.14)
121
+ ffaker (2.5.0)
122
+ ffi (1.9.17)
123
123
  ffi-compiler (1.0.1)
124
124
  ffi (>= 1.0.0)
125
125
  rake
126
- font-awesome-rails (4.5.0.0)
127
- railties (>= 3.2, < 5.0)
126
+ font-awesome-rails (4.7.0.1)
127
+ railties (>= 3.2, < 5.1)
128
128
  formatador (0.2.5)
129
129
  globalid (0.3.7)
130
130
  activesupport (>= 4.1.0)
131
- guard (2.14.0)
131
+ guard (2.14.1)
132
132
  formatador (>= 0.2.4)
133
133
  listen (>= 2.7, < 4.0)
134
134
  lumberjack (~> 1.0)
@@ -152,14 +152,13 @@ GEM
152
152
  i18n (0.7.0)
153
153
  i18n_data (0.7.0)
154
154
  jquery-migrate-rails (1.2.1)
155
- jquery-rails (4.2.1)
155
+ jquery-rails (4.2.2)
156
156
  rails-dom-testing (>= 1, < 3)
157
157
  railties (>= 4.2.0)
158
158
  thor (>= 0.14, < 2.0)
159
159
  jquery-ui-rails (6.0.1)
160
160
  railties (>= 3.2.16)
161
- json (1.8.3)
162
- kgio (2.10.0)
161
+ kgio (2.11.0)
163
162
  libv8 (3.16.14.17)
164
163
  listen (3.1.5)
165
164
  rb-fsevent (~> 0.9, >= 0.9.4)
@@ -167,7 +166,7 @@ GEM
167
166
  ruby_dep (~> 1.2)
168
167
  loofah (2.0.3)
169
168
  nokogiri (>= 1.5.9)
170
- lumberjack (1.0.10)
169
+ lumberjack (1.0.11)
171
170
  mail (2.6.4)
172
171
  mime-types (>= 1.16, < 4)
173
172
  method_source (0.8.2)
@@ -177,19 +176,19 @@ GEM
177
176
  mimemagic (0.3.2)
178
177
  mini_portile2 (2.1.0)
179
178
  minitest (5.10.1)
180
- money (6.7.1)
179
+ money (6.8.1)
181
180
  i18n (>= 0.6.4, <= 0.7.0)
182
181
  sixarm_ruby_unaccent (>= 1.1.1, < 2)
183
182
  nenv (0.3.0)
184
183
  net-scp (1.2.1)
185
184
  net-ssh (>= 2.6.5)
186
- net-ssh (3.2.0)
187
- nokogiri (1.6.8.1)
185
+ net-ssh (4.1.0)
186
+ nokogiri (1.7.0.1)
188
187
  mini_portile2 (~> 2.1.0)
189
188
  notiffany (0.1.1)
190
189
  nenv (~> 0.1)
191
190
  shellany (~> 0.0)
192
- paper_trail (6.0.1)
191
+ paper_trail (6.0.2)
193
192
  activerecord (>= 4.0, < 5.2)
194
193
  request_store (~> 1.1)
195
194
  paperclip (5.1.0)
@@ -198,40 +197,43 @@ GEM
198
197
  cocaine (~> 0.5.5)
199
198
  mime-types
200
199
  mimemagic (~> 0.3.0)
200
+ parser (2.4.0.0)
201
+ ast (~> 2.2)
201
202
  pg (0.19.0)
202
203
  polyamorous (1.3.1)
203
204
  activerecord (>= 3.0)
204
- premailer (1.8.7)
205
- css_parser (>= 1.4.5)
205
+ powerpack (0.1.1)
206
+ premailer (1.9.2)
207
+ css_parser (>= 1.4.8)
206
208
  htmlentities (>= 4.0.0)
207
209
  pry (0.10.4)
208
210
  coderay (~> 1.1.0)
209
211
  method_source (~> 0.8.1)
210
212
  slop (~> 3.4)
211
- pry-rails (0.3.4)
213
+ pry-rails (0.3.5)
212
214
  pry (>= 0.9.10)
213
- public_suffix (2.0.4)
215
+ public_suffix (2.0.5)
214
216
  quiet_assets (1.1.0)
215
217
  railties (>= 3.1, < 5.0)
216
218
  rack (1.6.5)
217
219
  rack-test (0.6.3)
218
220
  rack (>= 1.0)
219
- rails (4.2.7.1)
220
- actionmailer (= 4.2.7.1)
221
- actionpack (= 4.2.7.1)
222
- actionview (= 4.2.7.1)
223
- activejob (= 4.2.7.1)
224
- activemodel (= 4.2.7.1)
225
- activerecord (= 4.2.7.1)
226
- activesupport (= 4.2.7.1)
221
+ rails (4.2.8)
222
+ actionmailer (= 4.2.8)
223
+ actionpack (= 4.2.8)
224
+ actionview (= 4.2.8)
225
+ activejob (= 4.2.8)
226
+ activemodel (= 4.2.8)
227
+ activerecord (= 4.2.8)
228
+ activesupport (= 4.2.8)
227
229
  bundler (>= 1.3.0, < 2.0)
228
- railties (= 4.2.7.1)
230
+ railties (= 4.2.8)
229
231
  sprockets-rails
230
232
  rails-deprecated_sanitizer (1.0.3)
231
233
  activesupport (>= 4.2.0.alpha)
232
- rails-dom-testing (1.0.7)
234
+ rails-dom-testing (1.0.8)
233
235
  activesupport (>= 4.2.0.beta, < 5.0)
234
- nokogiri (~> 1.6.0)
236
+ nokogiri (~> 1.6)
235
237
  rails-deprecated_sanitizer (>= 1.0.1)
236
238
  rails-html-sanitizer (1.0.3)
237
239
  loofah (~> 2.0)
@@ -246,13 +248,14 @@ GEM
246
248
  rails (> 3.1)
247
249
  rails_serve_static_assets (0.0.5)
248
250
  rails_stdout_logging (0.0.5)
249
- railties (4.2.7.1)
250
- actionpack (= 4.2.7.1)
251
- activesupport (= 4.2.7.1)
251
+ railties (4.2.8)
252
+ actionpack (= 4.2.8)
253
+ activesupport (= 4.2.8)
252
254
  rake (>= 0.8.7)
253
255
  thor (>= 0.18.1, < 2.0)
256
+ rainbow (2.1.0)
254
257
  raindrops (0.17.0)
255
- rake (11.3.0)
258
+ rake (12.0.0)
256
259
  ransack (1.6.6)
257
260
  actionpack (>= 3.0)
258
261
  activerecord (>= 3.0)
@@ -267,11 +270,11 @@ GEM
267
270
  rb-fchange (0.0.6)
268
271
  ffi
269
272
  rb-fsevent (0.9.8)
270
- rb-inotify (0.9.7)
273
+ rb-inotify (0.9.8)
271
274
  ffi (>= 0.5.0)
272
275
  ref (2.0.0)
273
- request_store (1.3.1)
274
- responders (2.1.1)
276
+ request_store (1.3.2)
277
+ responders (2.3.0)
275
278
  railties (>= 4.2.0, < 5.1)
276
279
  responds_to_parent (1.1.0)
277
280
  rspec (3.5.0)
@@ -299,9 +302,16 @@ GEM
299
302
  rspec-mocks (~> 3.5.0)
300
303
  rspec-support (~> 3.5.0)
301
304
  rspec-support (3.5.0)
305
+ rubocop (0.47.1)
306
+ parser (>= 2.3.3.1, < 3.0)
307
+ powerpack (~> 0.1)
308
+ rainbow (>= 1.99.1, < 3.0)
309
+ ruby-progressbar (~> 1.7)
310
+ unicode-display_width (~> 1.0, >= 1.0.1)
311
+ ruby-progressbar (1.8.1)
302
312
  ruby_dep (1.5.0)
303
- rubyzip (1.2.0)
304
- sass (3.4.22)
313
+ rubyzip (1.2.1)
314
+ sass (3.4.23)
305
315
  sass-rails (5.0.6)
306
316
  railties (>= 4.0.0, < 6)
307
317
  sass (~> 3.1)
@@ -318,49 +328,49 @@ GEM
318
328
  rubyzip (~> 1.0)
319
329
  websocket (~> 1.0)
320
330
  shellany (0.0.1)
321
- simple_form (3.3.1)
331
+ simple_form (3.4.0)
322
332
  actionpack (> 4, < 5.1)
323
333
  activemodel (> 4, < 5.1)
324
334
  sixarm_ruby_unaccent (1.1.1)
325
335
  slop (3.6.0)
326
336
  sort_alphabetical (1.1.0)
327
337
  unicode_utils (>= 1.2.2)
328
- sprockets (3.7.0)
338
+ sprockets (3.7.1)
329
339
  concurrent-ruby (~> 1.0)
330
340
  rack (> 1, < 3)
331
341
  sprockets-rails (2.2.2)
332
342
  actionpack (>= 3.0)
333
343
  activesupport (>= 3.0)
334
344
  sprockets (>= 2.8, < 4.0)
335
- sqlite3 (1.3.12)
336
- sshkit (1.11.4)
345
+ sqlite3 (1.3.13)
346
+ sshkit (1.12.0)
337
347
  net-scp (>= 1.1.2)
338
348
  net-ssh (>= 2.8.0)
339
- therubyracer (0.12.2)
340
- libv8 (~> 3.16.14.0)
349
+ therubyracer (0.12.3)
350
+ libv8 (~> 3.16.14.15)
341
351
  ref
342
352
  thin (1.7.0)
343
353
  daemons (~> 1.0, >= 1.0.9)
344
354
  eventmachine (~> 1.0, >= 1.0.4)
345
355
  rack (>= 1, < 3)
346
356
  thor (0.19.4)
347
- thread_safe (0.3.5)
348
- tilt (2.0.5)
357
+ thread_safe (0.3.6)
358
+ tilt (2.0.6)
349
359
  timecop (0.8.1)
350
360
  tzinfo (1.2.2)
351
361
  thread_safe (~> 0.1)
352
- uglifier (2.7.2)
353
- execjs (>= 0.3.0)
354
- json (>= 1.8.0)
362
+ uglifier (3.0.4)
363
+ execjs (>= 0.3.0, < 3)
364
+ unicode-display_width (1.1.3)
355
365
  unicode_utils (1.4.0)
356
366
  unicorn (5.2.0)
357
367
  kgio (~> 2.6)
358
368
  raindrops (~> 0.7)
359
- websocket (1.2.3)
369
+ websocket (1.2.4)
360
370
  will_paginate (3.1.5)
361
371
  xpath (2.0.0)
362
372
  nokogiri (~> 1.3)
363
- zeus (0.15.10)
373
+ zeus (0.15.13)
364
374
  method_source (>= 0.6.7)
365
375
 
366
376
  PLATFORMS
@@ -371,7 +381,7 @@ DEPENDENCIES
371
381
  acts_as_commentable
372
382
  acts_as_fu
373
383
  acts_as_list
374
- authlogic (>= 3.4.4)
384
+ authlogic (>= 3.4.4, < 3.5.0)
375
385
  byebug
376
386
  cancancan
377
387
  capistrano
@@ -381,13 +391,13 @@ DEPENDENCIES
381
391
  capybara
382
392
  cocaine
383
393
  coffee-rails
384
- coffee-script-source (~> 1.8.0)
394
+ coffee-script-source (~> 1.8, >= 1.8.0)
385
395
  country_select
386
396
  database_cleaner
387
397
  dynamic_form
388
398
  email_reply_parser_ffcrm
389
399
  execjs
390
- factory_girl_rails
400
+ factory_girl_rails (~> 4.7.0)
391
401
  ffaker (>= 2)
392
402
  font-awesome-rails
393
403
  guard
@@ -405,13 +415,14 @@ DEPENDENCIES
405
415
  premailer
406
416
  pry-rails
407
417
  quiet_assets
408
- rails (~> 4.2.0)
418
+ rails (~> 4.2)
409
419
  rails-observers
410
420
  rails3-jquery-autocomplete
411
421
  rails_12factor
412
422
  rails_autolink
413
- ransack (~> 1.6.2)
414
- ransack_ui (>= 1.3.1)
423
+ rainbow (< 2.2.1)
424
+ ransack (~> 1.6, >= 1.6.2)
425
+ ransack_ui (~> 1.3, >= 1.3.1)
415
426
  rb-fchange
416
427
  rb-fsevent
417
428
  rb-inotify
@@ -419,6 +430,7 @@ DEPENDENCIES
419
430
  responds_to_parent
420
431
  rspec-activemodel-mocks
421
432
  rspec-rails
433
+ rubocop
422
434
  sass
423
435
  sass-rails
424
436
  select2-rails
@@ -435,4 +447,4 @@ DEPENDENCIES
435
447
  zeus
436
448
 
437
449
  BUNDLED WITH
438
- 1.12.5
450
+ 1.13.7