cruj_cruj_cruj_visagio 1.0.3 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6372457007f01b1f3dc24cb9a22fe720637b5afe3a94279e0cbfbd4ad1cb5b9
4
- data.tar.gz: 813a16e5151a3dbf333dc36e2e446636a8a9644677a86d01814b06a784dfbddb
3
+ metadata.gz: 37cbabd2008ce9320cf86f7157283701a062b21a0f5ca32c42dfe4a19570b74c
4
+ data.tar.gz: 2caea412ce625e05bc0b65a0f6ab4f13b358cdb5641b5602afaf585d5529b9a8
5
5
  SHA512:
6
- metadata.gz: 801c572ec17130d83915aaf6f26d7164d469456e40952a6351d86c4d728f70c0913cc2f79e35a1ad969bd89df53007b606e1ef9fefb58538bc6ae59fb2d9b43f
7
- data.tar.gz: 390284808f449e21f68633d57e68150b2ab020198cd6cb36eae3e996d73dce8e6b6d2cb887676518717e197ddd91cecf90ff926a7f07ac90d51f445afb8acd87
6
+ metadata.gz: 0e34145f7349a745bc15948850435497790d6f9447459dc1569d63057126a12dd84e565f6ab207631798730c1d8e79e1eea9f8df9262947f4f65568e1f81489b
7
+ data.tar.gz: 3e8e5529334621fe075e60d51bcbe610bbcd2c649a8e50a47239eeb10fe71a6555a2045c0113715619c7c086eb29959378580ab5bf598a92a2d8cf2b6185fb13
@@ -1,16 +1,16 @@
1
1
  class CrujCrujCrujController < ApplicationController
2
2
  include ActionView::Helpers::NumberHelper
3
3
 
4
- before_filter :before_index , only: [:index]
5
- before_filter :before_new , only: [:new]
6
- before_filter :before_create, only: [:create]
7
- before_filter :before_edit , only: [:edit]
8
- before_filter :before_update, only: [:update]
9
- before_filter :before_destroy, only: [:destroy]
4
+ before_action :before_index , only: [:index]
5
+ before_action :before_new , only: [:new]
6
+ before_action :before_create, only: [:create]
7
+ before_action :before_edit , only: [:edit]
8
+ before_action :before_update, only: [:update]
9
+ before_action :before_destroy, only: [:destroy]
10
10
 
11
- before_filter :find_all_resources, only: [:index]
12
- before_filter :build_resource , only: [:new, :create]
13
- before_filter :find_resource , only: [:edit, :update, :destroy]
11
+ before_action :find_all_resources, only: [:index]
12
+ before_action :build_resource , only: [:new, :create]
13
+ before_action :find_resource , only: [:edit, :update, :destroy]
14
14
 
15
15
  helper_method :namespace_url, :namespaces, :model_class, :snake_case_model_name,
16
16
  :resource_url,
@@ -72,7 +72,10 @@ class CrujCrujCrujController < ApplicationController
72
72
 
73
73
  protected
74
74
 
75
- def before_index; end
75
+ def before_index
76
+ params["q"] && params["q"].permit!
77
+ end
78
+
76
79
  def before_new; end
77
80
  def before_create; end
78
81
  def before_edit; end
@@ -0,0 +1,93 @@
1
+ en:
2
+ true_field: 'Yes'
3
+ false_field: 'No'
4
+ all_field: All
5
+ label_principal: Assigned To
6
+ label_issue_status: 'Status'
7
+ label_type: Type
8
+
9
+ project_name_cont: Project Name contains
10
+ tracker_name_cont: Tracker Name contains
11
+ custom_field_name_cont: Custom Field Name contains
12
+ group_lastname_cont: Group Name contains
13
+ issue_status_name_cont: Status Name contains
14
+ status_from_name_cont: Status From Name contains
15
+ status_to_name_cont: Status To Name contains
16
+ custom_field_value_cont: Custom Field Value contains
17
+ principal_firstname_or_principal_lastname_cont: Assigned To contains
18
+ type_cont: Type contains
19
+
20
+ export_template_label: Export Template
21
+ import_template_label: Import Template
22
+
23
+ entry_delete_confirmation_message: Are you sure you want to delete this record?
24
+
25
+ ransack:
26
+ search: search
27
+ predicate: predicate
28
+ and: and
29
+ or: or
30
+ any: any
31
+ all: all
32
+ combinator: combinator
33
+ attribute: attribute
34
+ value: value
35
+ condition: condition
36
+ sort: sort
37
+ asc: ascendent
38
+ desc: descendent
39
+ predicates:
40
+ eq: equal
41
+ eq_any: equal to any
42
+ eq_all: equal to all
43
+ not_eq: not equal
44
+ not_eq_any: not equal to any
45
+ not_eq_all: not equal to all
46
+ matches: matches
47
+ matches_any: matches any
48
+ matches_all: matches all
49
+ does_not_match: does not match
50
+ does_not_match_any: does not match any
51
+ does_not_match_all: does not match all
52
+ lt: less than
53
+ lt_any: less than any
54
+ lt_all: less than all
55
+ lteq: less than or equal
56
+ lteq_any: less than or equal to any
57
+ lteq_all: less than or equal to all
58
+ gt: greater than
59
+ gt_any: greater than any
60
+ gt_all: greater than all
61
+ gteq: greater than or equal
62
+ gteq_any: greater than or equal to any
63
+ gteq_all: greater than or equal to all
64
+ in: in
65
+ in_any: in any
66
+ in_all: in all
67
+ not_in: not in
68
+ not_in_any: not in any
69
+ not_in_all: not in all
70
+ cont: contains
71
+ cont_any: contains any
72
+ cont_all: contains all
73
+ not_cont: not contains
74
+ not_cont_any: not contains any
75
+ not_cont_all: not contains all
76
+ start: starts with
77
+ start_any: starts with any
78
+ start_all: starts with all
79
+ not_start: not starts with
80
+ not_start_any: not starts with any
81
+ not_start_all: not starts with all
82
+ end: ends with
83
+ end_any: ends with any
84
+ end_all: ends with all
85
+ not_end: not ends with
86
+ not_end_any: not ends with any
87
+ not_end_all: not ends with all
88
+ 'true': 'true'
89
+ 'false': 'false'
90
+ present: present
91
+ blank: blank
92
+ 'null': 'null'
93
+ not_null: 'not null'
@@ -1,3 +1,3 @@
1
1
  module CrujCrujCruj
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cruj_cruj_cruj_visagio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Visagio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-04 00:00:00.000000000 Z
11
+ date: 2021-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.0'
19
+ version: '5'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.0'
26
+ version: '5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: ransack
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -114,6 +114,7 @@ files:
114
114
  - app/views/cruj_cruj_cruj/edit.html.erb
115
115
  - app/views/cruj_cruj_cruj/new.html.erb
116
116
  - app/views/layouts/cruj_cruj_cruj/application.html.erb
117
+ - config/locales/en.yml
117
118
  - config/locales/pt-BR.yml
118
119
  - config/routes.rb
119
120
  - lib/cruj_cruj_cruj/engine.rb