moby.rb 2.1.3 → 2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f1d55b4208687cb63e58b7ca69bfef874829c8e11cf001d49c93414208f6d8d
4
- data.tar.gz: 783be3fe1903bb3f53501df75f08a1697cece9be77652581d3e6ab0e071c56fa
3
+ metadata.gz: 0731dc337a26603112431982b6cb714d4dce0ef3421c9cd31a415ca68c86e073
4
+ data.tar.gz: 532d644e00709270aec04d65817a5a6bd83f195a62123e57751bcf397dadb23c
5
5
  SHA512:
6
- metadata.gz: bb161f90168d0c40281772bea8e9d9cd72042dc352733a19201c86252868511cdddb9a56260386f28181ae95191c98ccd8bc8b923f05a53d9de11738edab6535
7
- data.tar.gz: 259a606027e52766ae504972dc49fbf31978d24bbf0f18d6109c249cd951426da59efb7d2e948343226e12a5e3bd72904cd3bea1b5041dd27f8dad6b7e673cef
6
+ metadata.gz: a636754138641b636d0380aea0503c32c30f47fd9782880751961241f159e8c6ab75d5c9776d7d3c283e3fda14ab8f508c3f227e1eae234b633d4335415c2ea5
7
+ data.tar.gz: 00ae1ac7bfd28e838c5ea3c45843740089aa5bd6b621c8106521f242f10f33c051a61a04602b0c4bf2d97caafc0d9c1c2832009a3c9c8bf7a7d3d8c5d01177d5
data/CHANGELOG CHANGED
@@ -1,5 +1,14 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 20260821
4
+
5
+ 2.1.4: /LICENSE.txt/LICENSE/
6
+
7
+ 1. ~ LICENSE.txt --> LICENSE, so that the name matches the one every other repository here uses. impuri added its at 0.12.4 as LICENSE, and the tap's other nineteen are about to gain one under that name; this was the odd one out, and a licence file is looked for by name.
8
+ 2. ~ moby.rb.gemspec: /'LICENSE.txt'/'LICENSE'/ in spec.files, without which gem build refuses outright: the manifest lists its loose files as literals rather than through Dir[], so a name which is not there stops the build. That is the form 2.1.2 adopted for exactly this reason.
9
+ 3. ~ Moby::VERSION: /2.1.3/2.1.4/
10
+
11
+
3
12
  ## 20260820
4
13
 
5
14
  2.1.3: Backfill the CHANGELOG below 0.7.0 to the 0.0.0 origin.
@@ -108,12 +117,12 @@
108
117
 
109
118
  ## 20240605
110
119
 
111
- 0.9.0: Merge of 2019's 0.8.0 and 2023's 0.8.1.
120
+ 0.9.0: Merge of 2020's 0.8.1 and 2023's 0.8.3.
112
121
 
113
122
 
114
123
  ## 20231206
115
124
 
116
- 0.8.1: Fix when username or password field number is specified or nothing is specified.
125
+ 0.8.3: Fix when username or password field number is specified or nothing is specified, renumbered from 0.8.1.
117
126
 
118
127
  1. ~ lib/Whale: ~ set_username_field(): Fix when username field number is specified or nothing is specified.
119
128
  2. ~ lib/Whale: ~ set_password_field(): Fix when password field number is specified or nothing is specified.
@@ -121,7 +130,7 @@
121
130
 
122
131
  ## 20231119
123
132
 
124
- 0.8.0: An accidental fork of 0.7.0 in 2023.
133
+ 0.8.2: An accidental fork of 0.7.0 in 2023, renumbered from 0.8.0.
125
134
 
126
135
  1. + README.md
127
136
  2. + CHANGES.txt
@@ -133,6 +142,24 @@
133
142
  8. + lib/File/self.collect.rb
134
143
 
135
144
 
145
+ ## 20200111
146
+
147
+ 0.8.1: Update the bundled File.collect to 0.2.1, renumbered from 0.8.0.
148
+
149
+ 1. ~ lib/File/self.collect.rb: 0.2.0 --> 0.2.1, and the date: /20190821/20200111/.
150
+ 2. Renumbered because two lines each reached 0.8.0. This one renamed Whale to Moby in 2019 and carried on; the other forked 0.7.0 in 2023 and kept the Whale name. A version naming two states names neither, so each release takes one of its own.
151
+
152
+
153
+ ## 20190821
154
+
155
+ 0.8.0: Rename Whale to Moby; add a Gemfile and File.collect.
156
+
157
+ 1. ~ bin/whale --> bin/moby, ~ lib/Whale.rb --> lib/Moby.rb, and the class with them.
158
+ 2. + Gemfile, + Gemfile.lock.
159
+ 3. + lib/File/self.collect.rb 0.2.0, + lib/Thoran/File/SelfCollect/self.collect.rb.
160
+ 4. Never recorded until now: the file ran from the 2023 fork straight back to 0.7.4, and 0.9.0 spoke of merging a 0.8.0 which no entry described.
161
+
162
+
136
163
  ## 20190820
137
164
 
138
165
  0.7.4: Rescue Net::OpenTimeout in the submission loop.
data/lib/Moby/VERSION.rb CHANGED
@@ -2,5 +2,5 @@
2
2
  # Moby::VERSION
3
3
 
4
4
  class Moby
5
- VERSION = '2.1.3'
5
+ VERSION = '2.1.4'
6
6
  end
data/moby.rb.gemspec CHANGED
@@ -45,7 +45,7 @@ Gem::Specification.new do |spec|
45
45
  Dir['test/**/*.rb'],
46
46
  'CHANGELOG',
47
47
  'Gemfile',
48
- 'LICENSE.txt',
48
+ 'LICENSE',
49
49
  'moby.rb.gemspec',
50
50
  'Rakefile',
51
51
  'README.md',
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moby.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran
@@ -118,7 +118,7 @@ extra_rdoc_files: []
118
118
  files:
119
119
  - CHANGELOG
120
120
  - Gemfile
121
- - LICENSE.txt
121
+ - LICENSE
122
122
  - README.md
123
123
  - Rakefile
124
124
  - bin/moby
@@ -165,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0'
167
167
  requirements: []
168
- rubygems_version: 4.0.18
168
+ rubygems_version: 4.0.19
169
169
  specification_version: 4
170
170
  summary: Moby is a credentials poisoning tool which floods phishing forms with fake
171
171
  credentials.
File without changes