securitytest 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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/bin/securitytest +5 -0
  3. data/lib/securitytest.rb +5 -0
  4. metadata +46 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ac66ff01e98dc35c62cc3a92072998000ec2077c
4
+ data.tar.gz: 4211872efda7ccbcb9f40d63049830cb2b4d4ac8
5
+ SHA512:
6
+ metadata.gz: 882b2b8e194890d6014192858e788c19baedf6078f5df67e7ac24f2411af4f46c339888ed991fc111665fed22c29b0978bd12b87d8799df1cfafb3c1260a9a86
7
+ data.tar.gz: d12af88cdbb3cdc16f3f88ce80aaa4bbc1f40c2267af585cb3b5d529e77dbaad814a7aaf77cdbc86e7c3ae6239530961acfb989a19867126ae29ceb17f697015
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'securitytest'
4
+
5
+ puts SecurityTest.hi
@@ -0,0 +1,5 @@
1
+ class SecurityTest
2
+ def self.hi
3
+ puts "Hello, world!"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: securitytest
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Andrew Pollock
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-11-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: I want to understand how insecure gem hosting is
14
+ email: andrew@pollock.id.au
15
+ executables:
16
+ - securitytest
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/securitytest
21
+ - lib/securitytest.rb
22
+ homepage:
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.2.2
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Dummy gem to understand hosting workflows
46
+ test_files: []