ui_bibz 2.3.10 → 2.3.11

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: d291003cde0377f5f027794701f07794bfc89e03f2f278e927a6310daf2d4996
4
- data.tar.gz: 135670a59f8350d6ecf876c207f92615f024f68c67799a2dccbae1c7a3d7c97a
3
+ metadata.gz: d03105e6c5996d6506ab3a33eeb19c946ebc17c2437faacb014d92d2a505357b
4
+ data.tar.gz: 5db7b3015c910e93b6a0993875707acc5d4409c8fa483ec96621276ebe684b68
5
5
  SHA512:
6
- metadata.gz: f3914983027c3f5e9bf5b8caf1734bf6f77e76c2a5185ad0a31fa10b8482719a8143a430d16341bd0b84f58805c4b671ced92d76827a5c8a32d2f3823221d2b4
7
- data.tar.gz: '09cc66db34f11d2833197fc66350544ea49479b692264a258b401b273828b3faef93204a5f60a52b3ff7eb0a5d3ac0fcb74a6806b4ad99bb7172d9ad80029873'
6
+ metadata.gz: dcf082fd760e2edd532c73b4363b0f6dc776728997f3ac6e757bb8ab40ce9cc27ec9d8f9cbc2e238a7558f66b7d5480dccd9e6cab8a777305333c24354078248
7
+ data.tar.gz: 70f28783259e20ae083e7d8c8490fb13e7aced071f8a6e778b772161f06e2b8a4ff260a1ce4925db3fa0d39f8c3458beee65141dfc3c337548dbc4032eab1813
data/.travis.yml CHANGED
@@ -13,7 +13,7 @@ script:
13
13
  after_script:
14
14
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
15
15
  rvm:
16
- - 2.5.1
16
+ - 2.6.3
17
17
  branches:
18
18
  only:
19
19
  - master
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ui_bibz (2.3.10)
4
+ ui_bibz (2.3.11)
5
5
  bootstrap (= 4.3.1)
6
6
  haml
7
7
  haml-rails
@@ -71,7 +71,7 @@ GEM
71
71
  minitest (~> 5.1)
72
72
  tzinfo (~> 1.1)
73
73
  zeitwerk (~> 2.1, >= 2.1.8)
74
- autoprefixer-rails (9.6.1.1)
74
+ autoprefixer-rails (9.6.5)
75
75
  execjs
76
76
  awesome_print (1.8.0)
77
77
  bootstrap (4.3.1)
@@ -110,7 +110,7 @@ GEM
110
110
  haml (>= 4.0, < 6)
111
111
  nokogiri (>= 1.6.0)
112
112
  ruby_parser (~> 3.5)
113
- i18n (1.6.0)
113
+ i18n (1.7.0)
114
114
  concurrent-ruby (~> 1.0)
115
115
  jquery-rails (4.3.5)
116
116
  rails-dom-testing (>= 1, < 3)
@@ -154,8 +154,8 @@ GEM
154
154
  rails-dom-testing (2.0.3)
155
155
  activesupport (>= 4.2.0)
156
156
  nokogiri (>= 1.6)
157
- rails-html-sanitizer (1.2.0)
158
- loofah (~> 2.2, >= 2.2.2)
157
+ rails-html-sanitizer (1.3.0)
158
+ loofah (~> 2.3)
159
159
  railties (6.0.0)
160
160
  actionpack (= 6.0.0)
161
161
  activesupport (= 6.0.0)
@@ -176,7 +176,7 @@ GEM
176
176
  sprockets-rails
177
177
  tilt
178
178
  sexp_processor (4.13.0)
179
- simple_form (5.0.0)
179
+ simple_form (5.0.1)
180
180
  actionpack (>= 5.0)
181
181
  activemodel (>= 5.0)
182
182
  simplecov (0.13.0)
@@ -184,7 +184,7 @@ GEM
184
184
  json (>= 1.8, < 3)
185
185
  simplecov-html (~> 0.10.0)
186
186
  simplecov-html (0.10.2)
187
- sprockets (3.7.2)
187
+ sprockets (4.0.0)
188
188
  concurrent-ruby (~> 1.0)
189
189
  rack (> 1, < 3)
190
190
  sprockets-rails (3.2.1)
@@ -205,7 +205,7 @@ GEM
205
205
  will_paginate (3.1.8)
206
206
  will_paginate-bootstrap4 (0.2.2)
207
207
  will_paginate (~> 3.0, >= 3.0.0)
208
- zeitwerk (2.1.10)
208
+ zeitwerk (2.2.0)
209
209
 
210
210
  PLATFORMS
211
211
  ruby
data/lib/ui_bibz/infos.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module UiBibz
2
2
  NAME = "Ui Bibz"
3
- VERSION = "2.3.10"
3
+ VERSION = "2.3.11"
4
4
  DESCRIPTION = "A Rails Interface Framework using Bootstrap."
5
5
  SUMMARY = "Create your project with Ui Bibz. Over a thirty reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more."
6
6
  LICENSE = "MIT"
@@ -18,7 +18,7 @@ module UiBibz
18
18
  ActionView::Base.send :include, UiBibz::Helpers::Ui::UxHelper
19
19
  end
20
20
 
21
- config.autoload_paths += Dir["#{config.root}/lib/ui_bibz/inputs/**/"] if defined?(::SimpleForm)
21
+ config.autoload_paths += Dir["#{config.root}/lib/ui_bibz/inputs/"] if defined?(::SimpleForm)
22
22
 
23
23
  initializer "ui_bibz.helpers.form" do
24
24
  ActionView::Base.send :include, UiBibzForm
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ui_bibz
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.10
4
+ version: 2.3.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thooams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-03 00:00:00.000000000 Z
11
+ date: 2019-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails