lita-version-check 0.1.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 +7 -0
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/README.md +19 -0
- data/Rakefile +6 -0
- data/lib/lita-version-check.rb +12 -0
- data/lib/lita/handlers/version_check.rb +59 -0
- data/lita-version-check.gemspec +24 -0
- data/locales/en.yml +4 -0
- data/spec/lita/handlers/version_check_spec.rb +4 -0
- data/spec/spec_helper.rb +6 -0
- data/templates/.gitkeep +0 -0
- metadata +142 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e77339f481421f2c48aac10fe3a5ee8e8a4f4c0a3d537f873b561d761553c331
|
4
|
+
data.tar.gz: 3ca233c5b000d3fe005f359f4551232061bad17337800a7a41394e7b788f5d02
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b8b35d9c6e1a57f6953bc293df57ed29b1944531b80371adb47cfcd1506c367c023beac1556e98334bf70dab08256c6c87ae82fd2a4b451e6bb6a12b19b65677
|
7
|
+
data.tar.gz: 76cf576b62dec0b0bed0cfc76ff3dc28b374b14036799ca1ba99e0c6b9c6fc180890bc47615a4263c458dcefe8f8acbb8b4d2b0874aef70f48f98178266effdd
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# lita-version-check
|
2
|
+
|
3
|
+
TODO: Add a description of the plugin.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add lita-version-check to your Lita instance's Gemfile:
|
8
|
+
|
9
|
+
``` ruby
|
10
|
+
gem "lita-version-check"
|
11
|
+
```
|
12
|
+
|
13
|
+
## Configuration
|
14
|
+
|
15
|
+
TODO: Describe any configuration attributes the plugin exposes.
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
TODO: Describe the plugin's features and how to use them.
|
data/Rakefile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require "lita"
|
2
|
+
|
3
|
+
Lita.load_locales Dir[File.expand_path(
|
4
|
+
File.join("..", "..", "locales", "*.yml"), __FILE__
|
5
|
+
)]
|
6
|
+
|
7
|
+
require "lita/handlers/version_check"
|
8
|
+
|
9
|
+
Lita::Handlers::VersionCheck.template_root File.expand_path(
|
10
|
+
File.join("..", "..", "templates"),
|
11
|
+
__FILE__
|
12
|
+
)
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# START:route
|
2
|
+
module Lita
|
3
|
+
module Handlers
|
4
|
+
class VersionCheck < Handler
|
5
|
+
route(/^version check$/i, :check_version, command: true)
|
6
|
+
# END:route
|
7
|
+
|
8
|
+
# START:commit_hash
|
9
|
+
# Fetch the SHA representing the current git commit in this repository:
|
10
|
+
# e.g. fc648e78f54a74ca92a82d0ff77a9151fcf8e373
|
11
|
+
def git_sha
|
12
|
+
`git rev-parse HEAD`.strip
|
13
|
+
end
|
14
|
+
# END:commit_hash
|
15
|
+
|
16
|
+
# START:gemspec_version
|
17
|
+
# Asks the bundle command which version of lita-version-check you're
|
18
|
+
# running.
|
19
|
+
#
|
20
|
+
# e.g. lita-version-check 0.1.0
|
21
|
+
#
|
22
|
+
def gemspec_version
|
23
|
+
# list all installed gems in this context and filter for the one named
|
24
|
+
# version check
|
25
|
+
`bundle list | grep lita-version-check`
|
26
|
+
# strip out all characters other than alphanumerics and . - and space.
|
27
|
+
.gsub(/[^A-Za-z0-9\.\- ]/i, '')
|
28
|
+
# trim leading and trailing whitespace
|
29
|
+
.strip
|
30
|
+
# split on whitespace
|
31
|
+
.split
|
32
|
+
# join the split tokens back together with a uniform single space
|
33
|
+
.join(" ")
|
34
|
+
end
|
35
|
+
# END:gemspec_version
|
36
|
+
|
37
|
+
# START:repo_url
|
38
|
+
# Fetch the short-form repository URL of this git repo e.g.
|
39
|
+
# git@github.com:dpritchett/ruby-bookbot.git
|
40
|
+
def git_repository_url
|
41
|
+
`git config --get remote.origin.url`.strip
|
42
|
+
end
|
43
|
+
# END:repo_url
|
44
|
+
|
45
|
+
# START:handler
|
46
|
+
def check_version(message)
|
47
|
+
message.reply [
|
48
|
+
"My git revision is [#{git_sha}].",
|
49
|
+
"My repository URL is [#{git_repository_url}].",
|
50
|
+
'<<<>>>',
|
51
|
+
"Brought to you by [#{gemspec_version}]."
|
52
|
+
].join(' ')
|
53
|
+
end
|
54
|
+
# END:handler
|
55
|
+
|
56
|
+
Lita.register_handler(self)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = "lita-version-check"
|
3
|
+
spec.version = "0.1.0"
|
4
|
+
spec.authors = ["Daniel J. Pritchett"]
|
5
|
+
spec.email = ["dpritchett@gmail.com"]
|
6
|
+
spec.description = "Lita skill for checking your bot's commit version hash"
|
7
|
+
spec.summary = "Lita skill for checking your bot's commit version hash"
|
8
|
+
spec.homepage = "https://github.com/dpritchett/lita-version-check"
|
9
|
+
spec.license = "MIT"
|
10
|
+
spec.metadata = { "lita_plugin_type" => "handler" }
|
11
|
+
|
12
|
+
spec.files = `git ls-files`.split($/)
|
13
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
14
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
15
|
+
spec.require_paths = ["lib"]
|
16
|
+
|
17
|
+
spec.add_runtime_dependency "lita", ">= 4.7"
|
18
|
+
|
19
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
20
|
+
spec.add_development_dependency "pry-byebug"
|
21
|
+
spec.add_development_dependency "rake"
|
22
|
+
spec.add_development_dependency "rack-test"
|
23
|
+
spec.add_development_dependency "rspec", ">= 3.0.0"
|
24
|
+
end
|
data/locales/en.yml
ADDED
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
require "lita-version-check"
|
2
|
+
require "lita/rspec"
|
3
|
+
|
4
|
+
# A compatibility mode is provided for older plugins upgrading from Lita 3. Since this plugin
|
5
|
+
# was generated with Lita 4, the compatibility mode should be left disabled.
|
6
|
+
Lita.version_3_compatibility_mode = false
|
data/templates/.gitkeep
ADDED
File without changes
|
metadata
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lita-version-check
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Daniel J. Pritchett
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-11-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: lita
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.7'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: pry-byebug
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rack-test
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 3.0.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 3.0.0
|
97
|
+
description: Lita skill for checking your bot's commit version hash
|
98
|
+
email:
|
99
|
+
- dpritchett@gmail.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitignore"
|
105
|
+
- Gemfile
|
106
|
+
- README.md
|
107
|
+
- Rakefile
|
108
|
+
- lib/lita-version-check.rb
|
109
|
+
- lib/lita/handlers/version_check.rb
|
110
|
+
- lita-version-check.gemspec
|
111
|
+
- locales/en.yml
|
112
|
+
- spec/lita/handlers/version_check_spec.rb
|
113
|
+
- spec/spec_helper.rb
|
114
|
+
- templates/.gitkeep
|
115
|
+
homepage: https://github.com/dpritchett/lita-version-check
|
116
|
+
licenses:
|
117
|
+
- MIT
|
118
|
+
metadata:
|
119
|
+
lita_plugin_type: handler
|
120
|
+
post_install_message:
|
121
|
+
rdoc_options: []
|
122
|
+
require_paths:
|
123
|
+
- lib
|
124
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: '0'
|
129
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - ">="
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
requirements: []
|
135
|
+
rubyforge_project:
|
136
|
+
rubygems_version: 2.7.6
|
137
|
+
signing_key:
|
138
|
+
specification_version: 4
|
139
|
+
summary: Lita skill for checking your bot's commit version hash
|
140
|
+
test_files:
|
141
|
+
- spec/lita/handlers/version_check_spec.rb
|
142
|
+
- spec/spec_helper.rb
|