thor-hollaback 0.1.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c7c2d1acaaab65a5d804189d2fc4692fcb4195b0
4
- data.tar.gz: ca820fec1e8ccb5b87302bc0662c222b8696b4a4
2
+ SHA256:
3
+ metadata.gz: 338c44ce042cbb8701014c7d39ccce6c77850763218fbf7562a416615edcfd3b
4
+ data.tar.gz: 295e2804635360642b1338995126a6dc0d8c39560968cc7c51a38e6fb6b49c42
5
5
  SHA512:
6
- metadata.gz: d66df4c33e73cac3396129497f2992646a224e316e19fe1a417e1af0076fe5b7c60625f33693402653a0f25015a85311f3fb4b84126c1030c7356e059ef4c8dc
7
- data.tar.gz: 4d515f4c686064c41577e497550d7b9951cc61ca8dab75c848b9b22aebe93911444a4cd61e1be85425cff57b74877c5ab9885630342c7f4272b3b35c229d186d
6
+ metadata.gz: 170b29be0dacbbdadd050c0e075816440867fa9ff4c341e942b5be330ca4d46a69aad29bb1e25e067559b78790e0533569f2b934fb9eb1d066148011524721d9
7
+ data.tar.gz: 8fee574ea16ca8427ea76c43f38268aa9fef44eacb9f2e27f1ad723ba018b95e694f28975ec33be645a6d5085af1cd5729dcc904daa59b7ffd51902b4428cfd3
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "bundler"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
@@ -0,0 +1,34 @@
1
+ name: Main
2
+ on:
3
+ - push
4
+ - pull_request_target
5
+ jobs:
6
+ ci:
7
+ name: CI
8
+ runs-on: ubuntu-latest
9
+ env:
10
+ CI: true
11
+ steps:
12
+ - uses: actions/checkout@master
13
+ - uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: 3.0
16
+ bundler-cache: true
17
+ - name: Lint and test
18
+ run: |
19
+ bundle exec rubocop --parallel
20
+ bundle exec rake test
21
+ automerge:
22
+ name: AutoMerge
23
+ needs: ci
24
+ runs-on: ubuntu-latest
25
+ if: github.event_name == 'pull_request_target' && (github.actor == github.repository_owner || github.actor == 'dependabot[bot]')
26
+ steps:
27
+ - uses: actions/github-script@v3
28
+ with:
29
+ script: |
30
+ github.pulls.merge({
31
+ owner: context.payload.repository.owner.login,
32
+ repo: context.payload.repository.name,
33
+ pull_number: context.payload.pull_request.number
34
+ })
data/.gitignore CHANGED
@@ -1,6 +1,5 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
- /Gemfile.lock
4
3
  /_yardoc/
5
4
  /coverage/
6
5
  /doc/
data/.rubocop.yml CHANGED
@@ -1,14 +1,30 @@
1
1
  AllCops:
2
2
  DisplayCopNames: true
3
3
  DisplayStyleGuide: true
4
- TargetRubyVersion: 2.0
4
+ TargetRubyVersion: 2.7
5
5
  Exclude:
6
- - 'vendor/**/*'
6
+ - '{tmp,vendor,yard}/**/*'
7
+
8
+ Gemspec/RequiredRubyVersion:
9
+ Enabled: false
10
+
11
+ Layout/LineLength:
12
+ Max: 80
13
+
14
+ Lint/AmbiguousBlockAssociation:
15
+ Enabled: false
16
+
17
+ Naming/RescuedExceptionsVariableName:
18
+ Enabled: false
7
19
 
8
20
  Style/Documentation:
9
21
  Enabled: false
10
22
 
