stones 1.1.1 → 1.1.3

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: 33eb188e66a0b16efcb10bc0df24c47c9600c0b9fa8adaa8f2597539723059c8
4
- data.tar.gz: 2b5e3747f838f2c0a4e0a69ccc0ec72527be835f39e11c4d4cf8f33f0ac3540c
3
+ metadata.gz: 61c6847a8f4b75864fd0d6639d5c6b8c72b13864593dfceb08d5e6586c54cd30
4
+ data.tar.gz: 36767c3730cdd926f3dab475f9ff37c6b0624de9ca66dc42b92050bb6ad01bb0
5
5
  SHA512:
6
- metadata.gz: aa8cf697ddcc77a72e378a7211f6c9d1d649bce1f8b8505b77f7c88430255c95d8d2efd4dc35fd4f43495508e7147ea4100ecf264e47bf495b210211ba0e6ccb
7
- data.tar.gz: 999235ed701ead1a3986e6bfc73511dad6b6fe09b12a207199535bf85c0e9e568a740d3b008696447d563c05c42e46b96ea8d706d2770afafae154db540ab004
6
+ metadata.gz: 60834f372484caaadd0878a3f80dc73604a541e058553f2b955a2ef3878450a8d682135e1cb224543f36b53b4076647c13b033dd3d5b82fd756f78d208dac05f
7
+ data.tar.gz: 3b199479d153809903908bf227bce55db77a39189ee49b197a03277fdef9bffdc501767eba71ded614fede6515dbab5ecbf382ad7e8257bcd1973eaf20539b5b
data/.rubocop.yml CHANGED
@@ -1,62 +1,9 @@
1
- # rubocop --auto-gen-config
2
- # rubocop
3
- # rubocop:disable all
4
-
5
- #inherit_from: .rubocop_todo.yml
1
+ inherit_from:
2
+ - ~/configs/.rubocop.yml
6
3
 
7
4
  AllCops:
5
+ NewCops: enable
8
6
  Include:
9
7
  - 'lib/**/*.rb'
10
- - 'config/**/*.rb'
11
- - '**/*.gemfile'
12
-
13
8
  Exclude:
14
- - 'gemfiles/*'
15
9
  - 'test/**/*'
16
- # - !ruby/regexp /old_and_unused\.rb$/
17
-
18
- Bundler/OrderedGems:
19
- Exclude:
20
- - 'Gemfile'
21
-
22
- Layout/AccessModifierIndentation:
23
- Enabled: false
24
- Layout/CommentIndentation:
25
- Enabled: false
26
- Layout/EmptyLines:
27
- Enabled: false
28
- Layout/EmptyLinesAroundAccessModifier:
29
- Enabled: false
30
- Layout/EmptyLinesAroundModuleBody:
31
- Enabled: false
32
- Layout/ExtraSpacing:
33
- Enabled: false
34
- Layout/LineLength:
35
- Enabled: false
36
-
37
- Naming/AccessorMethodName:
38
- Enabled: false
39
- Naming/MemoizedInstanceVariableName:
40
- Enabled: false
41
- Naming/MethodParameterName:
42
- Enabled: false
43
-
44
- Security/YAMLLoad:
45
- Enabled: false
46
- Style/HashEachMethods:
47
- Enabled: false
48
- Style/HashTransformKeys:
49
- Enabled: false
50
- Style/HashTransformValues:
51
- Enabled: false
52
- Style/BlockDelimiters:
53
- Enabled: false
54
- Style/ClassAndModuleChildren:
55
- Enabled: false
56
- Style/Documentation:
57
- Enabled: false
58
- Style/FrozenStringLiteralComment:
59
- Enabled: false
60
- Style/WhenThen:
61
- Exclude:
62
- - '.watchr'
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- rails-6.0
1
+ rails-6.1
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.6.5
1
+ ruby-2.7.2
data/Gemfile CHANGED
@@ -1,3 +1,4 @@
1
1
  source "https://rubygems.org"
2
+ gemspec
2
3
 
3
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
@@ -22,10 +22,9 @@ Files:
22
22
  app/views/layouts/_footer.slim
23
23
  app/views/layouts/_header.slim
24
24
  app/views/layouts/_html_head.slim
25
- app/views/layouts/_nav.slim
25
+ app/views/root/about.slim
26
26
  app/views/shared/_error_explanation.html.erb
27
27
  config/initializers/concerns.rb
28
- .watchr
29
28
 
30
29
  Installation
31
30
  ------------
@@ -39,8 +38,8 @@ Recommended
39
38
  -----------
40
39
 
41
40
  - rvm
42
- - ruby 2.6.5
43
- - rails 6.0
41
+ - ruby 2.7.2
42
+ - rails 6.1
44
43
 
45
44
  Dropped/cleaned files (still available in version 0.2.5):
46
45
 
@@ -1,6 +1,6 @@
1
1
  title = (APP || 'app').capitalize
2
2
  = favicon_link_tag
3
3
  = stylesheet_link_tag @stylesheet || 'application', media: 'all'
4
- = stylesheet_link_tag 'print', media: 'print'
4
+ = stylesheet_link_tag 'print', media: 'print'
5
5
  = javascript_include_tag 'application'
6
6
  = csrf_meta_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
data/lib/stones.rb CHANGED
@@ -1 +1,3 @@
1
+ # rubocop: disable all
2
+
1
3
  require 'stones/engine.rb'
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,7 +1,10 @@
1
1
  # frozen_string_literal: true
2
+ # rubocop: disable all
2
3
 
3
4
  module Stones
4
- VERSION = '1.1.1' # 2020-03-22
5
+ VERSION = '1.1.3' # 2021-06-23
6
+ # VERSION = '1.1.2' # 2020-04-27
7
+ # VERSION = '1.1.1' # 2020-03-22
5
8
  # VERSION = '1.1.0' # 2020-03-02
6
9
  # VERSION = '1.0.10' # 2019-09-27
7
10
  # VERSION = '1.0.9' # 2018-11-11
data/stones.gemspec CHANGED
@@ -12,12 +12,15 @@ Gem::Specification.new do |s|
12
12
  s.email = ['dittmar.krall@matique.de']
13
13
  s.homepage = 'http://matique.de'
14
14
  s.license = 'MIT'
15
+ s.platform = Gem::Platform::RUBY
16
+
17
+ s.metadata['source_code_uri'] = 'https://github.com/matique/stones'
15
18
 
16
19
  s.files = `git ls-files`.split("\n")
17
20
  # s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
21
  # s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
22
  s.require_paths = ["lib"]
20
23
 
21
- s.add_development_dependency 'bundler', '~> 0'
22
- s.add_development_dependency 'rake', '~> 0'
24
+ s.add_development_dependency 'bundler'
25
+ s.add_development_dependency 'rake'
23
26
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stones
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.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: 2020-03-22 00:00:00.000000000 Z
11
+ date: 2021-06-23 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.
@@ -76,7 +76,8 @@ files:
76
76
  homepage: http://matique.de
77
77
  licenses:
78
78
  - MIT
79
- metadata: {}
79
+ metadata:
80
+ source_code_uri: https://github.com/matique/stones
80
81
  post_install_message:
81
82
  rdoc_options: []
82
83
  require_paths:
@@ -92,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
93
  - !ruby/object:Gem::Version
93
94
  version: '0'
94
95
  requirements: []
95
- rubygems_version: 3.0.8
96
+ rubygems_version: 3.2.6
96
97
  signing_key:
97
98
  specification_version: 4
98
99
  summary: Stones contains some basic files.