zentool 0.8.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 +1 -0
- data/.rubocop.yml +609 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +16 -0
- data/Gemfile.lock +80 -0
- data/LICENSE +21 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/zentool +3 -0
- data/lib/zentool.rb +80 -0
- data/lib/zentool/article_helper.rb +102 -0
- data/lib/zentool/graph.rb +117 -0
- data/lib/zentool/metrics.rb +172 -0
- data/lib/zentool/ticket.rb +10 -0
- data/lib/zentool/version.rb +3 -0
- data/lib/zentool/zendesk_article.rb +84 -0
- data/lib/zentool/zendesk_ticket.rb +172 -0
- data/zentool.gemspec +35 -0
- metadata +111 -0
data/zentool.gemspec
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'zentool/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'zentool'
|
8
|
+
spec.version = Zentool::VERSION
|
9
|
+
spec.executables = 'zentool'
|
10
|
+
spec.authors = ['Tom Stephen', 'Jared Sharplin', 'Adrian Smith']
|
11
|
+
spec.email = ['tom.stephen@me.com', 'jared.sharplin@uqconnect.edu.au', 'adrian.smith@ennova.com.au']
|
12
|
+
|
13
|
+
spec.summary = %q{Tool to interface with Zendesk}
|
14
|
+
spec.description = %q{Tool to interface with Zendesk}
|
15
|
+
spec.homepage = 'https://github.com/ennova/zentool'
|
16
|
+
spec.license = 'MIT'
|
17
|
+
|
18
|
+
# if spec.respond_to?(:metadata)
|
19
|
+
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
20
|
+
# else
|
21
|
+
# raise 'RubyGems 2.0 or newer is required to protect against ' \
|
22
|
+
# 'public gem pushes.'
|
23
|
+
# end
|
24
|
+
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
26
|
+
f.match(%r{^(test|spec|features)/})
|
27
|
+
end
|
28
|
+
spec.bindir = 'exe'
|
29
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
30
|
+
spec.require_paths = ['lib']
|
31
|
+
|
32
|
+
spec.add_development_dependency 'bundler', '~> 1.13'
|
33
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
34
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
35
|
+
end
|
metadata
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: zentool
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.8.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tom Stephen
|
8
|
+
- Jared Sharplin
|
9
|
+
- Adrian Smith
|
10
|
+
autorequire:
|
11
|
+
bindir: exe
|
12
|
+
cert_chain: []
|
13
|
+
date: 2016-12-22 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: bundler
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - "~>"
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.13'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - "~>"
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '1.13'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: rake
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - "~>"
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '10.0'
|
36
|
+
type: :development
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - "~>"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '10.0'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: rspec
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '3.0'
|
50
|
+
type: :development
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - "~>"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '3.0'
|
57
|
+
description: Tool to interface with Zendesk
|
58
|
+
email:
|
59
|
+
- tom.stephen@me.com
|
60
|
+
- jared.sharplin@uqconnect.edu.au
|
61
|
+
- adrian.smith@ennova.com.au
|
62
|
+
executables:
|
63
|
+
- zentool
|
64
|
+
extensions: []
|
65
|
+
extra_rdoc_files: []
|
66
|
+
files:
|
67
|
+
- ".gitignore"
|
68
|
+
- ".rubocop.yml"
|
69
|
+
- CODE_OF_CONDUCT.md
|
70
|
+
- Gemfile
|
71
|
+
- Gemfile.lock
|
72
|
+
- LICENSE
|
73
|
+
- LICENSE.txt
|
74
|
+
- README.md
|
75
|
+
- bin/console
|
76
|
+
- bin/setup
|
77
|
+
- exe/zentool
|
78
|
+
- lib/zentool.rb
|
79
|
+
- lib/zentool/article_helper.rb
|
80
|
+
- lib/zentool/graph.rb
|
81
|
+
- lib/zentool/metrics.rb
|
82
|
+
- lib/zentool/ticket.rb
|
83
|
+
- lib/zentool/version.rb
|
84
|
+
- lib/zentool/zendesk_article.rb
|
85
|
+
- lib/zentool/zendesk_ticket.rb
|
86
|
+
- zentool.gemspec
|
87
|
+
homepage: https://github.com/ennova/zentool
|
88
|
+
licenses:
|
89
|
+
- MIT
|
90
|
+
metadata: {}
|
91
|
+
post_install_message:
|
92
|
+
rdoc_options: []
|
93
|
+
require_paths:
|
94
|
+
- lib
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
requirements: []
|
106
|
+
rubyforge_project:
|
107
|
+
rubygems_version: 2.5.2
|
108
|
+
signing_key:
|
109
|
+
specification_version: 4
|
110
|
+
summary: Tool to interface with Zendesk
|
111
|
+
test_files: []
|