11
- Style/PercentLiteralDelimiters:
12
- PreferredDelimiters:
13
- '%w': '[]'
14
- '%i': '[]'
23
+ Style/FormatString:
24
+ EnforcedStyle: percent
25
+
26
+ Style/FormatStringToken:
27
+ Enabled: false
28
+
29
+ Style/PerlBackrefs:
30
+ Enabled: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Unreleased]
8
+
9
+ ## [0.2.1] - 2021-11-17
10
+
11
+ ### Changed
12
+
13
+ - Require MFA for releasing.
14
+
15
+ ## [0.2.0] - 2019-12-18
16
+
17
+ ### Changed
18
+
19
+ - Relaxed the version requirement on `thor` to allow the newer versions.
20
+
21
+ [unreleased]: https://github.com/kddnewton/thor-hollaback/compare/v0.2.1...HEAD
22
+ [0.2.1]: https://github.com/kddnewton/thor-hollaback/compare/v0.2.0...v0.2.1
23
+ [0.2.0]: https://github.com/kddnewton/thor-hollaback/compare/7c2c70...v0.2.0
@@ -0,0 +1,76 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, sex characteristics, gender identity and expression,
9
+ level of experience, education, socio-economic status, nationality, personal
10
+ appearance, race, religion, or sexual identity and orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ - Using welcoming and inclusive language
18
+ - Being respectful of differing viewpoints and experiences
19
+ - Gracefully accepting constructive criticism
20
+ - Focusing on what is best for the community
21
+ - Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ - The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ - Trolling, insulting/derogatory comments, and personal or political attacks
28
+ - Public or private harassment
29
+ - Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ - Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at kddnewton@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
+
73
+ [homepage]: https://www.contributor-covenant.org
74
+
75
+ For answers to common questions about this code of conduct, see
76
+ https://www.contributor-covenant.org/faq
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,55 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ thor-hollaback (0.2.1)
5
+ hollaback (~> 0.1)
6
+ thor (>= 0.19.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.2)
12
+ docile (1.4.0)
13
+ hollaback (0.1.1)
14
+ minitest (5.14.4)
15
+ parallel (1.21.0)
16
+ parser (3.0.2.0)
17
+ ast (~> 2.4.1)
18
+ rainbow (3.0.0)
19
+ rake (13.0.6)
20
+ regexp_parser (2.1.1)
21
+ rexml (3.2.5)
22
+ rubocop (1.23.0)
23
+ parallel (~> 1.10)
24
+ parser (>= 3.0.0.0)
25
+ rainbow (>= 2.2.2, < 4.0)
26
+ regexp_parser (>= 1.8, < 3.0)
27
+ rexml
28
+ rubocop-ast (>= 1.12.0, < 2.0)
29
+ ruby-progressbar (~> 1.7)
30
+ unicode-display_width (>= 1.4.0, < 3.0)
31
+ rubocop-ast (1.13.0)
32
+ parser (>= 3.0.1.1)
33
+ ruby-progressbar (1.11.0)
34
+ simplecov (0.21.2)
35
+ docile (~> 1.1)
36
+ simplecov-html (~> 0.11)
37
+ simplecov_json_formatter (~> 0.1)
38
+ simplecov-html (0.12.3)
39
+ simplecov_json_formatter (0.1.3)
40
+ thor (1.1.0)
41
+ unicode-display_width (2.1.0)
42
+
43
+ PLATFORMS
44
+ ruby
45
+
46
+ DEPENDENCIES
47
+ bundler (~> 2.0)
48
+ minitest (~> 5.11)
49
+ rake (~> 13.0)
50
+ rubocop (~> 1.12)
51
+ simplecov (~> 0.15)
52
+ thor-hollaback!
53
+
54
+ BUNDLED WITH
55
+ 2.2.15
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Localytics http://www.localytics.com
3
+ Copyright (c) 2016-present Kevin Newton
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Thor::Hollaback
2
2
 
