active_scaffold 3.6.4.1 → 3.6.5
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.
- checksums.yaml +4 -4
- data/CHANGELOG.rdoc +3 -0
- data/config/locales/de.yml +1 -0
- data/config/locales/en.yml +1 -0
- data/config/locales/es.yml +1 -0
- data/config/locales/fr.yml +1 -0
- data/config/locales/hu.yml +2 -1
- data/config/locales/ja.yml +2 -1
- data/config/locales/ru.yml +2 -1
- data/lib/active_scaffold/bridges/date_picker/helper.rb +6 -4
- data/lib/active_scaffold/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9669748f60be5817e4e654db635763351b986b914e85aff89d5b04b3f6ffe848
|
4
|
+
data.tar.gz: 55a24b6c7ef8e4ac5e517db0d559fbdba43ba055c6eaaa5a5c70e73baa935841
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16dddca354bfaf6dcaa405f4dacb89c402563d06df115dc74ffba41d39e9ff8dadebaf4ec9b63a2a2830f1887ad43f640bd0873fede81c392c96fa5e06b128ac
|
7
|
+
data.tar.gz: 0cc2b4014d79082b8d1f704913f1d22c4876072e3608ffef0dd27f38d237021ee607b280142ee0d5c4402020b3a9533eda56f19d6a0788d5ae27c18cc16ea073
|
data/CHANGELOG.rdoc
CHANGED
data/config/locales/de.yml
CHANGED
data/config/locales/en.yml
CHANGED
data/config/locales/es.yml
CHANGED
data/config/locales/fr.yml
CHANGED
data/config/locales/hu.yml
CHANGED
data/config/locales/ja.yml
CHANGED
data/config/locales/ru.yml
CHANGED
@@ -18,7 +18,8 @@ module ActiveScaffold::Bridges
|
|
18
18
|
/%M/ => 'mm',
|
19
19
|
/%p/ => 'tt',
|
20
20
|
/%S/ => 'ss',
|
21
|
-
/%
|
21
|
+
/%z/ => 'Z',
|
22
|
+
/%[cUWwxXZ]/ => ''
|
22
23
|
}.freeze
|
23
24
|
|
24
25
|
def self.date_options_for_locales
|
@@ -82,13 +83,14 @@ module ActiveScaffold::Bridges
|
|
82
83
|
|
83
84
|
def self.to_datepicker_format(rails_format)
|
84
85
|
return nil if rails_format.nil?
|
85
|
-
|
86
|
+
unsupported = DATE_FORMAT_CONVERSION.index ''
|
87
|
+
if rails_format =~ unsupported
|
88
|
+
options = unsupported.to_s.scan(/\[(.*)\]/).dig(0, 0)&.each_char&.map { |c| "%#{c}" }
|
86
89
|
Rails.logger.warn(
|
87
90
|
"AS DatePicker::Helper: rails date format #{rails_format} includes options "\
|
88
91
|
"which can't be converted to jquery datepicker format. "\
|
89
|
-
|
92
|
+
"Options #{options.join(', ')} are not supported by datepicker and will be removed"
|
90
93
|
)
|
91
|
-
nil
|
92
94
|
end
|
93
95
|
js_format = rails_format.dup
|
94
96
|
js_format.gsub!(/([ ]|^)([^% ]\S*)/, " '\\2'")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_scaffold
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.6.
|
4
|
+
version: 3.6.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Many, see README
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -475,7 +475,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
475
475
|
- !ruby/object:Gem::Version
|
476
476
|
version: '0'
|
477
477
|
requirements: []
|
478
|
-
rubygems_version: 3.
|
478
|
+
rubygems_version: 3.3.7
|
479
479
|
signing_key:
|
480
480
|
specification_version: 4
|
481
481
|
summary: Rails 4.x and 5.x versions of ActiveScaffold supporting prototype and jquery
|