fat_free_crm 0.16.1 → 0.16.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.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a4610b38a0c1f9e0ec425f23e3f3995bdc06e7d8
4
- data.tar.gz: 74743c1df54cdd4b4c995e7ec25b1c91f9991c44
3
+ metadata.gz: 5a2cc83bfe13fdffd81f6608cffab843cbc7add9
4
+ data.tar.gz: 6e7827563fb7f910f8bc1b6293e375100abd0faf
5
5
  SHA512:
6
- metadata.gz: 9c1a920b3272bc9295700f7045399a5aa2466e1793f109ad8fea89c6315e4f289cf8a9175794f7420072abc3ff9b99c14f5c90805d4d1bb71db3efce8f02aa38
7
- data.tar.gz: 96fca95e2972efd06c4f5b7193e116b41da01d490376db4577875ccaee0c69f1760dde032859958357e851042342472c85b2f6b20cb3cbb27eb8a5853bc264fa
6
+ metadata.gz: 5a7dbf30ae93fa539b4bd963a366201e0fae146cabd6b02d1d9802f6e13b8e6d42c54d0caf18f6442cd9d9e8ab47e650d41e36b8f8a65a7c4602c8af2f881a17
7
+ data.tar.gz: 6b1ea5c9ee62949d5ee56f471ab8b02772d3edcd73acd808838e2d56553d730d24c93c377d99bd0bdb60668f99c699a556a63218a29c8ad5c284e22a959f324f
@@ -4,6 +4,10 @@ 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
+ Mon Jan 22, 2018 (0.16.2)
8
+ ---------------------------------------------------------------------
9
+ Fix #687
10
+
7
11
  Sat Jan 6, 2018 (0.16.1)
8
12
  ---------------------------------------------------------------------
9
13
  - #653 Fix regression with emails
@@ -4,8 +4,7 @@
4
4
  # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
5
5
  #------------------------------------------------------------------------------
6
6
  class Admin::FieldsController < Admin::ApplicationController
7
- before_action "set_current_tab('admin/fields')", only: [:index]
8
-
7
+ before_action :setup_current_tab, only: [:index]
9
8
  load_resource except: %i[create subform]
10
9
 
11
10
  # GET /fields
@@ -115,4 +114,8 @@ class Admin::FieldsController < Admin::ApplicationController
115
114
  def field_params
116
115
  params[:field].permit!
117
116
  end
117
+
118
+ def setup_current_tab
119
+ set_current_tab('admin/fields')
120
+ end
118
121
  end
@@ -4,7 +4,7 @@
4
4
  # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
5
5
  #------------------------------------------------------------------------------
6
6
  class Admin::PluginsController < Admin::ApplicationController
7
- before_action "set_current_tab('admin/plugins')", only: [:index]
7
+ before_action :setup_current_tab, only: [:index]
8
8
 
9
9
  # GET /admin/plugins
10
10
  # GET /admin/plugins.xml
@@ -14,4 +14,10 @@ class Admin::PluginsController < Admin::ApplicationController
14
14
 
15
15
  respond_with(@plugins)
16
16
  end
17
+
18
+ protected
19
+
20
+ def setup_current_tab
21
+ set_current_tab('admin/plugins')
22
+ end
17
23
  end
@@ -4,11 +4,15 @@
4
4
  # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
5
5
  #------------------------------------------------------------------------------
6
6
  class Admin::SettingsController < Admin::ApplicationController
7
- before_action "set_current_tab('admin/settings')", only: [:index]
7
+ before_action :setup_current_tab, only: [:index]
8
8
 
9
9
  # GET /admin/settings
10
10
  # GET /admin/settings.xml
11
11
  #----------------------------------------------------------------------------
12
12
  def index
13
13
  end
14
+
15
+ def setup_current_tab
16
+ set_current_tab('admin/settings')
17
+ end
14
18
  end
@@ -4,7 +4,7 @@
4
4
  # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
5
5
  #------------------------------------------------------------------------------
6
6
  class Admin::TagsController < Admin::ApplicationController
7
- before_action "set_current_tab('admin/tags')", only: %i[index show]
7
+ before_action :setup_current_tab, only: %i[index show]
8
8
 
9
9
  load_resource
10
10
 
@@ -68,4 +68,8 @@ class Admin::TagsController < Admin::ApplicationController
68
68
  def tag_params
69
69
  params[:tag].permit!
70
70
  end
71
+
72
+ def setup_current_tab
73
+ set_current_tab('admin/tags')
74
+ end
71
75
  end
@@ -7,7 +7,7 @@ module FatFreeCRM
7
7
  module VERSION #:nodoc:
8
8
  MAJOR = 0
9
9
  MINOR = 16
10
- TINY = 1
10
+ TINY = 2
11
11
  PRE = nil
12
12
 
13
13
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fat_free_crm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.1
4
+ version: 0.16.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Dvorkin
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2018-01-06 00:00:00.000000000 Z
15
+ date: 2018-01-22 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: rails
@@ -1585,7 +1585,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1585
1585
  version: '0'
1586
1586
  requirements: []
1587
1587
  rubyforge_project:
1588
- rubygems_version: 2.5.1
1588
+ rubygems_version: 2.6.14
1589
1589
  signing_key:
1590
1590
  specification_version: 4
1591
1591
  summary: Fat Free CRM