3
- [![Build Status](https://travis-ci.org/localytics/thor-hollaback.svg?branch=master)](https://travis-ci.org/localytics/thor-hollaback)
4
- [![Coverage Status](https://coveralls.io/repos/github/localytics/thor-hollaback/badge.svg?branch=master)](https://coveralls.io/github/localytics/thor-hollaback?branch=master)
3
+ [![Build Status](https://github.com/kddnewton/thor-hollaback/workflows/Main/badge.svg)](https://github.com/kddnewton/thor-hollaback/actions)
4
+ [![Gem Version](https://img.shields.io/gem/v/thor-hollaback.svg)](https://rubygems.org/gems/thor-hollaback)
5
5
 
6
6
  Adds callbacks to thor commands.
7
7
 
@@ -23,12 +23,12 @@ Or install it yourself as:
23
23
 
24
24
  ## Usage
25
25
 
26
- Uses the [`hollaback`](https://github.com/localytics/hollaback) gem to add callbacks to [`thor`](https://github.com/erikhuda/thor) commands. You can set CLI-level callbacks with the macros `before_all`, `after_all`, and `around_all`. You can set command-level callbacks with `before`, `after`, and `around`. Example below.
26
+ Uses the [`hollaback`](https://github.com/kddnewton/hollaback) gem to add callbacks to [`thor`](https://github.com/erikhuda/thor) commands. You can set CLI-level callbacks with the macros `class_before`, `class_after`, and `class_around`. You can set command-level callbacks with `before`, `after`, and `around`. Example below.
27
27
 
28
28
  ```ruby
29
29
  class CLI < Thor
30
- before_all :say_hello
31
- after_all :say_goodbye
30
+ class_before :say_hello
31
+ class_after :say_goodbye
32
32
 
33
33
  desc 'first_test', 'First test command'
34
34
  around :say
@@ -89,7 +89,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
89
89
 
90
90
  ## Contributing
91
91
 
92
- Bug reports and pull requests are welcome on GitHub at https://github.com/localytics/thor-hollaback.
92
+ Bug reports and pull requests are welcome on GitHub at https://github.com/kddnewton/thor-hollaback.
93
93
 
94
94
  ## License
95
95
 
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/gem_tasks'
2
4
  require 'rake/testtask'
3
5
 
data/bin/console CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'bundler/setup'
4
5
  require 'thor/hollaback'
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class Thor
2
4
  module Hollaback
3
- VERSION = '0.1.0'.freeze
5
+ VERSION = '0.2.1'
4
6
  end
5
7
  end
@@ -1,9 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'thor'
2
4
  require 'hollaback'
3
5
  require 'thor/hollaback/version'
4
6
 
5
7
  class Thor
6
8
  module Hollaback
9
+ # Extension that get loaded into the main Thor class
7
10
  module ClassExt
8
11
  # Methods for overall callbacks
9
12
  def class_callback_chain
@@ -41,11 +44,18 @@ class Thor
41
44
 
42
45
  def create_command(meth)
43
46
  super
44
- commands[meth].callback_chain = callback_chain if commands[meth]
47
+
48
+ # The following condition will fail if the user attempts to add a
49
+ # command without a description or something like method_missing. For
50
+ # more details, see Thor::create_command.
51
+ return unless commands[meth]
52
+
53
+ commands[meth].callback_chain = callback_chain
45
54
  @callback_chain = nil
46
55
  end
47
56
  end
48
57
 
58
+ # Extensions that get loaded into the Thor command class
49
59
  module CommandExt
50
60
  def self.prepended(base)
51
61
  base.send(:attr_accessor, :callback_chain)
@@ -1,31 +1,39 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'thor/hollaback/version'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/thor/hollaback/version'
4
+
5
+ version = Thor::Hollaback::VERSION
6
+ repository = 'https://github.com/kddnewton/thor-hollaback'
5
7
 
6
8
  Gem::Specification.new do |spec|
7
9
  spec.name = 'thor-hollaback'
8
- spec.version = Thor::Hollaback::VERSION
9
- spec.authors = ['Localytics']
10
- spec.email = ['oss@localytics.com']
10
+ spec.version = version
11
+ spec.authors = ['Kevin Newton']
12
+ spec.email = ['kddnewton@gmail.com']
11
13
 
12
14
  spec.summary = 'Adds callbacks to thor commands'
13
- spec.homepage = 'https://github.com/localytics/thor-hollaback'
15
+ spec.homepage = repository
14
16
  spec.license = 'MIT'
15
17
 
18
+ spec.metadata = {
19
+ 'bug_tracker_uri' => "#{repository}/issues",
20
+ 'changelog_uri' => "#{repository}/blob/v#{version}/CHANGELOG.md",
21
+ 'source_code_uri' => repository,
22
+ 'rubygems_mfa_required' => 'true'
23
+ }
24
+
16
25
  files = `git ls-files -z`.split("\x0")
17
26
  spec.files = files.reject { |f| f.match(%r{^test/}) }
18
27
  spec.bindir = 'exe'
19
28
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
29
  spec.require_paths = ['lib']
21
30
 
22
- spec.add_dependency 'thor', '~> 0.19.1'
23
- spec.add_dependency 'hollaback', '~> 0.1.0'
31
+ spec.add_dependency 'hollaback', '~> 0.1'
32
+ spec.add_dependency 'thor', '>= 0.19.1'
24
33
 
25
- spec.add_development_dependency 'bundler', '~> 1.12'
26
- spec.add_development_dependency 'rake', '~> 10.0'
27
- spec.add_development_dependency 'minitest', '~> 5.0'
28
- spec.add_development_dependency 'simplecov', '~> 0.11'
29
- spec.add_development_dependency 'coveralls', '~> 0.8'
30
- spec.add_development_dependency 'rubocop', '~> 0.39'
34
+ spec.add_development_dependency 'bundler', '~> 2.0'
35
+ spec.add_development_dependency 'minitest', '~> 5.11'
36
+ spec.add_development_dependency 'rake', '~> 13.0'
37
+ spec.add_development_dependency 'rubocop', '~> 1.12'
38
+ spec.add_development_dependency 'simplecov', '~> 0.15'
31
39
  end
metadata CHANGED
@@ -1,138 +1,128 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thor-hollaback
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
- - Localytics
8
- autorequire:
7
+ - Kevin Newton
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-11 00:00:00.000000000 Z
11
+ date: 2021-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: thor
14
+ name: hollaback
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.19.1
19
+ version: '0.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.19.1
26
+ version: '0.1'
27
27
  - !ruby/object:Gem::Dependency
28
- name: hollaback
28
+ name: thor
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.0
33
+ version: 0.19.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.0
40
+ version: 0.19.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.12'
47
+ version: '2.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '1.12'
55
- - !ruby/object:Gem::Dependency
56
- name: rake
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '10.0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '10.0'
54
+ version: '2.0'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: minitest
71
57
  requirement: !ruby/object:Gem::Requirement
72
58
  requirements:
73
59
  - - "~>"
74
60
  - !ruby/object:Gem::Version
75
- version: '5.0'
61
+ version: '5.11'
76
62
  type: :development
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
66
  - - "~>"
81
67
  - !ruby/object:Gem::Version
82
- version: '5.0'
68
+ version: '5.11'
83
69
  - !ruby/object:Gem::Dependency
84
- name: simplecov
70
+ name: rake
85
71
  requirement: !ruby/object:Gem::Requirement
86
72
  requirements:
87
73
  - - "~>"
88
74
  - !ruby/object:Gem::Version
89
- version: '0.11'
75
+ version: '13.0'
90
76
  type: :development
91
77
  prerelease: false
92
78
  version_requirements: !ruby/object:Gem::Requirement
93
79
  requirements:
94
80
  - - "~>"
95
81
  - !ruby/object:Gem::Version
96
- version: '0.11'
82
+ version: '13.0'
97
83
  - !ruby/object:Gem::Dependency
98
- name: coveralls
84
+ name: rubocop
99
85
  requirement: !ruby/object:Gem::Requirement
100
86
  requirements:
101
87
  - - "~>"
102
88
  - !ruby/object:Gem::Version
103
- version: '0.8'
89
+ version: '1.12'
104
90
  type: :development
105
91
  prerelease: false
106
92
  version_requirements: !ruby/object:Gem::Requirement
107
93
  requirements:
108
94
  - - "~>"
109
95
  - !ruby/object:Gem::Version
110
- version: '0.8'
96
+ version: '1.12'
111
97
  - !ruby/object:Gem::Dependency
112
- name: rubocop
98
+ name: simplecov
113
99
  requirement: !ruby/object:Gem::Requirement
114
100
  requirements:
115
101
  - - "~>"
116
102
  - !ruby/object:Gem::Version
117
- version: '0.39'
103
+ version: '0.15'
118
104
  type: :development
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
107
  requirements:
122
108
  - - "~>"
123
109
  - !ruby/object:Gem::Version
124
- version: '0.39'
125
- description:
110
+ version: '0.15'
111
+ description:
126
112
  email:
127
- - oss@localytics.com
113
+ - kddnewton@gmail.com
128
114
  executables: []
129
115
  extensions: []
130
116
  extra_rdoc_files: []
131
117
  files:
118
+ - ".github/dependabot.yml"
119
+ - ".github/workflows/main.yml"
132
120
  - ".gitignore"
133
121
  - ".rubocop.yml"
134
- - ".travis.yml"
122
+ - CHANGELOG.md
123
+ - CODE_OF_CONDUCT.md
135
124
  - Gemfile
125
+ - Gemfile.lock
136
126
  - LICENSE
137
127
  - README.md
138
128
  - Rakefile
@@ -141,11 +131,15 @@ files:
141
131
  - lib/thor/hollaback.rb
142
132
  - lib/thor/hollaback/version.rb
143
133
  - thor-hollaback.gemspec
144
- homepage: https://github.com/localytics/thor-hollaback
134
+ homepage: https://github.com/kddnewton/thor-hollaback
145
135
  licenses:
146
136
  - MIT
147
- metadata: {}
148
- post_install_message:
137
+ metadata:
138
+ bug_tracker_uri: https://github.com/kddnewton/thor-hollaback/issues
139
+ changelog_uri: https://github.com/kddnewton/thor-hollaback/blob/v0.2.1/CHANGELOG.md
140
+ source_code_uri: https://github.com/kddnewton/thor-hollaback
141
+ rubygems_mfa_required: 'true'
142
+ post_install_message:
149
143
  rdoc_options: []
150
144
  require_paths:
151
145
  - lib
@@ -160,9 +154,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
154
  - !ruby/object:Gem::Version
161
155
  version: '0'
162
156
  requirements: []
163
- rubyforge_project:
164
- rubygems_version: 2.5.1
165
- signing_key:
157
+ rubygems_version: 3.2.3
158
+ signing_key:
166
159
  specification_version: 4
167
160
  summary: Adds callbacks to thor commands
168
161
  test_files: []
data/.travis.yml DELETED
@@ -1,6 +0,0 @@
1
- language: ruby
2
- rvm: 2.3.1
3
- cache: bundler
4
- script:
5
- - bundle exec rake
6
- - bundle exec rubocop