known_incompatibility 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d35eef1fa2ecdb6c3194c5cb6c79bd37bd10db7a7663b46f478c0f4b3f526ef4
4
+ data.tar.gz: c1a4ea251beb10335b35b1860106382d75d7e3c620b80dc2bf8a5b75007734c6
5
+ SHA512:
6
+ metadata.gz: 758625d7210fe794dbc3ac9fdcc8585b076ce65e1f888822a5025c98c7d38bf3be84659eb05dd44f8fe2a4636b5ccb45217d772a55c5546837debf240d97cdd2
7
+ data.tar.gz: d7cf5bbfdeb48632298a732e4ff161de34bbc828a9aca9326c3ad1c7243a504cb2101a0548e247ffc53ef73509dbae875687802c35a3952cbefdef0b4a101c68
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-10-12
4
+
5
+ - Initial release
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # KnownIncompatibility
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/known_incompatibility`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/kstevens715/known_incompatibility.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/known_incompatibility/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "known_incompatibility"
7
+ spec.version = KnownIncompatibility::VERSION
8
+ spec.authors = ["Kyle Stevens"]
9
+ spec.email = ["kstevens715@gmail.com"]
10
+
11
+ spec.summary = "A gem that detects and warns when known known incompatibilities are detected between different gem and Ruby versions."
12
+ spec.homepage = "https://github.com/kstevens715/known_incompatibility"
13
+ spec.required_ruby_version = ">= 2.6.0"
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = spec.homepage
17
+ spec.metadata["changelog_uri"] = spec.homepage + '/CHANGES.md'
18
+
19
+ # Specify which files should be added to the gem when it is released.
20
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
+ spec.files = Dir.chdir(__dir__) do
22
+ `git ls-files -z`.split("\x0").reject do |f|
23
+ (File.expand_path(f) == __FILE__) ||
24
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
25
+ end
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ # Uncomment to register a new dependency of your gem
32
+ # spec.add_dependency "example-gem", "~> 1.0"
33
+
34
+ # For more information and examples about making a new gem, check out our
35
+ # guide at: https://bundler.io/guides/creating_gem.html
36
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module KnownIncompatibility
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "known_incompatibility/version"
4
+
5
+ module KnownIncompatibility
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/plugins.rb ADDED
@@ -0,0 +1,18 @@
1
+ require "known_incompatibility"
2
+
3
+ Bundler::Plugin.add_hook(Bundler::Plugin::Events::GEM_AFTER_INSTALL_ALL) do
4
+ puts "=================== after-install ============================="
5
+ lockfile_contents = File.read(Bundler.default_lockfile)
6
+
7
+ lockfile = Bundler::LockfileParser.new(lockfile_contents)
8
+
9
+ lockfile.specs.each do |gem|
10
+ if gem.name == 'http-2' && gem.version < Gem::Version.new('0.11.0')
11
+ if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('4.2.2')
12
+ Bundler.ui.warn "Gem #{gem.name} has a known incompatibility with this version of Ruby!"
13
+ end
14
+ end
15
+ end
16
+ puts "=================== after-install ============================="
17
+ end
18
+
@@ -0,0 +1,4 @@
1
+ module KnownIncompatibility
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,56 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: known_incompatibility
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Kyle Stevens
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - kstevens715@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rspec"
21
+ - ".rubocop.yml"
22
+ - CHANGELOG.md
23
+ - README.md
24
+ - Rakefile
25
+ - known_incompatibility.gemspec
26
+ - lib/known_incompatibility.rb
27
+ - lib/known_incompatibility/version.rb
28
+ - plugins.rb
29
+ - sig/known_incompatibility.rbs
30
+ homepage: https://github.com/kstevens715/known_incompatibility
31
+ licenses: []
32
+ metadata:
33
+ homepage_uri: https://github.com/kstevens715/known_incompatibility
34
+ source_code_uri: https://github.com/kstevens715/known_incompatibility
35
+ changelog_uri: https://github.com/kstevens715/known_incompatibility/CHANGES.md
36
+ post_install_message:
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 2.6.0
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirements: []
51
+ rubygems_version: 3.0.3.1
52
+ signing_key:
53
+ specification_version: 4
54
+ summary: A gem that detects and warns when known known incompatibilities are detected
55
+ between different gem and Ruby versions.
56
+ test_files: []