stones 1.0.10 → 1.2.0

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: cb5982e27aaef75ac6f81de2f844d941133e7dc30414c3ccf302464679d17a7c
4
- data.tar.gz: 5f9184da467f8cab3a00984ff9a18c2393490a1c2eeed2c331a8746f5b27ea23
3
+ metadata.gz: b06bca36b491605d0f1517a4945586aa228d9d50d9eab809a4c38b4fc4936c27
4
+ data.tar.gz: ffd59b0db7b8c95b091e62ad9a9c06e74d63365d72d5c2326283861b9b6d6527
5
5
  SHA512:
6
- metadata.gz: e82a5b153b6a97ef60aa0ea69706f0179cf5317e79cac81218cc8819b9e8f79dac9cc18148e44a3511b1f3ffed689e7ad9a8495382de402ca7f6ad74e3321541
7
- data.tar.gz: 425d9d5ba0615ad1c9e31ac6b0ee3047493315ddd19d34e4df923198751fe2c3bf074de4db047549445075117e2ffe8186173368bbfb14610cacae3d338745b7
6
+ metadata.gz: edb31fd337f037f4753d91cc27a9065ec5b4fe98aa643f3fcedda73b7b14848574abad7311156ae97647335c1b1377f538e8f28a127310d3f31b5d029f28a332
7
+ data.tar.gz: dc4c937d3e4f96bebbbf0721851385266adadbef0b1ad3bb2e9e94e07eb72458d6d53c8d868731b15b9d22b79349320d0fdbc768392e96db26722cae9778fec0
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- rails-6.0
1
+ rails-7.0
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.6.4
1
+ ruby-3.1.0
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source "https://rubygems.org"
2
+ gemspec
2
3
 
3
- ruby '2.6.4'
4
- gem 'rails'
4
+ gem "rails"
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2012-2019 Dittmar Krall - http://matique.de
1
+ Copyright (c) 2012-2021 Dittmar Krall - www.matique.com
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,13 +1,12 @@
1
1
  Stones
2
2
  ======
