github_bot 0.2.1 → 0.2.2

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/lib/github_bot/version.rb +1 -1
  3. metadata +2 -6
  4. data/bin/rails +0 -26
  5. data/bin/rake +0 -29
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95d0922df4d35b88d781c8a316282305792c23f26251f15a01da66493fc34bac
4
- data.tar.gz: e32e2c38601c630c27575b3d14e2d9a931e556e1bbb09908106038ccdc2527b3
3
+ metadata.gz: 0fa326810f555e7ef6cab9db0c96d5055cb7251ca156828a846e1a3a98dcc583
4
+ data.tar.gz: e14ac7aba656ca607cf5c6470f95c336c36d432601cef807bd47d7cf1badc75b
5
5
  SHA512:
6
- metadata.gz: a697a81c30d684e102a1ac891bcca06d3c2c02ae59fa2a256676823c7eb0a32f0c399a9859c442f233cb458cdade3cf583375addbeaa34f367a8fef236f2ae69
7
- data.tar.gz: 6b2bfebb551d02bf586364b36b2706e8ee3b10bbf5f8e4ae52aeff511751560091a301104ba8977e544a6515e56b71e6f56a927dc58dc7ef34e56f92d9c2ba32
6
+ metadata.gz: e7ac68baca52650e65be184da77495e322dd0eb1a93af76841c2753b3da45f95777955ee3ee6cfc4bed563991a2c1c71fc3b6e02e812c3925f57a626e79f7517
7
+ data.tar.gz: aff160fd861fce89869963b3f57028d01a373077095c7dae61d8044cdb40e254c3872d3556daee2d1637095f9fbc1fb8cef1641567f73c66240a200222841512
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GithubBot
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
 
6
6
  # version module
7
7
  module Version
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Howdeshell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-15 00:00:00.000000000 Z
11
+ date: 2022-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: git
@@ -80,8 +80,6 @@ email:
80
80
  executables:
81
81
  - bundle-audit
82
82
  - bundler-audit
83
- - rails
84
- - rake
85
83
  - rspec
86
84
  - rubocop
87
85
  extensions: []
@@ -113,8 +111,6 @@ files:
113
111
  - app/helpers/github_bot/github_request_helper.rb
114
112
  - bin/bundle-audit
115
113
  - bin/bundler-audit
116
- - bin/rails
117
- - bin/rake
118
114
  - bin/rspec
119
115
  - bin/rubocop
120
116
  - config/routes.rb
data/bin/rails DELETED
@@ -1,26 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- # This command will automatically be run when you run "rails" with Rails gems
5
- # installed from the root of your application.
6
-
7
- ENGINE_ROOT = File.expand_path('..', __dir__)
8
- ENGINE_PATH = File.expand_path('../lib/github_bot/engine', __dir__)
9
-
10
- # Set up gems listed in the Gemfile.
11
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
12
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
13
-
14
- require 'rails'
15
- # Pick the frameworks you want:
16
- require 'active_model/railtie'
17
- require 'active_job/railtie'
18
- require 'active_record/railtie'
19
- require 'active_storage/engine'
20
- require 'action_controller/railtie'
21
- require 'action_mailer/railtie'
22
- require 'action_view/railtie'
23
- require 'action_cable/engine'
24
- require 'sprockets/railtie'
25
- # require "rails/test_unit/railtie"
26
- require 'rails/engine/commands'
data/bin/rake DELETED
@@ -1,29 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- #
5
- # This file was generated by Bundler.
6
- #
7
- # The application 'rake' is installed as part of a gem, and
8
- # this file is here to facilitate running it.
9
- #
10
-
11
- require "pathname"
12
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
- Pathname.new(__FILE__).realpath)
14
-
15
- bundle_binstub = File.expand_path("../bundle", __FILE__)
16
-
17
- if File.file?(bundle_binstub)
18
- if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19
- load(bundle_binstub)
20
- else
21
- abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
- Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
- end
24
- end
25
-
26
- require "rubygems"
27
- require "bundler/setup"
28
-
29
- load Gem.bin_path("rake", "rake")