stones 1.2.1 → 1.2.3

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: 0eba2b2f46cbe6e1d2afc38d54143133f9bdab7a89e92d1a0ee545a55e05e075
4
- data.tar.gz: 56082d244461431fd26acdf8e503f237df08c8dcb5a258799fd6c942addf090c
3
+ metadata.gz: c390f8e48a85981a5466aa8c2caa33bb741117d4fc8eaea7d29621a8df53af80
4
+ data.tar.gz: 38c87015433ad1c4cdaeedea6c08f429db4b20df5db6308e5eaa916d31050de8
5
5
  SHA512:
6
- metadata.gz: e539abb9dcb37807ba4033fb580fa43b41af5eba1d15b77c176b65e478ade69a5b5aedfc2d92379302a41781361badfeaf9a29242c9cf5df93f3d8c2f4b72a8d
7
- data.tar.gz: 8ce7c505fd68ea6e16ad5740a7ceb5fc69eb2a04fde13a86b66246697600b488c01d89749a4a08651fecdc78c67680eb546b492eef0201d168845ec4ea303984
6
+ metadata.gz: cc25403fef011d84294947194132a71a3edd0f4d5b10877d00c1fd9c092e9fc7639da8f93c81fffc826244e3ddcc2d3cdd2085e18423ce2c65d9fac85bbba702
7
+ data.tar.gz: 7ac254931e8872060826781c972a33feb04868d8fb3853bdaa28f2863c8ad8fc8b99d493a9157aaa1a32efd399f564b59d69e85a8699b7b11ea7c1de7adcfafc
data/.gitignore CHANGED
@@ -1,5 +1,6 @@
1
1
  .bundle/
2
2
  coverage/
3
+ .watchr
3
4
 
4
5
  *.gem
5
6
  *.log
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.1.2
1
+ ruby-3.2.2
data/MIT-LICENSE CHANGED
@@ -1,4 +1,6 @@
1
- Copyright (c) 2012-2022 Dittmar Krall - www.matiq.com
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2012-2023 Dittmar Krall (www.matiq.com)
2
4
 
3
5
  Permission is hereby granted, free of charge, to any person obtaining
4
6
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
- Stones
2
- ======
1
+ # Stones
2
+
3
3
  [![Gem Version](https://badge.fury.io/rb/stones.png)](http://badge.fury.io/rb/stones)
4
4
 
5
5
  Each time I created a new Rails project these files are required.
@@ -27,20 +27,20 @@ Files:
27
27
  app/views/shared/_error_explanation.html.erb
28
28
  config/initializers/concerns.rb
29
29
 
30
- Installation
31
- ------------
32
- To install add the following to your Gemfile:
33
-
34
- gem 'stones'
30
+ ## Installation
35
31
 
36
- and run bundle.
32
+ As usual:
33
+ ```ruby
34
+ # Gemfile
35
+ gem "stones"
36
+ ```
37
+ and run "bundle install".
37
38
 
38
- Recommended
39
- -----------
39
+ ## Recommended
40
40
 
41
41
  - rvm
42
- - ruby 3.1.0
43
- - rails 7.0.1
42
+ - ruby 3.1+
43
+ - rails 7.0+
44
44
 
45
45
  Dropped/cleaned files (still available in version 0.2.5):
46
46
 
@@ -48,7 +48,13 @@ Dropped/cleaned files (still available in version 0.2.5):
48
48
  - .watchr
49
49
  - lib/tasks/backup.rake
50
50
 
51
- Rails
52
- -----
51
+ ## Rails
53
52
 
54
53
  "stones" takes care of a tag-head change introduced by Rails 7.x.
54
+
55
+ ## Miscellaneous
56
+
57
+ Copyright (c) 2012-2023 Dittmar Krall (www.matiq.com),
58
+ released under the MIT license:
59
+
60
+ * https://opensource.org/licenses/MIT
@@ -25,9 +25,9 @@ footer
25
25
  = separator
26
26
  = link_to app.html_safe, about_path
27
27
  div
28
- = link_to t("button.terms"), "#{base}?page=gtc"
28
+ = link_to t('button.terms'), "#{base}?page=gtc"
29
29
  = separator
30
- = link_to t("button.privacy"), "#{base}?page=privacy_policy"
30
+ = link_to t('button.privacy'), "#{base}?page=privacy_policy"
31
31
  = separator
32
- = link_to t("button.impressum"), "#{base}?page=about"
32
+ = link_to t('button.impressum'), "#{base}?page=about"
33
33
  div = info_dev
@@ -1,19 +1,16 @@
1
- - version = Rails.version.to_f
1
+ ruby:
2
+ version = Rails.version.to_f
3
+ title = (APP || 'app').capitalize
2
4
 
3
5
  - if version < 7.0
4
- title = (APP || 'app').capitalize
5
6
  = favicon_link_tag
6
7
  = stylesheet_link_tag @stylesheet || 'application', media: 'all'
7
8
  = stylesheet_link_tag 'print', media: 'print'
8
9
  = javascript_include_tag 'application'
9
10
  = csrf_meta_tags
10
- - return
11
-
12
- title = (APP || 'app').capitalize
13
- meta name="viewport" content="width=device-width,initial-scale=1"
14
- = csrf_meta_tags
15
- = csp_meta_tag
16
-
17
- /= stylesheet_link_tag "application", "data-turbo-track": "reload"
18
- = stylesheet_link_tag 'application', 'data-turbo-track': 'reload'
19
- = javascript_importmap_tags
11
+ - else
12
+ meta name="viewport" content="width=device-width,initial-scale=1"
13
+ = stylesheet_link_tag 'application', 'data-turbo-track': 'reload'
14
+ = javascript_importmap_tags
15
+ = csrf_meta_tags
16
+ = csp_meta_tag
@@ -2,7 +2,9 @@
2
2
  # rubocop: disable all
3
3
 
4
4
  module Stones
5
- VERSION = '1.2.1' # 2022-09-29
5
+ VERSION = '1.2.3' # 2023-07-19
6
+ # VERSION = '1.2.2' # 2023-04-15
7
+ # VERSION = '1.2.1' # 2022-09-29
6
8
  # VERSION = '1.2.0' # 2022-02-12
7
9
  # VERSION = '1.1.3' # 2021-06-23
8
10
  # VERSION = '1.1.2' # 2020-04-27
data/stones.gemspec CHANGED
@@ -17,7 +17,4 @@ Gem::Specification.new do |s|
17
17
 
18
18
  s.files = `git ls-files`.split("\n")
19
19
  s.require_paths = ["lib"]
20
-
21
- s.add_development_dependency "bundler"
22
- s.add_development_dependency "rake"
23
20
  end
metadata CHANGED
@@ -1,43 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stones
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-29 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
11
+ date: 2023-07-19 00:00:00.000000000 Z
12
+ dependencies: []
41
13
  description: A collection of, hopefully, useful files.
42
14
  email:
43
15
  - dittmar.krall@matiq.com
@@ -92,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
64
  - !ruby/object:Gem::Version
93
65
  version: '0'
94
66
  requirements: []
95
- rubygems_version: 3.3.7
67
+ rubygems_version: 3.4.17
96
68
  signing_key:
97
69
  specification_version: 4
98
70
  summary: Stones contains some basic files.