bhf 1.0.0.beta15 → 1.0.0.beta16

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7de2d8de2daf035ca6792f1a8f0ee79d115c147ec524d05cfb399062ea613a51
4
- data.tar.gz: 2da1451f1ac4a51ac6ef2bb64049cf77f276731d2fb9f0ad361e0889a013640e
3
+ metadata.gz: c3eade6bcba108b7540734cdf65ca9ed614ab2cfd64ec4934fbad4a1672191e1
4
+ data.tar.gz: 5e44a86b58952cafa8cd27c85f7b87c39f421aa4d6f3c3fcc6159fcdf05531e6
5
5
  SHA512:
6
- metadata.gz: 9dabe94a653a2ecb3d374b1a32278fbb5132c6eabbf6abafb34381562c97bb0f91d72011c192c230b221b366c413a7d21e090ea75d7021edd0b81b3afdd786aa
7
- data.tar.gz: c771edcf4fcbea5674fce3f56cfd5e8da1edf47b3c45838a7687983e8a5d51dfadda4912a2addbbba90ad016b3ccd717e066534e5ae1f8516abd0aea04a00440
6
+ metadata.gz: a4dd961161d6f083d5c1963d5272c450fca87a165bcc2479ee7786a14113d562469cbdb0d8afe732319683479ab344be66ad64a844d1583ddd432378880c387a
7
+ data.tar.gz: 49e8e4bfdc24fe1adc6fcdb3d18689e8e4ec32aa115c7a3d8f566d021dafa042cb7f5a65c585f5fc978a80a860d944e981e7b9626357f7819e4e71344ca6e749
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # bhf
2
2
 
3
- ## [Guide and Documentation](http://antpaw.github.io/bhf/)
3
+ ## [Guide and Documentation](https://antpaw.github.io/bhf/)
4
4
 
5
5
  ## Contributing to bhf
6
6
 
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ require 'rake'
14
14
  require 'jeweler'
15
15
  Jeweler::Tasks.new do |gem|
16
16
  gem.name = 'bhf'
17
- gem.homepage = 'http://antpaw.github.io/bhf'
17
+ gem.homepage = 'https://antpaw.github.io/bhf'
18
18
  gem.licenses = 'MIT'
19
19
  gem.summary = 'A simple to use Rails-Engine-Gem that offers an admin interface for trusted user.'
20
20
  gem.description = 'A simple to use Rails-Engine-Gem that offers an admin interface for trusted user. Easy integratable and highly configurable and agnostic. Works with ActiveRecord and Mongoid.'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0.beta15
1
+ 1.0.0.beta16
@@ -79,7 +79,7 @@
79
79
  = link_to delete_t(platform), entry_path(platform.name, object), method: :delete, remote: true, class: 'icon delete js_delete', data: {type: :json, confirm: t('bhf.helpers.promts.confirm', platform_title: platform.title_singular.titleize)}
80
80
  - else
81
81
  %td.no_entries{colspan: platform.columns_count}
82
- = t 'bhf.pagination.info', name_zero: platform.title.titleize, count: 0
82
+ = t 'bhf.pagination.info', name: platform.title.titleize, count: 0
83
83
  - unless platform.hide_create
84
84
  = link_to new_t(platform), new_entry_path(platform.name)
85
85
 
data/bhf.gemspec CHANGED
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: bhf 1.0.0.beta15 ruby lib
5
+ # stub: bhf 1.0.0.beta16 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "bhf".freeze
9
- s.version = "1.0.0.beta15"
9
+ s.version = "1.0.0.beta16"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["Anton Pawlik".freeze]
14
- s.date = "2023-03-21"
14
+ s.date = "2023-04-11"
15
15
  s.description = "A simple to use Rails-Engine-Gem that offers an admin interface for trusted user. Easy integratable and highly configurable and agnostic. Works with ActiveRecord and Mongoid.".freeze
16
16
  s.email = "anton.pawlik@gmail.com".freeze
17
17
  s.extra_rdoc_files = [
@@ -172,7 +172,7 @@ Gem::Specification.new do |s|
172
172
  "test/database.yml",
173
173
  "test/test_helper.rb"
174
174
  ]
175
- s.homepage = "http://antpaw.github.io/bhf".freeze
175
+ s.homepage = "https://antpaw.github.io/bhf".freeze
176
176
  s.licenses = ["MIT".freeze]
177
177
  s.rubygems_version = "3.0.9".freeze
178
178
  s.summary = "A simple to use Rails-Engine-Gem that offers an admin interface for trusted user.".freeze
@@ -70,8 +70,8 @@ de:
70
70
 
71
71
  footer:
72
72
  state: 'Seite wurde in ~%{time} Sekunden erstellt'
73
- copy: 'Gemacht von <a href="http://twitter.com/antpaw">@antpaw</a>'
74
- info: 'Mehr Informationen auf <a href="http://antpaw.github.io/bhf">GitHub</a>'
73
+ copy: 'Gemacht von <a href="https://twitter.com/antpaw">@antpaw</a>'
74
+ info: 'Mehr Informationen auf <a href="https://antpaw.github.io/bhf">GitHub</a>'
75
75
 
76
76
  attributes:
77
77
  _id: 'id'
@@ -75,8 +75,8 @@ en:
75
75
 
76
76
  footer:
77
77
  state: 'Page rendered in ~%{time} seconds'
78
- copy: 'Made by <a href="http://twitter.com/antpaw">@antpaw</a>'
79
- info: 'More information on <a href="http://antpaw.github.io/bhf">GitHub</a>'
78
+ copy: 'Made by <a href="https://twitter.com/antpaw">@antpaw</a>'
79
+ info: 'More information on <a href="https://antpaw.github.io/bhf">GitHub</a>'
80
80
 
81
81
  attributes:
82
82
  _id: 'id'
@@ -74,8 +74,8 @@ pt:
74
74
 
75
75
  footer:
76
76
  state: 'Página renderizada em ~%{time} segundos'
77
- copy: 'Feito por <a href="http://twitter.com/antpaw">@antpaw</a>'
78
- info: 'Mais informações no <a href="http://antpaw.github.io/bhf">GitHub</a>'
77
+ copy: 'Feito por <a href="https://twitter.com/antpaw">@antpaw</a>'
78
+ info: 'Mais informações no <a href="https://antpaw.github.io/bhf">GitHub</a>'
79
79
 
80
80
  attributes:
81
81
  _id: 'id'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bhf
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta15
4
+ version: 1.0.0.beta16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Pawlik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-21 00:00:00.000000000 Z
11
+ date: 2023-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -312,7 +312,7 @@ files:
312
312
  - lib/rails/generators/bhf/templates/initializer.rb
313
313
  - test/database.yml
314
314
  - test/test_helper.rb
315
- homepage: http://antpaw.github.io/bhf
315
+ homepage: https://antpaw.github.io/bhf
316
316
  licenses:
317
317
  - MIT
318
318
  metadata: {}