dep2 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ca2ef2e19df3ff95b4d945c8ade9acfc5a9f24a6
4
+ data.tar.gz: 817e0f7faf167c54d10729d2c91a18572aa1e016
5
+ SHA512:
6
+ metadata.gz: 2606dceea898e6e44b71bab1b44eeaf1bcf141dfc84b0b27f522cc04fc86af5f68e452cab8d2e34c51de72ac9bf63aa2089d051461cf843cea92a2d00e6c5497
7
+ data.tar.gz: 61add68f6475c915f12d01896ced6bbf8abd6ca31e287d3c00c14bf75d98e22073a12dff1740e71ef690ef8a8d273cc3d2962a543a2789caaf3ada41005c8715
checksums.yaml.gz.sig ADDED
@@ -0,0 +1,4 @@
1
+ JP���ߌ��/
2
+ �󍓙G�—�O@�HcS�R�M� �&v��.�s�74����a��(����A�fJ�si�dw���"r4_�]��o�Y��gJ�����
3
+ �qd)��C����s
4
+ ���^�?"u*�2v�����d�����j�����{l�"
data.tar.gz.sig ADDED
Binary file
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 dep2.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
+ # Dep2
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'dep2'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install dep2
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/dep2/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
+
data/dep2.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'dep2/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "dep2"
8
+ spec.version = Dep2::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_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake", "~> 0"
23
+
24
+ spec.cert_chain = ['certs/gem-public_cert.pem']
25
+ spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $0 =~ /gem\z/
26
+ end
data/lib/dep2.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "dep2/version"
2
+
3
+ module Dep2
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Dep2
2
+ VERSION = "0.0.2"
3
+ end
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dep2
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: bundler
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '1.6'
42
+ type: :development
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '1.6'
49
+ - !ruby/object:Gem::Dependency
50
+ name: rake
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :development
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ description: Example dependency gem for Thotcon 0x6
64
+ email:
65
+ - bmyers@trustwave.com
66
+ executables: []
67
+ extensions: []
68
+ extra_rdoc_files: []
69
+ files:
70
+ - ".gitignore"
71
+ - Gemfile
72
+ - LICENSE.txt
73
+ - README.md
74
+ - Rakefile
75
+ - dep2.gemspec
76
+ - lib/dep2.rb
77
+ - lib/dep2/version.rb
78
+ homepage: ''
79
+ licenses:
80
+ - MIT
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project:
98
+ rubygems_version: 2.2.2
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: Example dependency gem for Thotcon 0x6
102
+ test_files: []
metadata.gz.sig ADDED
Binary file