fat_free_crm 0.15.0.beta.2 → 0.15.0
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.
- checksums.yaml +4 -4
- data/.docker/nginx/sites-enabled/ffcrm.conf +8 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +4 -1
- data/.rubocop_todo.yml +190 -89
- data/.travis.yml +10 -3
- data/CHANGELOG.md +27 -0
- data/{CONTRIBUTORS → CONTRIBUTORS.md} +2 -1
- data/Dockerfile +15 -13
- data/Gemfile +7 -4
- data/Gemfile.lock +200 -167
- data/README.md +4 -2
- data/app/assets/javascripts/crm_sortable.js.coffee +5 -0
- data/app/assets/javascripts/timeago.js.coffee +5 -0
- data/app/assets/stylesheets/about.css.scss +5 -0
- data/app/assets/stylesheets/common.scss +2 -1
- data/app/controllers/admin/fields_controller.rb +1 -1
- data/app/controllers/admin/groups_controller.rb +5 -1
- data/app/controllers/admin/tags_controller.rb +1 -1
- data/app/controllers/admin/users_controller.rb +10 -6
- data/app/controllers/application_controller.rb +13 -13
- data/app/controllers/authentications_controller.rb +2 -2
- data/app/controllers/comments_controller.rb +3 -2
- data/app/controllers/entities/contacts_controller.rb +9 -7
- data/app/controllers/entities/opportunities_controller.rb +1 -1
- data/app/controllers/entities_controller.rb +4 -4
- data/app/controllers/home_controller.rb +9 -9
- data/app/controllers/passwords_controller.rb +1 -1
- data/app/controllers/tasks_controller.rb +2 -1
- data/app/controllers/users_controller.rb +4 -2
- data/app/helpers/application_helper.rb +9 -9
- data/app/helpers/javascript_helper.rb +5 -0
- data/app/helpers/opportunities_helper.rb +1 -1
- data/app/helpers/remote_link_pagination_helper.rb +5 -0
- data/app/inputs/date_pair_input.rb +1 -1
- data/app/models/entities/account.rb +2 -2
- data/app/models/entities/account_contact.rb +1 -1
- data/app/models/entities/campaign.rb +3 -3
- data/app/models/entities/contact.rb +3 -3
- data/app/models/entities/lead.rb +2 -2
- data/app/models/entities/opportunity.rb +3 -3
- data/app/models/fields/custom_field.rb +1 -1
- data/app/models/fields/custom_field_pair.rb +2 -2
- data/app/models/fields/field.rb +1 -1
- data/app/models/polymorphic/address.rb +2 -2
- data/app/models/polymorphic/avatar.rb +4 -2
- data/app/models/polymorphic/email.rb +8 -6
- data/app/models/polymorphic/task.rb +3 -1
- data/app/models/polymorphic/version.rb +3 -3
- data/app/models/users/ability.rb +1 -1
- data/app/models/users/permission.rb +2 -0
- data/app/models/users/user.rb +2 -2
- data/app/views/accounts/index.js.haml +1 -1
- data/app/views/admin/fields/_sort_by.html.haml +1 -1
- data/app/views/admin/users/_user.html.haml +1 -1
- data/app/views/campaigns/index.js.haml +1 -1
- data/app/views/contacts/index.js.haml +1 -1
- data/app/views/entities/_basic_search.html.haml +1 -1
- data/app/views/home/_duration_menu.html.haml +1 -1
- data/app/views/home/_events_menu.html.haml +1 -1
- data/app/views/home/_users_menu.html.haml +1 -1
- data/app/views/layouts/application.html.haml +1 -1
- data/app/views/leads/index.js.haml +1 -1
- data/app/views/opportunities/index.js.haml +1 -1
- data/app/views/shared/_naming.html.haml +1 -1
- data/app/views/users/_languages.html.haml +1 -1
- data/config/application.rb +2 -3
- data/config/boot.rb +2 -0
- data/config/deploy.example.rb +1 -1
- data/config/environments/development.rb +2 -0
- data/config/environments/production.rb +1 -1
- data/config/environments/test.rb +2 -2
- data/config/initializers/assets.rb +6 -1
- data/config/initializers/backtrace_silencers.rb +5 -0
- data/config/initializers/constants.rb +1 -1
- data/config/initializers/cookies_serializer.rb +5 -0
- data/config/initializers/custom_field_ransack_translations.rb +5 -0
- data/config/initializers/filter_parameter_logging.rb +5 -0
- data/config/initializers/inflections.rb +5 -0
- data/config/initializers/paper_trail.rb +5 -0
- data/config/initializers/ransack.rb +3 -3
- data/config/initializers/session_store.rb +5 -0
- data/config/initializers/wrap_parameters.rb +5 -0
- data/config/locales/et.yml +207 -0
- data/config/locales/et_fat_free_crm.yml +928 -0
- data/config/locales/pt-BR_ransack.yml +81 -0
- data/config/locales/th.rb +1 -1
- data/config/routes.rb +18 -18
- data/db/migrate/20100928030598_create_sessions.rb +1 -1
- data/db/migrate/20100928030599_create_users.rb +2 -2
- data/db/migrate/20100928030600_create_openid_tables.rb +1 -1
- data/db/migrate/20100928030601_create_accounts.rb +2 -2
- data/db/migrate/20100928030602_create_permissions.rb +1 -1
- data/db/migrate/20100928030603_create_settings.rb +1 -1
- data/db/migrate/20100928030604_create_preferences.rb +2 -2
- data/db/migrate/20100928030605_create_campaigns.rb +2 -2
- data/db/migrate/20100928030606_create_leads.rb +2 -2
- data/db/migrate/20100928030607_create_contacts.rb +2 -2
- data/db/migrate/20100928030608_create_opportunities.rb +2 -2
- data/db/migrate/20100928030609_create_account_contacts.rb +1 -1
- data/db/migrate/20100928030610_create_account_opportunities.rb +1 -1
- data/db/migrate/20100928030611_create_contact_opportunities.rb +1 -1
- data/db/migrate/20100928030612_create_tasks.rb +2 -2
- data/db/migrate/20100928030613_create_comments.rb +1 -1
- data/db/migrate/20100928030614_create_activities.rb +1 -1
- data/db/migrate/20100928030615_create_avatars.rb +1 -1
- data/db/migrate/20100928030616_rename_remember_token.rb +1 -1
- data/db/migrate/20100928030617_drop_openid_tables.rb +1 -1
- data/db/migrate/20100928030618_add_admin_to_users.rb +1 -1
- data/db/migrate/20100928030619_add_suspended_to_users.rb +1 -1
- data/db/migrate/20100928030620_remove_uuid.rb +2 -2
- data/db/migrate/20100928030621_add_email_to_accounts.rb +1 -1
- data/db/migrate/20100928030622_add_background_info_to_models.rb +1 -1
- data/db/migrate/20100928030623_create_addresses.rb +2 -2
- data/db/migrate/20100928030624_add_index_on_permissions.rb +3 -3
- data/db/migrate/20100928030625_create_emails.rb +2 -2
- data/db/migrate/20100928030626_add_state_to_timeline_objects.rb +1 -1
- data/db/migrate/20100928030627_acts_as_taggable_on_migration.rb +2 -2
- data/db/migrate/20101221123456_add_single_access_token_to_users.rb +1 -1
- data/db/migrate/20101221345678_add_rating_and_category_to_accounts.rb +1 -1
- data/db/migrate/20110719082054_add_skype_to_contacts_and_leads.rb +1 -1
- data/db/migrate/20111101083437_create_fields.rb +1 -1
- data/db/migrate/20111101090312_create_field_groups.rb +1 -1
- data/db/migrate/20111116091952_add_field_groups_tag_id.rb +1 -1
- data/db/migrate/20111117041311_change_fields_collection_to_text.rb +1 -1
- data/db/migrate/20111201030535_add_field_groups_klass_name.rb +2 -2
- data/db/migrate/20120121054235_create_lists.rb +1 -1
- data/db/migrate/20120216031616_create_versions.rb +3 -3
- data/db/migrate/20120216042541_is_paranoid_to_paper_trail.rb +1 -1
- data/db/migrate/20120220233724_add_versions_object_changes.rb +1 -1
- data/db/migrate/20120224073107_remove_default_value_and_clear_settings.rb +1 -1
- data/db/migrate/20120309070209_add_versions_related.rb +1 -1
- data/db/migrate/20120314080441_add_subscribed_users_to_entities.rb +2 -2
- data/db/migrate/20120316045804_activities_to_versions.rb +1 -1
- data/db/migrate/20120405080727_change_subscribed_users_to_set.rb +1 -1
- data/db/migrate/20120405080742_change_further_subscribed_users_to_set.rb +2 -2
- data/db/migrate/20120406082136_create_groups.rb +2 -2
- data/db/migrate/20120413034923_add_index_on_versions_item_type.rb +1 -1
- data/db/migrate/20120510025219_add_not_null_constraints_for_timestamp_columns.rb +3 -3
- data/db/migrate/20120528102124_increase_length_of_version_events.rb +1 -1
- data/db/migrate/20120801032706_add_pair_id_to_fields.rb +1 -1
- data/db/migrate/20121003063155_add_settings_to_custom_fields.rb +1 -1
- data/db/migrate/20121221033947_fix_country_mapping.rb +1 -1
- data/db/migrate/20131207033244_add_user_id_to_lists.rb +1 -1
- data/db/migrate/20140916011927_add_created_at_index_on_versions.rb +1 -1
- data/db/migrate/20140916012922_add_indexes_to_model_associations.rb +3 -3
- data/db/migrate/20141126031837_increase_email_to254_chars.rb +1 -1
- data/db/migrate/20141230021159_add_transaction_id_column_to_versions.rb +1 -1
- data/db/migrate/20141230205453_add_missing_unique_indices.acts_as_taggable_on_engine.rb +4 -4
- data/db/migrate/20141230205454_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +1 -1
- data/db/migrate/20141230205455_add_missing_taggable_index.acts_as_taggable_on_engine.rb +3 -3
- data/db/migrate/20150123060900_convert_radio_to_radio_buttons.rb +1 -1
- data/db/migrate/20150227123054_remove_last_request_at_from_users.rb +1 -1
- data/db/migrate/20150427131956_create_index_related_type.rb +3 -3
- data/db/migrate/20160511053730_add_account_contacts_index.rb +2 -2
- data/docker-compose.yml +17 -13
- data/fat_free_crm.gemspec +4 -6
- data/lib/development_tasks/license.rake +12 -9
- data/lib/fat_free_crm/callback.rb +4 -4
- data/lib/fat_free_crm/engine.rb +2 -2
- data/lib/fat_free_crm/exportable.rb +2 -2
- data/lib/fat_free_crm/fields.rb +2 -4
- data/lib/fat_free_crm/gem_ext.rb +0 -1
- data/lib/fat_free_crm/gem_ext/rake/task.rb +2 -0
- data/lib/fat_free_crm/mail_processor/base.rb +4 -4
- data/lib/fat_free_crm/mail_processor/dropbox.rb +1 -1
- data/lib/fat_free_crm/permissions.rb +5 -5
- data/lib/fat_free_crm/sortable.rb +1 -1
- data/lib/fat_free_crm/version.rb +1 -1
- data/lib/gravatar_image_tag.rb +1 -0
- data/lib/tasks/ffcrm/demo.rake +2 -2
- data/spec/controllers/admin/users_controller_spec.rb +25 -25
- data/spec/controllers/authentications_controller_spec.rb +9 -9
- data/spec/controllers/comments_controller_spec.rb +15 -15
- data/spec/controllers/emails_controller_spec.rb +2 -2
- data/spec/controllers/entities/accounts_controller_spec.rb +46 -46
- data/spec/controllers/entities/campaigns_controller_spec.rb +46 -46
- data/spec/controllers/entities/contacts_controller_spec.rb +55 -55
- data/spec/controllers/entities/leads_controller_spec.rb +85 -85
- data/spec/controllers/entities/opportunities_controller_spec.rb +74 -74
- data/spec/controllers/home_controller_spec.rb +11 -11
- data/spec/controllers/passwords_controller_spec.rb +2 -2
- data/spec/controllers/tasks_controller_spec.rb +37 -37
- data/spec/controllers/users_controller_spec.rb +31 -31
- data/spec/factories/campaign_factories.rb +1 -1
- data/spec/factories/contact_factories.rb +1 -1
- data/spec/factories/field_factories.rb +1 -1
- data/spec/factories/lead_factories.rb +2 -2
- data/spec/factories/opportunity_factories.rb +3 -3
- data/spec/factories/shared_factories.rb +1 -1
- data/spec/factories/task_factories.rb +1 -1
- data/spec/features/support/browser.rb +9 -1
- data/spec/lib/fields_spec.rb +2 -2
- data/spec/lib/permissions_spec.rb +38 -6
- data/spec/lib/view_factory_spec.rb +2 -2
- data/spec/models/fields/custom_field_spec.rb +3 -3
- data/spec/models/observers/entity_observer_spec.rb +1 -1
- data/spec/models/polymorphic/version_spec.rb +11 -11
- data/spec/models/users/abilities/user_ability_spec.rb +8 -3
- data/spec/models/users/permission_spec.rb +8 -0
- data/spec/models/users/user_spec.rb +1 -1
- data/spec/shared/controllers.rb +10 -10
- data/spec/spec_helper.rb +1 -1
- data/spec/views/accounts/index.haml_spec.rb +1 -1
- data/spec/views/accounts/update.js.haml_spec.rb +2 -2
- data/spec/views/admin/users/update.js.haml_spec.rb +2 -2
- data/spec/views/application/auto_complete.haml_spec.rb +1 -1
- data/spec/views/campaigns/index.haml_spec.rb +1 -1
- data/spec/views/campaigns/update.js.haml_spec.rb +2 -2
- data/spec/views/contacts/index.haml_spec.rb +1 -1
- data/spec/views/contacts/update.js.haml_spec.rb +2 -2
- data/spec/views/home/options.js.haml_spec.rb +1 -1
- data/spec/views/leads/index.haml_spec.rb +1 -1
- data/spec/views/leads/promote.js.haml_spec.rb +2 -2
- data/spec/views/leads/update.js.haml_spec.rb +2 -2
- data/spec/views/opportunities/index.haml_spec.rb +1 -1
- data/spec/views/opportunities/update.js.haml_spec.rb +1 -1
- data/spec/views/tasks/_edit.haml_spec.rb +2 -2
- data/spec/views/tasks/create.js.haml_spec.rb +2 -2
- data/spec/views/tasks/edit.js.haml_spec.rb +1 -1
- data/spec/views/users/change_password.js.haml_spec.rb +2 -2
- data/spec/views/users/update.js.haml_spec.rb +2 -2
- data/spec/views/users/upload_avatar.js.haml_spec.rb +2 -2
- metadata +17 -20
- data/lib/fat_free_crm/gem_ext/active_record/schema_dumper.rb +0 -27
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,33 @@ It does not matter how slowly you go as long as you do not stop.
|
|
4
4
|
First they ignore you, then they laugh at you, then they fight you,
|
5
5
|
then you win. –- Mahatma Gandhi
|
6
6
|
|
7
|
+
Thu Dec 14, 2017 (0.15.0)
|
8
|
+
---------------------------------------------------------------------
|
9
|
+
This release upgrades to rails 5.0.0
|
10
|
+
- #500 - Upgrade rails
|
11
|
+
- #554 - Upgrade authlogic
|
12
|
+
- #614 - Rails5 warnings
|
13
|
+
- #643 Use FixtureSet instead of Fixtures module
|
14
|
+
- #642 Cleanup: Use Ruby style guide syntax for arrays
|
15
|
+
- #640 Speed up builds with Bootsnap
|
16
|
+
- #639 Code cleanup: Remove block-end comments (extracted from Rubocop PR)
|
17
|
+
- #637 Replace render :text with render :plain (Rails 5.1 prep)
|
18
|
+
- #636 Upgrade Migrations (preparation for Rails 5.1)
|
19
|
+
- #635 Fix alias_method_chain via @johnnyshields
|
20
|
+
- #632 Fix Travis CI chrome runs; Travis now requiring Chrome as an addon
|
21
|
+
- #628 Security Update on 2017-11-29
|
22
|
+
- #626 Use headless Chrome browser for feature testing
|
23
|
+
- #623 Fix license Rake task
|
24
|
+
- #617 Bundle Update on 2017-07-19
|
25
|
+
|
26
|
+
Thu Feb 23, 2017 (0.15.0-beta.2)
|
27
|
+
---------------------------------------------------------------------
|
28
|
+
This release is aimed at minor updates and ruby 2.4 compatability via
|
29
|
+
the relevant rails updates.
|
30
|
+
|
31
|
+
Other improvements include:
|
32
|
+
- #480 Improve select2 behaviour
|
33
|
+
|
7
34
|
Wed, Dec 7, 2016 (0.15.0-beta)
|
8
35
|
---------------------------------------------------------------------
|
9
36
|
This release is aimed at getting as many dependencies as possible up to date without significant refactoring.
|
@@ -16,7 +16,7 @@ translations to the Fat Free CRM:
|
|
16
16
|
* Codemis
|
17
17
|
* Craig Ulliott (USA)
|
18
18
|
* Daniel Jabbour (USA)
|
19
|
-
* Daniel O'Connor
|
19
|
+
* Daniel O'Connor (@CloCkWeRX)
|
20
20
|
* David Cornu
|
21
21
|
* David Keita
|
22
22
|
* Dirk Kelly (Australia)
|
@@ -38,6 +38,7 @@ translations to the Fat Free CRM:
|
|
38
38
|
* James Zhang (China)
|
39
39
|
* Jan Schulz-Hofen
|
40
40
|
* Jim Gay (USA)
|
41
|
+
* Johnny Shields (@jonnyshields)
|
41
42
|
* Josef Chmel
|
42
43
|
* Jose Luis Gordo Romero (Spain)
|
43
44
|
* Joseph Near
|
data/Dockerfile
CHANGED
@@ -1,18 +1,20 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
#
|
1
|
+
# Usage:
|
2
|
+
# docker-compose up
|
3
|
+
# docker-compose exec web bundle exec rake db:create db:schema:load ffcrm:demo:load assets:precompile
|
4
4
|
|
5
|
-
FROM phusion/passenger-
|
5
|
+
FROM phusion/passenger-ruby24
|
6
6
|
MAINTAINER Steve Kenworthy
|
7
7
|
|
8
|
-
ENV HOME /
|
8
|
+
ENV HOME /home/app
|
9
9
|
|
10
|
-
|
10
|
+
ADD . /home/app
|
11
|
+
WORKDIR /home/app
|
11
12
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
13
|
+
RUN apt-get update \
|
14
|
+
&& apt-get install -y imagemagick firefox \
|
15
|
+
&& apt-get autoremove -y \
|
16
|
+
&& cp config/database.postgres.docker.yml config/database.yml \
|
17
|
+
&& chown -R app:app /home/app \
|
18
|
+
&& rm -f /etc/service/nginx/down /etc/nginx/sites-enabled/default \
|
19
|
+
&& cp .docker/nginx/sites-enabled/ffcrm.conf /etc/nginx/sites-enabled/ffcrm.conf \
|
20
|
+
&& bundle install --deployment
|
data/Gemfile
CHANGED
@@ -39,7 +39,6 @@ group :development do
|
|
39
39
|
# don't load these gems in travis
|
40
40
|
unless ENV["CI"]
|
41
41
|
gem 'thin'
|
42
|
-
gem 'quiet_assets'
|
43
42
|
gem 'capistrano'
|
44
43
|
gem 'capistrano-bundler'
|
45
44
|
gem 'capistrano-rails'
|
@@ -54,6 +53,7 @@ group :development do
|
|
54
53
|
end
|
55
54
|
|
56
55
|
group :development, :test do
|
56
|
+
gem 'rails-controller-testing'
|
57
57
|
gem 'rspec-rails'
|
58
58
|
gem 'rspec-activemodel-mocks'
|
59
59
|
gem 'headless'
|
@@ -61,12 +61,13 @@ group :development, :test do
|
|
61
61
|
gem 'pry-rails' unless ENV["CI"]
|
62
62
|
gem 'factory_girl_rails', '~> 4.7.0' # 4.8.0+ stubbed models are not allowed to access the database - User#destroyed?()
|
63
63
|
gem 'rubocop'
|
64
|
-
gem 'rainbow'
|
64
|
+
gem 'rainbow'
|
65
65
|
end
|
66
66
|
|
67
67
|
group :test do
|
68
68
|
gem 'capybara'
|
69
|
-
gem 'selenium-webdriver'
|
69
|
+
gem 'selenium-webdriver'
|
70
|
+
gem 'chromedriver-helper'
|
70
71
|
gem 'database_cleaner'
|
71
72
|
gem "acts_as_fu"
|
72
73
|
gem 'zeus' unless ENV["CI"]
|
@@ -83,4 +84,6 @@ gem 'coffee-rails'
|
|
83
84
|
gem 'uglifier'
|
84
85
|
gem 'execjs'
|
85
86
|
gem 'therubyracer', platform: :ruby unless ENV["CI"]
|
86
|
-
gem 'nokogiri', '>= 1.
|
87
|
+
gem 'nokogiri', '>= 1.8.1'
|
88
|
+
gem 'activemodel-serializers-xml'
|
89
|
+
gem 'bootsnap', require: false
|
data/Gemfile.lock
CHANGED
@@ -1,133 +1,147 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
|
5
|
-
actionpack (=
|
6
|
-
|
7
|
-
|
4
|
+
actioncable (5.0.6)
|
5
|
+
actionpack (= 5.0.6)
|
6
|
+
nio4r (>= 1.2, < 3.0)
|
7
|
+
websocket-driver (~> 0.6.1)
|
8
|
+
actionmailer (5.0.6)
|
9
|
+
actionpack (= 5.0.6)
|
10
|
+
actionview (= 5.0.6)
|
11
|
+
activejob (= 5.0.6)
|
8
12
|
mail (~> 2.5, >= 2.5.4)
|
9
|
-
rails-dom-testing (~>
|
10
|
-
actionpack (
|
11
|
-
actionview (=
|
12
|
-
activesupport (=
|
13
|
-
rack (~>
|
14
|
-
rack-test (~> 0.6.
|
15
|
-
rails-dom-testing (~>
|
13
|
+
rails-dom-testing (~> 2.0)
|
14
|
+
actionpack (5.0.6)
|
15
|
+
actionview (= 5.0.6)
|
16
|
+
activesupport (= 5.0.6)
|
17
|
+
rack (~> 2.0)
|
18
|
+
rack-test (~> 0.6.3)
|
19
|
+
rails-dom-testing (~> 2.0)
|
16
20
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
17
|
-
actionview (
|
18
|
-
activesupport (=
|
21
|
+
actionview (5.0.6)
|
22
|
+
activesupport (= 5.0.6)
|
19
23
|
builder (~> 3.1)
|
20
24
|
erubis (~> 2.7.0)
|
21
|
-
rails-dom-testing (~>
|
25
|
+
rails-dom-testing (~> 2.0)
|
22
26
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
23
|
-
activejob (
|
24
|
-
activesupport (=
|
25
|
-
globalid (>= 0.3.
|
26
|
-
activemodel (
|
27
|
-
activesupport (=
|
27
|
+
activejob (5.0.6)
|
28
|
+
activesupport (= 5.0.6)
|
29
|
+
globalid (>= 0.3.6)
|
30
|
+
activemodel (5.0.6)
|
31
|
+
activesupport (= 5.0.6)
|
32
|
+
activemodel-serializers-xml (1.0.1)
|
33
|
+
activemodel (> 5.x)
|
34
|
+
activerecord (> 5.x)
|
35
|
+
activesupport (> 5.x)
|
28
36
|
builder (~> 3.1)
|
29
|
-
activerecord (
|
30
|
-
activemodel (=
|
31
|
-
activesupport (=
|
32
|
-
arel (~>
|
33
|
-
activesupport (
|
37
|
+
activerecord (5.0.6)
|
38
|
+
activemodel (= 5.0.6)
|
39
|
+
activesupport (= 5.0.6)
|
40
|
+
arel (~> 7.0)
|
41
|
+
activesupport (5.0.6)
|
42
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
34
43
|
i18n (~> 0.7)
|
35
44
|
minitest (~> 5.1)
|
36
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
37
45
|
tzinfo (~> 1.1)
|
38
|
-
acts-as-taggable-on (
|
39
|
-
activerecord (>= 4.
|
46
|
+
acts-as-taggable-on (5.0.0)
|
47
|
+
activerecord (>= 4.2.8)
|
40
48
|
acts_as_commentable (4.0.2)
|
41
49
|
acts_as_fu (0.0.9)
|
42
50
|
activerecord
|
43
51
|
sqlite3
|
44
|
-
acts_as_list (0.9.
|
52
|
+
acts_as_list (0.9.7)
|
45
53
|
activerecord (>= 3.0)
|
46
|
-
addressable (2.5.
|
54
|
+
addressable (2.5.1)
|
47
55
|
public_suffix (~> 2.0, >= 2.0.2)
|
48
|
-
airbrussh (1.
|
56
|
+
airbrussh (1.3.0)
|
49
57
|
sshkit (>= 1.6.1, != 1.7.0)
|
50
|
-
|
58
|
+
archive-zip (0.7.0)
|
59
|
+
io-like (~> 0.3.0)
|
60
|
+
arel (7.1.4)
|
51
61
|
ast (2.3.0)
|
52
|
-
authlogic (3.
|
53
|
-
activerecord (>= 3.2)
|
54
|
-
activesupport (>= 3.2)
|
62
|
+
authlogic (3.6.0)
|
63
|
+
activerecord (>= 3.2, < 5.2)
|
64
|
+
activesupport (>= 3.2, < 5.2)
|
55
65
|
request_store (~> 1.0)
|
56
|
-
scrypt (>= 1.2, <
|
66
|
+
scrypt (>= 1.2, < 4.0)
|
67
|
+
bootsnap (1.1.6)
|
68
|
+
msgpack (~> 1.0)
|
57
69
|
builder (3.2.3)
|
58
70
|
byebug (9.0.6)
|
59
|
-
cancancan (
|
60
|
-
capistrano (3.
|
71
|
+
cancancan (2.0.0)
|
72
|
+
capistrano (3.8.2)
|
61
73
|
airbrussh (>= 1.0.0)
|
62
|
-
capistrano-harrow
|
63
74
|
i18n
|
64
75
|
rake (>= 10.0.0)
|
65
76
|
sshkit (>= 1.9.0)
|
66
77
|
capistrano-bundler (1.2.0)
|
67
78
|
capistrano (~> 3.1)
|
68
79
|
sshkit (~> 1.2)
|
69
|
-
capistrano-
|
70
|
-
capistrano-rails (1.2.2)
|
80
|
+
capistrano-rails (1.3.0)
|
71
81
|
capistrano (~> 3.1)
|
72
82
|
capistrano-bundler (~> 1.1)
|
73
83
|
capistrano-rvm (0.1.2)
|
74
84
|
capistrano (~> 3.0)
|
75
85
|
sshkit (~> 1.2)
|
76
|
-
capybara (2.
|
86
|
+
capybara (2.15.4)
|
77
87
|
addressable
|
78
|
-
|
88
|
+
mini_mime (>= 0.1.3)
|
79
89
|
nokogiri (>= 1.3.3)
|
80
90
|
rack (>= 1.0.0)
|
81
91
|
rack-test (>= 0.5.4)
|
82
92
|
xpath (~> 2.0)
|
83
|
-
childprocess (0.
|
93
|
+
childprocess (0.7.1)
|
84
94
|
ffi (~> 1.0, >= 1.0.11)
|
95
|
+
chromedriver-helper (1.1.0)
|
96
|
+
archive-zip (~> 0.7.0)
|
97
|
+
nokogiri (~> 1.6)
|
85
98
|
chronic (0.10.2)
|
86
|
-
climate_control (0.
|
99
|
+
climate_control (0.2.0)
|
87
100
|
cocaine (0.5.8)
|
88
101
|
climate_control (>= 0.0.3, < 1.0)
|
89
102
|
coderay (1.1.1)
|
90
|
-
coffee-rails (4.2.
|
103
|
+
coffee-rails (4.2.2)
|
91
104
|
coffee-script (>= 2.2.0)
|
92
|
-
railties (>= 4.0.0
|
105
|
+
railties (>= 4.0.0)
|
93
106
|
coffee-script (2.4.1)
|
94
107
|
coffee-script-source
|
95
108
|
execjs
|
96
|
-
coffee-script-source (1.
|
97
|
-
concurrent-ruby (1.0.
|
98
|
-
countries (2.0.
|
109
|
+
coffee-script-source (1.12.2)
|
110
|
+
concurrent-ruby (1.0.5)
|
111
|
+
countries (2.0.8)
|
99
112
|
i18n_data (~> 0.7.0)
|
100
113
|
money (~> 6.7)
|
101
114
|
sixarm_ruby_unaccent (~> 1.1)
|
102
115
|
unicode_utils (~> 1.4)
|
103
|
-
country_select (3.
|
116
|
+
country_select (3.1.0)
|
104
117
|
countries (~> 2.0)
|
105
118
|
sort_alphabetical (~> 1.0)
|
106
|
-
|
119
|
+
crass (1.0.3)
|
120
|
+
css_parser (1.5.0)
|
107
121
|
addressable
|
108
122
|
daemons (1.2.4)
|
109
|
-
database_cleaner (1.
|
123
|
+
database_cleaner (1.6.1)
|
110
124
|
diff-lcs (1.3)
|
111
125
|
dynamic_form (1.1.4)
|
112
126
|
email_reply_parser_ffcrm (0.5.0)
|
113
127
|
erubis (2.7.0)
|
114
|
-
eventmachine (1.2.
|
128
|
+
eventmachine (1.2.3)
|
115
129
|
execjs (2.7.0)
|
116
130
|
factory_girl (4.7.0)
|
117
131
|
activesupport (>= 3.0.0)
|
118
132
|
factory_girl_rails (4.7.0)
|
119
133
|
factory_girl (~> 4.7.0)
|
120
134
|
railties (>= 3.0.0)
|
121
|
-
ffaker (2.
|
122
|
-
ffi (1.9.
|
135
|
+
ffaker (2.6.0)
|
136
|
+
ffi (1.9.18)
|
123
137
|
ffi-compiler (1.0.1)
|
124
138
|
ffi (>= 1.0.0)
|
125
139
|
rake
|
126
|
-
font-awesome-rails (4.7.0.
|
127
|
-
railties (>= 3.2, < 5.
|
140
|
+
font-awesome-rails (4.7.0.2)
|
141
|
+
railties (>= 3.2, < 5.2)
|
128
142
|
formatador (0.2.5)
|
129
|
-
globalid (0.
|
130
|
-
activesupport (>= 4.
|
143
|
+
globalid (0.4.1)
|
144
|
+
activesupport (>= 4.2.0)
|
131
145
|
guard (2.14.1)
|
132
146
|
formatador (>= 0.2.4)
|
133
147
|
listen (>= 2.7, < 4.0)
|
@@ -145,46 +159,51 @@ GEM
|
|
145
159
|
guard (~> 2.1)
|
146
160
|
guard-compat (~> 1.1)
|
147
161
|
rspec (>= 2.99.0, < 4.0)
|
148
|
-
haml (
|
162
|
+
haml (5.0.1)
|
163
|
+
temple (>= 0.8.0)
|
149
164
|
tilt
|
150
165
|
headless (2.3.1)
|
151
166
|
htmlentities (4.3.4)
|
152
|
-
i18n (0.
|
167
|
+
i18n (0.8.6)
|
153
168
|
i18n_data (0.7.0)
|
169
|
+
io-like (0.3.0)
|
154
170
|
jquery-migrate-rails (1.2.1)
|
155
|
-
jquery-rails (4.
|
171
|
+
jquery-rails (4.3.1)
|
156
172
|
rails-dom-testing (>= 1, < 3)
|
157
173
|
railties (>= 4.2.0)
|
158
174
|
thor (>= 0.14, < 2.0)
|
159
175
|
jquery-ui-rails (6.0.1)
|
160
176
|
railties (>= 3.2.16)
|
161
177
|
kgio (2.11.0)
|
162
|
-
libv8 (3.16.14.
|
178
|
+
libv8 (3.16.14.19)
|
163
179
|
listen (3.1.5)
|
164
180
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
165
181
|
rb-inotify (~> 0.9, >= 0.9.7)
|
166
182
|
ruby_dep (~> 1.2)
|
167
|
-
loofah (2.
|
183
|
+
loofah (2.1.1)
|
184
|
+
crass (~> 1.0.2)
|
168
185
|
nokogiri (>= 1.5.9)
|
169
|
-
lumberjack (1.0.
|
170
|
-
mail (2.
|
171
|
-
|
186
|
+
lumberjack (1.0.12)
|
187
|
+
mail (2.7.0)
|
188
|
+
mini_mime (>= 0.1.1)
|
172
189
|
method_source (0.8.2)
|
173
190
|
mime-types (3.1)
|
174
191
|
mime-types-data (~> 3.2015)
|
175
192
|
mime-types-data (3.2016.0521)
|
176
193
|
mimemagic (0.3.2)
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
194
|
+
mini_mime (0.1.4)
|
195
|
+
mini_portile2 (2.3.0)
|
196
|
+
minitest (5.10.3)
|
197
|
+
money (6.9.0)
|
198
|
+
i18n (>= 0.6.4, < 0.9)
|
199
|
+
msgpack (1.2.0)
|
182
200
|
nenv (0.3.0)
|
183
201
|
net-scp (1.2.1)
|
184
202
|
net-ssh (>= 2.6.5)
|
185
203
|
net-ssh (4.1.0)
|
186
|
-
|
187
|
-
|
204
|
+
nio4r (2.1.0)
|
205
|
+
nokogiri (1.8.1)
|
206
|
+
mini_portile2 (~> 2.3.0)
|
188
207
|
notiffany (0.1.1)
|
189
208
|
nenv (~> 0.1)
|
190
209
|
shellany (~> 0.0)
|
@@ -197,48 +216,50 @@ GEM
|
|
197
216
|
cocaine (~> 0.5.5)
|
198
217
|
mime-types
|
199
218
|
mimemagic (~> 0.3.0)
|
219
|
+
parallel (1.11.2)
|
200
220
|
parser (2.4.0.0)
|
201
221
|
ast (~> 2.2)
|
202
|
-
pg (0.
|
222
|
+
pg (0.21.0)
|
203
223
|
polyamorous (1.3.1)
|
204
224
|
activerecord (>= 3.0)
|
205
225
|
powerpack (0.1.1)
|
206
|
-
premailer (1.
|
207
|
-
|
226
|
+
premailer (1.10.4)
|
227
|
+
addressable
|
228
|
+
css_parser (>= 1.4.10)
|
208
229
|
htmlentities (>= 4.0.0)
|
209
230
|
pry (0.10.4)
|
210
231
|
coderay (~> 1.1.0)
|
211
232
|
method_source (~> 0.8.1)
|
212
233
|
slop (~> 3.4)
|
213
|
-
pry-rails (0.3.
|
214
|
-
pry (>= 0.
|
234
|
+
pry-rails (0.3.6)
|
235
|
+
pry (>= 0.10.4)
|
215
236
|
public_suffix (2.0.5)
|
216
|
-
|
217
|
-
railties (>= 3.1, < 5.0)
|
218
|
-
rack (1.6.5)
|
237
|
+
rack (2.0.3)
|
219
238
|
rack-test (0.6.3)
|
220
239
|
rack (>= 1.0)
|
221
|
-
rails (
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
240
|
+
rails (5.0.6)
|
241
|
+
actioncable (= 5.0.6)
|
242
|
+
actionmailer (= 5.0.6)
|
243
|
+
actionpack (= 5.0.6)
|
244
|
+
actionview (= 5.0.6)
|
245
|
+
activejob (= 5.0.6)
|
246
|
+
activemodel (= 5.0.6)
|
247
|
+
activerecord (= 5.0.6)
|
248
|
+
activesupport (= 5.0.6)
|
249
|
+
bundler (>= 1.3.0)
|
250
|
+
railties (= 5.0.6)
|
251
|
+
sprockets-rails (>= 2.0.0)
|
252
|
+
rails-controller-testing (1.0.2)
|
253
|
+
actionpack (~> 5.x, >= 5.0.1)
|
254
|
+
actionview (~> 5.x, >= 5.0.1)
|
255
|
+
activesupport (~> 5.x)
|
256
|
+
rails-dom-testing (2.0.3)
|
257
|
+
activesupport (>= 4.2.0)
|
258
|
+
nokogiri (>= 1.6)
|
238
259
|
rails-html-sanitizer (1.0.3)
|
239
260
|
loofah (~> 2.0)
|
240
|
-
rails-observers (0.1.
|
241
|
-
activemodel (
|
261
|
+
rails-observers (0.1.5)
|
262
|
+
activemodel (>= 4.0)
|
242
263
|
rails3-jquery-autocomplete (1.0.15)
|
243
264
|
rails (>= 3.2)
|
244
265
|
rails_12factor (0.0.3)
|
@@ -248,20 +269,22 @@ GEM
|
|
248
269
|
rails (> 3.1)
|
249
270
|
rails_serve_static_assets (0.0.5)
|
250
271
|
rails_stdout_logging (0.0.5)
|
251
|
-
railties (
|
252
|
-
actionpack (=
|
253
|
-
activesupport (=
|
272
|
+
railties (5.0.6)
|
273
|
+
actionpack (= 5.0.6)
|
274
|
+
activesupport (= 5.0.6)
|
275
|
+
method_source
|
254
276
|
rake (>= 0.8.7)
|
255
277
|
thor (>= 0.18.1, < 2.0)
|
256
|
-
rainbow (2.
|
257
|
-
|
258
|
-
|
259
|
-
|
278
|
+
rainbow (2.2.2)
|
279
|
+
rake
|
280
|
+
raindrops (0.18.0)
|
281
|
+
rake (12.3.0)
|
282
|
+
ransack (1.8.3)
|
260
283
|
actionpack (>= 3.0)
|
261
284
|
activerecord (>= 3.0)
|
262
285
|
activesupport (>= 3.0)
|
263
286
|
i18n
|
264
|
-
polyamorous (~> 1.
|
287
|
+
polyamorous (~> 1.3)
|
265
288
|
ransack_chronic (1.1.0)
|
266
289
|
chronic (>= 0.6.7)
|
267
290
|
ransack_ui (1.3.4)
|
@@ -269,40 +292,42 @@ GEM
|
|
269
292
|
ransack_chronic (>= 1.1.0)
|
270
293
|
rb-fchange (0.0.6)
|
271
294
|
ffi
|
272
|
-
rb-fsevent (0.
|
273
|
-
rb-inotify (0.9.
|
274
|
-
ffi (>= 0.5.0)
|
295
|
+
rb-fsevent (0.10.2)
|
296
|
+
rb-inotify (0.9.10)
|
297
|
+
ffi (>= 0.5.0, < 2)
|
275
298
|
ref (2.0.0)
|
276
299
|
request_store (1.3.2)
|
277
|
-
responders (2.
|
278
|
-
|
300
|
+
responders (2.4.0)
|
301
|
+
actionpack (>= 4.2.0, < 5.3)
|
302
|
+
railties (>= 4.2.0, < 5.3)
|
279
303
|
responds_to_parent (1.1.0)
|
280
|
-
rspec (3.
|
281
|
-
rspec-core (~> 3.
|
282
|
-
rspec-expectations (~> 3.
|
283
|
-
rspec-mocks (~> 3.
|
304
|
+
rspec (3.6.0)
|
305
|
+
rspec-core (~> 3.6.0)
|
306
|
+
rspec-expectations (~> 3.6.0)
|
307
|
+
rspec-mocks (~> 3.6.0)
|
284
308
|
rspec-activemodel-mocks (1.0.3)
|
285
309
|
activemodel (>= 3.0)
|
286
310
|
activesupport (>= 3.0)
|
287
311
|
rspec-mocks (>= 2.99, < 4.0)
|
288
|
-
rspec-core (3.
|
289
|
-
rspec-support (~> 3.
|
290
|
-
rspec-expectations (3.
|
312
|
+
rspec-core (3.6.0)
|
313
|
+
rspec-support (~> 3.6.0)
|
314
|
+
rspec-expectations (3.6.0)
|
291
315
|
diff-lcs (>= 1.2.0, < 2.0)
|
292
|
-
rspec-support (~> 3.
|
293
|
-
rspec-mocks (3.
|
316
|
+
rspec-support (~> 3.6.0)
|
317
|
+
rspec-mocks (3.6.0)
|
294
318
|
diff-lcs (>= 1.2.0, < 2.0)
|
295
|
-
rspec-support (~> 3.
|
296
|
-
rspec-rails (3.
|
319
|
+
rspec-support (~> 3.6.0)
|
320
|
+
rspec-rails (3.6.0)
|
297
321
|
actionpack (>= 3.0)
|
298
322
|
activesupport (>= 3.0)
|
299
323
|
railties (>= 3.0)
|
300
|
-
rspec-core (~> 3.
|
301
|
-
rspec-expectations (~> 3.
|
302
|
-
rspec-mocks (~> 3.
|
303
|
-
rspec-support (~> 3.
|
304
|
-
rspec-support (3.
|
305
|
-
rubocop (0.
|
324
|
+
rspec-core (~> 3.6.0)
|
325
|
+
rspec-expectations (~> 3.6.0)
|
326
|
+
rspec-mocks (~> 3.6.0)
|
327
|
+
rspec-support (~> 3.6.0)
|
328
|
+
rspec-support (3.6.0)
|
329
|
+
rubocop (0.49.1)
|
330
|
+
parallel (~> 1.10)
|
306
331
|
parser (>= 2.3.3.1, < 3.0)
|
307
332
|
powerpack (~> 0.1)
|
308
333
|
rainbow (>= 1.99.1, < 3.0)
|
@@ -311,77 +336,84 @@ GEM
|
|
311
336
|
ruby-progressbar (1.8.1)
|
312
337
|
ruby_dep (1.5.0)
|
313
338
|
rubyzip (1.2.1)
|
314
|
-
sass (3.
|
339
|
+
sass (3.5.1)
|
340
|
+
sass-listen (~> 4.0.0)
|
341
|
+
sass-listen (4.0.0)
|
342
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
343
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
315
344
|
sass-rails (5.0.6)
|
316
345
|
railties (>= 4.0.0, < 6)
|
317
346
|
sass (~> 3.1)
|
318
347
|
sprockets (>= 2.8, < 4.0)
|
319
348
|
sprockets-rails (>= 2.0, < 4.0)
|
320
349
|
tilt (>= 1.1, < 3)
|
321
|
-
scrypt (
|
322
|
-
ffi-compiler (>= 0.0
|
323
|
-
rake
|
350
|
+
scrypt (3.0.5)
|
351
|
+
ffi-compiler (>= 1.0, < 2.0)
|
324
352
|
select2-rails (4.0.3)
|
325
353
|
thor (~> 0.14)
|
326
|
-
selenium-webdriver (
|
354
|
+
selenium-webdriver (3.6.0)
|
327
355
|
childprocess (~> 0.5)
|
328
356
|
rubyzip (~> 1.0)
|
329
|
-
websocket (~> 1.0)
|
330
357
|
shellany (0.0.1)
|
331
|
-
simple_form (3.
|
332
|
-
actionpack (> 4, < 5.
|
333
|
-
activemodel (> 4, < 5.
|
334
|
-
sixarm_ruby_unaccent (1.1.
|
358
|
+
simple_form (3.5.0)
|
359
|
+
actionpack (> 4, < 5.2)
|
360
|
+
activemodel (> 4, < 5.2)
|
361
|
+
sixarm_ruby_unaccent (1.1.2)
|
335
362
|
slop (3.6.0)
|
336
363
|
sort_alphabetical (1.1.0)
|
337
364
|
unicode_utils (>= 1.2.2)
|
338
365
|
sprockets (3.7.1)
|
339
366
|
concurrent-ruby (~> 1.0)
|
340
367
|
rack (> 1, < 3)
|
341
|
-
sprockets-rails (
|
342
|
-
actionpack (>=
|
343
|
-
activesupport (>=
|
344
|
-
sprockets (>=
|
368
|
+
sprockets-rails (3.2.1)
|
369
|
+
actionpack (>= 4.0)
|
370
|
+
activesupport (>= 4.0)
|
371
|
+
sprockets (>= 3.0.0)
|
345
372
|
sqlite3 (1.3.13)
|
346
|
-
sshkit (1.
|
373
|
+
sshkit (1.14.0)
|
347
374
|
net-scp (>= 1.1.2)
|
348
375
|
net-ssh (>= 2.8.0)
|
376
|
+
temple (0.8.0)
|
349
377
|
therubyracer (0.12.3)
|
350
378
|
libv8 (~> 3.16.14.15)
|
351
379
|
ref
|
352
|
-
thin (1.7.
|
380
|
+
thin (1.7.2)
|
353
381
|
daemons (~> 1.0, >= 1.0.9)
|
354
382
|
eventmachine (~> 1.0, >= 1.0.4)
|
355
383
|
rack (>= 1, < 3)
|
356
|
-
thor (0.
|
384
|
+
thor (0.20.0)
|
357
385
|
thread_safe (0.3.6)
|
358
|
-
tilt (2.0.
|
359
|
-
timecop (0.
|
360
|
-
tzinfo (1.2.
|
386
|
+
tilt (2.0.7)
|
387
|
+
timecop (0.9.1)
|
388
|
+
tzinfo (1.2.4)
|
361
389
|
thread_safe (~> 0.1)
|
362
|
-
uglifier (3.0
|
390
|
+
uglifier (3.2.0)
|
363
391
|
execjs (>= 0.3.0, < 3)
|
364
|
-
unicode-display_width (1.
|
392
|
+
unicode-display_width (1.3.0)
|
365
393
|
unicode_utils (1.4.0)
|
366
|
-
unicorn (5.
|
394
|
+
unicorn (5.3.0)
|
367
395
|
kgio (~> 2.6)
|
368
396
|
raindrops (~> 0.7)
|
369
|
-
websocket (
|
370
|
-
|
371
|
-
|
397
|
+
websocket-driver (0.6.5)
|
398
|
+
websocket-extensions (>= 0.1.0)
|
399
|
+
websocket-extensions (0.1.3)
|
400
|
+
will_paginate (3.1.6)
|
401
|
+
xpath (2.1.0)
|
372
402
|
nokogiri (~> 1.3)
|
373
|
-
zeus (0.15.
|
403
|
+
zeus (0.15.14)
|
374
404
|
method_source (>= 0.6.7)
|
375
405
|
|
376
406
|
PLATFORMS
|
377
407
|
ruby
|
378
408
|
|
379
409
|
DEPENDENCIES
|
410
|
+
activemodel-serializers-xml
|
380
411
|
acts-as-taggable-on (>= 3.4.3)
|
381
412
|
acts_as_commentable
|
382
413
|
acts_as_fu
|
383
414
|
acts_as_list
|
384
|
-
authlogic (>= 3.4.4
|
415
|
+
authlogic (>= 3.4.4)
|
416
|
+
bootsnap
|
385
417
|
byebug
|
386
418
|
cancancan
|
387
419
|
capistrano
|
@@ -389,6 +421,7 @@ DEPENDENCIES
|
|
389
421
|
capistrano-rails
|
390
422
|
capistrano-rvm
|
391
423
|
capybara
|
424
|
+
chromedriver-helper
|
392
425
|
cocaine
|
393
426
|
coffee-rails
|
394
427
|
coffee-script-source (~> 1.8, >= 1.8.0)
|
@@ -408,20 +441,20 @@ DEPENDENCIES
|
|
408
441
|
jquery-migrate-rails
|
409
442
|
jquery-rails
|
410
443
|
jquery-ui-rails
|
411
|
-
nokogiri (>= 1.
|
444
|
+
nokogiri (>= 1.8.1)
|
412
445
|
paper_trail (~> 6.0.0)
|
413
446
|
paperclip
|
414
447
|
pg
|
415
448
|
premailer
|
416
449
|
pry-rails
|
417
|
-
|
418
|
-
rails
|
450
|
+
rails (~> 5.0.0)
|
451
|
+
rails-controller-testing
|
419
452
|
rails-observers
|
420
453
|
rails3-jquery-autocomplete
|
421
454
|
rails_12factor
|
422
455
|
rails_autolink
|
423
|
-
rainbow
|
424
|
-
ransack (~> 1.
|
456
|
+
rainbow
|
457
|
+
ransack (~> 1.7, >= 1.6.2)
|
425
458
|
ransack_ui (~> 1.3, >= 1.3.1)
|
426
459
|
rb-fchange
|
427
460
|
rb-fsevent
|
@@ -434,9 +467,9 @@ DEPENDENCIES
|
|
434
467
|
sass
|
435
468
|
sass-rails
|
436
469
|
select2-rails
|
437
|
-
selenium-webdriver
|
470
|
+
selenium-webdriver
|
438
471
|
simple_form
|
439
|
-
sprockets-rails (
|
472
|
+
sprockets-rails (>= 3.0.0)
|
440
473
|
therubyracer
|
441
474
|
thin
|
442
475
|
thor
|
@@ -447,4 +480,4 @@ DEPENDENCIES
|
|
447
480
|
zeus
|
448
481
|
|
449
482
|
BUNDLED WITH
|
450
|
-
1.
|
483
|
+
1.16.0
|