railslts-version 3.2.22.2 → 99.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8a645256d0e949050eddd95e1e12bc0769c7c39ba2de140a47e2d8d16ee2dd6e
4
+ data.tar.gz: ac9074734bb4de68e22f4cf74bea60cfc361ee1e7f6889808fe0a735a1dae3d7
5
+ SHA512:
6
+ metadata.gz: e2cb076fa7b5a71d366823af7bdb700efcfa2d9f2c9c8f8fe5105857871863014a75ff9019a0dd2da7c51965dfee5c789a1fa2faa304426aeb480feb48a2c7e2
7
+ data.tar.gz: e63724271793d50ac8b9387d2d5708fed26613f6c038ad6ab9c5ae85e29820a72d8ab0e679286730311a4b2586903d75fc3bf1238a057030cb82b01ea6938399
@@ -1 +1,7 @@
1
- require 'railslts/version'
1
+ module RailsLtsVersion
2
+ def self.warn_deprecation
3
+ warn "You no longer need the railslts-version gem. Feel free to remove it from your Gemfile."
4
+ end
5
+ end
6
+
7
+ RailsLtsVersion.warn_deprecation
metadata CHANGED
@@ -1,103 +1,44 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: railslts-version
3
- version: !ruby/object:Gem::Version
4
- hash: 51
5
- prerelease:
6
- segments:
7
- - 3
8
- - 2
9
- - 22
10
- - 2
11
- version: 3.2.22.2
3
+ version: !ruby/object:Gem::Version
4
+ version: 99.0.0
12
5
  platform: ruby
13
- authors:
14
- - Arne Hartherz
15
- autorequire:
6
+ authors:
7
+ - Tobias Kraze
8
+ autorequire:
16
9
  bindir: bin
17
10
  cert_chain: []
18
-
19
- date: 2015-08-06 00:00:00 +02:00
20
- default_executable:
21
- dependencies:
22
- - !ruby/object:Gem::Dependency
23
- name: bundler
24
- prerelease: false
25
- requirement: &id001 !ruby/object:Gem::Requirement
26
- none: false
27
- requirements:
28
- - - ~>
29
- - !ruby/object:Gem::Version
30
- hash: 5
31
- segments:
32
- - 1
33
- - 5
34
- version: "1.5"
35
- type: :development
36
- version_requirements: *id001
37
- - !ruby/object:Gem::Dependency
38
- name: rake
39
- prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ">="
44
- - !ruby/object:Gem::Version
45
- hash: 3
46
- segments:
47
- - 0
48
- version: "0"
49
- type: :development
50
- version_requirements: *id002
51
- description: Note that this gem will neither install nor upgrade Rails LTS for you. Visit https://railslts.com/ to find out more about Rails LTS.
52
- email:
53
- - arne.hartherz@makandra.de
11
+ date: 2025-03-11 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email: info@railslts.com
54
15
  executables: []
55
-
56
16
  extensions: []
57
-
58
17
  extra_rdoc_files: []
59
-
60
- files:
61
- - .gitignore
62
- - LICENSE
63
- - README.md
64
- - Rakefile
18
+ files:
65
19
  - lib/railslts-version.rb
66
- - lib/railslts/version.rb
67
- - railslts-version.gemspec
68
- has_rdoc: true
69
- homepage: https://railslts.com/
70
- licenses:
20
+ homepage:
21
+ licenses:
71
22
  - MIT
72
- post_install_message:
23
+ metadata: {}
24
+ post_install_message: You no longer need the railslts-version gem. Feel free to remove
25
+ it from your Gemfile.
73
26
  rdoc_options: []
74
-
75
- require_paths:
27
+ require_paths:
76
28
  - lib
77
- required_ruby_version: !ruby/object:Gem::Requirement
78
- none: false
79
- requirements:
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
80
31
  - - ">="
81
- - !ruby/object:Gem::Version
82
- hash: 3
83
- segments:
84
- - 0
85
- version: "0"
86
- required_rubygems_version: !ruby/object:Gem::Requirement
87
- none: false
88
- requirements:
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
89
36
  - - ">="
90
- - !ruby/object:Gem::Version
91
- hash: 3
92
- segments:
93
- - 0
94
- version: "0"
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
95
39
  requirements: []
96
-
97
- rubyforge_project:
98
- rubygems_version: 1.3.9.5
99
- signing_key:
100
- specification_version: 3
101
- summary: Gem to track your current Rails LTS version.
40
+ rubygems_version: 3.5.22
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: Part of Rails LTS. This gem no longer serves any function.
102
44
  test_files: []
103
-
data/.gitignore DELETED
@@ -1,19 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- coverage
6
- InstalledFiles
7
- lib/bundler/man
8
- pkg
9
- rdoc
10
- spec/reports
11
- test/tmp
12
- test/version_tmp
13
- tmp
14
- .idea
15
-
16
- # YARD artifacts
17
- .yardoc
18
- _yardoc
19
- doc/
data/LICENSE DELETED
@@ -1,20 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2014-2015 makandra
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy of
6
- this software and associated documentation files (the "Software"), to deal in
7
- the Software without restriction, including without limitation the rights to
8
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
- the Software, and to permit persons to whom the Software is furnished to do so,
10
- subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md DELETED
@@ -1,8 +0,0 @@
1
- railslts-version
2
- ================
3
-
4
- Gem to track your current Rails LTS version.
5
-
6
- Note that this gem will neither install nor upgrade Rails LTS for you.
7
-
8
- Visit https://railslts.com/ to find out more about Rails LTS.
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -1,3 +0,0 @@
1
- module RailsLts
2
- VERSION = '3.2.22.2'
3
- end
@@ -1,23 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'railslts/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "railslts-version"
8
- spec.version = RailsLts::VERSION
9
- spec.authors = ["Arne Hartherz"]
10
- spec.email = ["arne.hartherz@makandra.de"]
11
- spec.summary = "Gem to track your current Rails LTS version."
12
- spec.description = "Note that this gem will neither install nor upgrade Rails LTS for you. Visit https://railslts.com/ to find out more about Rails LTS."
13
- spec.homepage = "https://railslts.com/"
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files -z`.split("\x0")
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.5"
22
- spec.add_development_dependency "rake"
23
- end