botaku 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +21 -0
- data/Makefile +23 -0
- data/README.md +7 -0
- data/botaku.gemspec +37 -0
- data/lib/botaku.rb +6 -0
- metadata +64 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 46204c6e35d975dfd68a53d97bc3db03d7b1b18b
|
4
|
+
data.tar.gz: 796dfa27ea76aabe22fa19a865e9d20857d6a47f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 610542f17841c5970325ce667121e4a1fda7c6511319c49d3d3b1482cd871a183f55df7372ac94b04aa3c47b69c2fc655f7c1124ff4a7f4018a2ccdd2c111d6d
|
7
|
+
data.tar.gz: 9c4c3d3a783cfa7091eb62644cb587bd9d28ee5a96ba2ad68ae52f2350190a105983b6731d64079321597e6ffb2b512d14e96920bb661d7dd14d36e423fd55eb
|
data/CHANGELOG.md
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
Copyright (c) 2017-2017, John Mettraux, jmettraux@gmail.com
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
+
of this software and associated documentation files (the "Software"), to deal
|
6
|
+
in the Software without restriction, including without limitation the rights
|
7
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
+
copies of the Software, and to permit persons to whom the Software is
|
9
|
+
furnished to do so, subject to the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included in
|
12
|
+
all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
+
THE SOFTWARE.
|
21
|
+
|
data/Makefile
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
|
2
|
+
NAME = \
|
3
|
+
$(shell ruby -e "s = eval(File.read(Dir['*.gemspec'][0])); puts s.name")
|
4
|
+
VERSION = \
|
5
|
+
$(shell ruby -e "s = eval(File.read(Dir['*.gemspec'][0])); puts s.version")
|
6
|
+
|
7
|
+
|
8
|
+
gemspec_validate:
|
9
|
+
@echo "---"
|
10
|
+
ruby -e "s = eval(File.read(Dir['*.gemspec'].first)); p s.validate"
|
11
|
+
@echo "---"
|
12
|
+
|
13
|
+
name: gemspec_validate
|
14
|
+
@echo "$(NAME) $(VERSION)"
|
15
|
+
|
16
|
+
build: gemspec_validate
|
17
|
+
gem build $(NAME).gemspec
|
18
|
+
mkdir -p pkg
|
19
|
+
mv $(NAME)-$(VERSION).gem pkg/
|
20
|
+
|
21
|
+
push: build
|
22
|
+
gem push pkg/$(NAME)-$(VERSION).gem
|
23
|
+
|
data/README.md
ADDED
data/botaku.gemspec
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
|
2
|
+
Gem::Specification.new do |s|
|
3
|
+
|
4
|
+
s.name = 'botaku'
|
5
|
+
|
6
|
+
s.version = File.read(
|
7
|
+
File.expand_path('../lib/botaku.rb', __FILE__)
|
8
|
+
).match(/ VERSION *= *['"]([^'"]+)/)[1]
|
9
|
+
|
10
|
+
s.platform = Gem::Platform::RUBY
|
11
|
+
s.authors = [ 'John Mettraux' ]
|
12
|
+
s.email = [ 'jmettraux@gmail.com' ]
|
13
|
+
s.homepage = 'http://github.com/jmettraux/botaku'
|
14
|
+
#s.rubyforge_project = 'rufus'
|
15
|
+
s.license = 'MIT'
|
16
|
+
s.summary = 'a Slack bot abstraction'
|
17
|
+
|
18
|
+
s.description = %{
|
19
|
+
A Slack bot abstraction, built on top of the slack-ruby-client gem.
|
20
|
+
}.strip
|
21
|
+
|
22
|
+
#s.files = `git ls-files`.split("\n")
|
23
|
+
s.files = Dir[
|
24
|
+
'README.{md,txt}',
|
25
|
+
'CHANGELOG.{md,txt}', 'CREDITS.{md,txt}', 'LICENSE.{md,txt}',
|
26
|
+
'Makefile',
|
27
|
+
'lib/**/*.rb', #'spec/**/*.rb', 'test/**/*.rb',
|
28
|
+
"#{s.name}.gemspec",
|
29
|
+
]
|
30
|
+
|
31
|
+
s.add_runtime_dependency 'slack-ruby-client', '~> 0.8'
|
32
|
+
|
33
|
+
#s.add_development_dependency 'rspec', '>= 2.13.0'
|
34
|
+
|
35
|
+
s.require_path = 'lib'
|
36
|
+
end
|
37
|
+
|
data/lib/botaku.rb
ADDED
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: botaku
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- John Mettraux
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-07-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: slack-ruby-client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.8'
|
27
|
+
description: A Slack bot abstraction, built on top of the slack-ruby-client gem.
|
28
|
+
email:
|
29
|
+
- jmettraux@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- CHANGELOG.md
|
35
|
+
- LICENSE.txt
|
36
|
+
- Makefile
|
37
|
+
- README.md
|
38
|
+
- botaku.gemspec
|
39
|
+
- lib/botaku.rb
|
40
|
+
homepage: http://github.com/jmettraux/botaku
|
41
|
+
licenses:
|
42
|
+
- MIT
|
43
|
+
metadata: {}
|
44
|
+
post_install_message:
|
45
|
+
rdoc_options: []
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
requirements: []
|
59
|
+
rubyforge_project:
|
60
|
+
rubygems_version: 2.5.2
|
61
|
+
signing_key:
|
62
|
+
specification_version: 4
|
63
|
+
summary: a Slack bot abstraction
|
64
|
+
test_files: []
|