thotcon6 0.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0cd854cb68d1fbce4a85f3526c5484bb843b0568
4
+ data.tar.gz: ccd0210bfcafcbc980016a52c7d0ac2c470724df
5
+ SHA512:
6
+ metadata.gz: b55936508142a4a688035676c887c2131696ff6a3195c0956d51eb49ff67692e697fdfe80e4f99e1b710e37234aff1817acb75ee492aad4294efab6f6ad122e1
7
+ data.tar.gz: 89215841c5119de732a7547920fe45c9799486bb76ee40bb6210b5aa85a862c018bb910195a9fbf60e759eb187bcd69d59c85c954740c35b3f6f188aaece6f45
checksums.yaml.gz.sig ADDED
@@ -0,0 +1,3 @@
1
+ ��S�~��|T�/3(�-�L�jje���t҈#����j��r��~
2
+ ~7��5�z�9�huS-J3�F�^)mK_���������)����Sb��@Bȯ�?����ߒ��j�ҩ�/�g��h��t(yչ^�H ���-nDTP�
3
+ ���͆'� ��Ǚ�B�:Rž/�G����ԅ�pt���h��h�y|���R�De�x��P~&m�҅�y��
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in thotcon6.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Brandon Myers
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Thotcon6
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'thotcon6'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install thotcon6
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/thotcon6/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,3 @@
1
+ module Thotcon6
2
+ VERSION = "0.0.2"
3
+ end
data/lib/thotcon6.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "thotcon6/version"
2
+
3
+ module Thotcon6
4
+ # Your code goes here...
5
+ end
data/thotcon6.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'thotcon6/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "thotcon6"
8
+ spec.version = Thotcon6::VERSION
9
+ spec.authors = ["Brandon Myers"]
10
+ spec.email = ["bmyers@trustwave.com"]
11
+ spec.summary = %q{Example dependency gem for Thotcon 0x6}
12
+ spec.description = %q{Example dependency gem for Thotcon 0x6}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "dep1", "~> 0"
22
+ spec.add_dependency "dep2", "~> 0"
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.6"
25
+ spec.add_development_dependency "rake"
26
+
27
+ spec.cert_chain = ['certs/gem-public_cert.pem']
28
+ spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $0 =~ /gem\z/
29
+ end
data.tar.gz.sig ADDED
Binary file
metadata ADDED
@@ -0,0 +1,130 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: thotcon6
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Brandon Myers
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDeDCCAmCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBBMQ8wDQYDVQQDDAZibXll
14
+ cnMxGTAXBgoJkiaJk/IsZAEZFgl0cnVzdHdhdmUxEzARBgoJkiaJk/IsZAEZFgNj
15
+ b20wHhcNMTUwNTA5MDIyNTQxWhcNMTYwNTA4MDIyNTQxWjBBMQ8wDQYDVQQDDAZi
16
+ bXllcnMxGTAXBgoJkiaJk/IsZAEZFgl0cnVzdHdhdmUxEzARBgoJkiaJk/IsZAEZ
17
+ FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQChThp/Hlt8rkZk
18
+ XlbXdFGUN9E68rJQl40SslGkd8C8zYAcLaA1ZNmz5tgZmiHTb8puSgEAYmafpWx8
19
+ htDf31QLdHIhzpcTdWn9r9ozO/W43iVObRLypKUG7wzhh8a2MyIpdg5c1wdcWfLZ
20
+ P2wgsMJWropf1q6YR36Z/KfcDkeUk2WWE0hgfEf95+swY5h1AQtTzf4m//yWwggV
21
+ uu9vLrLUIqKRSExLwXDUdhERDfAZKCrf5Il5W/GJpkcMI+ikyElMNKwhqVO23pdM
22
+ 3rsjk5KSLZ1rmBLNJCIHtKB4Emqu0Fyt2sAAIS4ktfBddcHWikbD4ugVSqHYAf+N
23
+ mmtKdsz7AgMBAAGjezB5MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
24
+ BBTcMMbmw/9l4dYxFzNVJwQv+yJEYjAfBgNVHREEGDAWgRRibXllcnNAdHJ1c3R3
25
+ YXZlLmNvbTAfBgNVHRIEGDAWgRRibXllcnNAdHJ1c3R3YXZlLmNvbTANBgkqhkiG
26
+ 9w0BAQUFAAOCAQEAhq9q7FlHehxt06t3/EiwQjChHfPhRomHbXsXf/OpnOso3uNO
27
+ 3flFiOUS7BlCzpqU0nuyiI8qzTyNqQqfIYTKEtr0+4kEYs+yGNqu3zak5KGQpAE3
28
+ YgOlOT34iwjKBOwk6wSdiqLCY3ywUz/2tvBSOhcZxYNhuxMS4ACgfDdLBU3ChJsf
29
+ qcymLG9yCLB/8ZypHR5XHSEDGtMdwZDntlhauLEK2EVezp4xzk+tey4YR4GT82bi
30
+ wq44Uqg26XGE4Lmj1UzbOU4SxWRIKAIcsBf0PhmZY6K3nlNz1NYpdkQs0349Tgen
31
+ ObeE4YJgWC6j55eDxz0PUrSfKVGsTBFCZKrLlg==
32
+ -----END CERTIFICATE-----
33
+ date: 2015-05-09 00:00:00.000000000 Z
34
+ dependencies:
35
+ - !ruby/object:Gem::Dependency
36
+ name: dep1
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ - !ruby/object:Gem::Dependency
50
+ name: dep2
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ - !ruby/object:Gem::Dependency
64
+ name: bundler
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '1.6'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '1.6'
77
+ - !ruby/object:Gem::Dependency
78
+ name: rake
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ type: :development
85
+ prerelease: false
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ description: Example dependency gem for Thotcon 0x6
92
+ email:
93
+ - bmyers@trustwave.com
94
+ executables: []
95
+ extensions: []
96
+ extra_rdoc_files: []
97
+ files:
98
+ - ".gitignore"
99
+ - Gemfile
100
+ - LICENSE.txt
101
+ - README.md
102
+ - Rakefile
103
+ - lib/thotcon6.rb
104
+ - lib/thotcon6/version.rb
105
+ - thotcon6.gemspec
106
+ homepage: ''
107
+ licenses:
108
+ - MIT
109
+ metadata: {}
110
+ post_install_message:
111
+ rdoc_options: []
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ requirements: []
125
+ rubyforge_project:
126
+ rubygems_version: 2.2.2
127
+ signing_key:
128
+ specification_version: 4
129
+ summary: Example dependency gem for Thotcon 0x6
130
+ test_files: []
metadata.gz.sig ADDED
@@ -0,0 +1,3 @@
1
+ ��|�g&N7�§�u�������1<DH<�
2
+ { ��܌qQ�xnt�xWf��x�����'��:%v��qTYU;�
3
+ cP*��r�ʻc�7J����ґ@�B��