3
+ [![Gem Version](https://badge.fury.io/rb/stones.png)](http://badge.fury.io/rb/stones)
3
4
 
4
5
  Each time I created a new Rails project these files are required.
5
6
  I got tired of it and collected them in a gem.
6
7
 
7
8
  Some files (e.g. reset.css) can be overwritten by a
8
- corresponding ones from your project.
9
- Some files (e.g. .watchr) may be copied to your project.
10
-
9
+ corresponding one from your project.
11
10
 
12
11
  Files:
13
12
 
@@ -24,10 +23,9 @@ Files:
24
23
  app/views/layouts/_footer.slim
25
24
  app/views/layouts/_header.slim
26
25
  app/views/layouts/_html_head.slim
27
- app/views/layouts/_nav.slim
26
+ app/views/root/about.slim
28
27
  app/views/shared/_error_explanation.html.erb
29
28
  config/initializers/concerns.rb
30
- .watchr
31
29
 
32
30
  Installation
33
31
  ------------
@@ -41,11 +39,16 @@ Recommended
41
39
  -----------
42
40
 
43
41
  - rvm
44
- - ruby 2.6.4
45
- - rails 6.0
42
+ - ruby 3.1.0
43
+ - rails 7.0.1
46
44
 
47
45
  Dropped/cleaned files (still available in version 0.2.5):
48
46
 
49
47
  - Rakefile
50
48
  - .watchr
51
49
  - lib/tasks/backup.rake
50
+
51
+ Rails
52
+ -----
53
+
54
+ "stones" takes care of a "<head>" change introduced by Rails 7.x.
data/Rakefile CHANGED
@@ -1,8 +1,8 @@
1
1
  begin
2
- require 'bundler'
3
- require 'bundler/setup'
2
+ require "bundler"
3
+ require "bundler/setup"
4
4
  rescue LoadError
5
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ puts "You must `gem install bundler` and `bundle install` to run rake tasks"
6
6
  end
7
7
 
8
8
  Bundler::GemHelper.install_tasks
@@ -15,15 +15,19 @@ ruby:
15
15
  info_dev = "#{rails} | #{ruby} | #{STARTED_AT}"
16
16
  end
17
17
 
18
+ # e.g. http://matique.de/de/privacy-policy before v1.1.0
19
+ # e.g. https://matique.com/home/page?page=gtc
20
+ base = 'http://matique.com/home/page'
21
+
18
22
  footer
19
23
  div
20
24
  a href='http://matique.de' &copy; #{year} matique UG
21
25
  = separator
22
26
  = link_to app.html_safe, about_path
23
27
  div
24
- = link_to ts(:terms, :button), 'http://matique.de/de/gtc'
28
+ = link_to ts(:terms, :button), "#{base}?page=gtc"
25
29
  = separator
26
- = link_to ts(:privacy, :button), 'http://matique.de/de/privacy-policy'
30
+ = link_to ts(:privacy, :button), "#{base}?page=privacy_policy"
27
31
  = separator
28
- = link_to ts(:impressum, :button), 'http://matique.de/de/about'
32
+ = link_to ts(:impressum, :button), "#{base}?page=about"
29
33
  div = info_dev
@@ -1,6 +1,18 @@
1
+ - version = Rails.version.to_f
2
+
3
+ - if version < 7.0
4
+ title = (APP || 'app').capitalize
5
+ = favicon_link_tag
6
+ = stylesheet_link_tag @stylesheet || 'application', media: 'all'
7
+ = stylesheet_link_tag 'print', media: 'print'
8
+ = javascript_include_tag 'application'
9
+ = csrf_meta_tags
10
+ - return
11
+
1
12
  title = (APP || 'app').capitalize
2
- = favicon_link_tag
3
- = stylesheet_link_tag @stylesheet || 'application', media: 'all'
4
- = stylesheet_link_tag 'print', media: 'print'
5
- = javascript_include_tag 'application'
13
+ meta name="viewport" content="width=device-width,initial-scale=1"
6
14
  = csrf_meta_tags
15
+ = csp_meta_tag
16
+
17
+ = stylesheet_link_tag "application", "data-turbo-track": "reload"
18
+ = javascript_importmap_tags
@@ -10,7 +10,6 @@
10
10
  / render 'about', locals: { title: 'An Application' }
11
11
  / end
12
12
 
13
-
14
13
  ruby:
15
14
  app = "#{APP.capitalize} #{APP_VERSION || VERSION}"
16
15
  if Rails.env.production?
@@ -37,8 +36,8 @@ css:
37
36
  padding: 5px 8px;
38
37
  }
39
38
 
40
- div#about
41
- div#rounded-box
39
+ #about
40
+ #rounded-box
42
41
  - if title
43
42
  h1 = title
44
43
  hr
@@ -1,22 +1,15 @@
1
1
  class << ActiveRecord::Base
2
-
3
2
  def concerned_with(*concerns)
4
3
  concerns.each do |concern|
5
4
  require_dependency "#{name.underscore}/#{concern}"
6
5
  end
7
6
  end
8
-
9
7
  end
10
8
 
11
-
12
9
  class << ActionController::Base
13
-
14
10
  def concerned_with(*concerns)
15
11
  concerns.each do |concern|
16
12
  require_dependency "#{name.underscore}/#{concern}"
17
13
  end
18
14
  end
19
-
20
15
  end
21
-
22
-
data/lib/stones/engine.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # rubocop: disable all
2
+
1
3
  module Stones
2
4
  class Engine < Rails::Engine
3
5
  end
@@ -1,9 +1,17 @@
1
+ # frozen_string_literal: true
2
+ # rubocop: disable all
3
+
1
4
  module Stones
2
- VERSION = '1.0.10' # 2019-09-27
3
- # VERSION = '1.0.9' # 2018-11-11
4
- # VERSION = '1.0.7' # 2018-11-10
5
- # VERSION = '1.0.6' # 2018-10-29
6
- # VERSION = '1.0.5' # 2018-09-09
7
- # VERSION = '1.0.4' # 2018-08-06
8
- # VERSION = '1.0.3'
5
+ VERSION = '1.2.0' # 2022-02-12
6
+ # VERSION = '1.1.3' # 2021-06-23
7
+ # VERSION = '1.1.2' # 2020-04-27
8
+ # VERSION = '1.1.1' # 2020-03-22
9
+ # VERSION = '1.1.0' # 2020-03-02
10
+ # VERSION = '1.0.10'# 2019-09-27
11
+ # VERSION = '1.0.9' # 2018-11-11
12
+ # VERSION = '1.0.7' # 2018-11-10
13
+ # VERSION = '1.0.6' # 2018-10-29
14
+ # VERSION = '1.0.5' # 2018-09-09
15
+ # VERSION = '1.0.4' # 2018-08-06
16
+ # VERSION = '1.0.3'
9
17
  end
data/lib/stones.rb CHANGED
@@ -1 +1,3 @@
1
+ # rubocop: disable all
2
+
1
3
  require 'stones/engine.rb'
data/stones.gemspec CHANGED
@@ -1,23 +1,25 @@
1
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path("../lib", __FILE__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require 'stones/version'
3
+ require "stones/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
- s.name = 'stones'
7
- s.version = Stones::VERSION
8
- s.platform = Gem::Platform::RUBY
9
- s.summary = "Stones contains some basic files."
6
+ s.name = "stones"
7
+ s.version = Stones::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.summary = "Stones contains some basic files."
10
10
  s.description = "A collection of, hopefully, useful files."
11
- s.authors = ['Dittmar Krall']
12
- s.email = ['dittmar.krall@matique.de']
13
- s.homepage = 'http://matique.de'
14
- s.license = 'MIT'
11
+ s.authors = ["Dittmar Krall"]
12
+ s.email = ["dittmar.krall@matique.com"]
13
+ s.homepage = "http://matique.com"
14
+ s.license = "MIT"
15
15
 
16
- s.files = `git ls-files`.split("\n")
17
- # s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
- # s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
16
+ s.metadata["source_code_uri"] = "https://github.com/matique/stones"
17
+
18
+ s.files = `git ls-files`.split("\n")
19
+ # s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
20
+ # s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
21
  s.require_paths = ["lib"]
20
22
 
21
- s.add_development_dependency 'bundler', '~> 0'
22
- s.add_development_dependency 'rake', '~> 0'
23
+ s.add_development_dependency "bundler"
24
+ s.add_development_dependency "rake"
23
25
  end
metadata CHANGED
@@ -1,46 +1,46 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stones
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-27 00:00:00.000000000 Z
11
+ date: 2022-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  description: A collection of, hopefully, useful files.
42
42
  email:
43
- - dittmar.krall@matique.de
43
+ - dittmar.krall@matique.com
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
@@ -72,10 +72,11 @@ files:
72
72
  - lib/stones/engine.rb
73
73
  - lib/stones/version.rb
74
74
  - stones.gemspec
75
- homepage: http://matique.de
75
+ homepage: http://matique.com
76
76
  licenses:
77
77
  - MIT
78
- metadata: {}
78
+ metadata:
79
+ source_code_uri: https://github.com/matique/stones
79
80
  post_install_message:
80
81
  rdoc_options: []
81
82
  require_paths:
@@ -91,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
92
  - !ruby/object:Gem::Version
92
93
  version: '0'
93
94
  requirements: []
94
- rubygems_version: 3.0.6
95
+ rubygems_version: 3.3.3
95
96
  signing_key:
96
97
  specification_version: 4
97
98
  summary: Stones contains some basic files.