perete 0.0.0 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c45a2677236c4c32749606d9ec6ca2890340658867f456855efa6a75ef085c44
4
- data.tar.gz: f64c5dd7cb330407626b850fa896b8f80153a1740d23ffe6d00f4f5557df9d84
3
+ metadata.gz: cf6793b3f45297468e81434700c21e569c55b46581ae7955f8244dc6ccba0721
4
+ data.tar.gz: 51efcfdaa0ce3d9654637f8a332236b8f952e820a0849c94b0873600c528b63f
5
5
  SHA512:
6
- metadata.gz: 942e35604fb2e91b549b281cc78880553dd5bb028d35fd1667da64df6299a90863525dc6009bd6f969be547e25346a5fc236cc94817d0f9a1fb153e5c2e94cbf
7
- data.tar.gz: d7c54fb6d78d9d83d3c8de9c8714886a9514fd2b3711b25e930485302b5b45fbb0fd55d069a7cbaab71d02f6eb16fe2f7470e396535e5ab00c3ae9a1806cb350
6
+ metadata.gz: 8b0a5618fb71ba50bde2bd8e95f21ed4a97ed65b664d24493a86ed3bc221ef3b0155df5bed06b39a4cc1624178b4d084b760a172674b5085dcae7a5a2382ef4a
7
+ data.tar.gz: cabcb0bfbc66062e164b4700bc3d08b2842e5b0e9e0cc946a3530a6726c4653d918a64cc6b02aa9f02d749f5eefbd14d8b5aeccca2178be7667fcbb1ec131043
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Rob Durst
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
File without changes
@@ -0,0 +1,3 @@
1
+ module Perete
2
+ VERSION = "0.0.2"
3
+ end
data/lib/perete.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  class Perete
2
- def self.hi
3
- puts "Hello world!"
2
+ def self.hi(message = "Hello World!")
3
+ puts "#{message}"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: perete
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Durst
@@ -10,16 +10,19 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2023-08-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Performance regression testing for Ruby.
14
- email: me@robdurst.com
13
+ description: Performance regression framework and executor.
14
+ email:
15
+ - me@robdurst.com
15
16
  executables: []
16
17
  extensions: []
17
18
  extra_rdoc_files: []
18
19
  files:
20
+ - LICENSE
21
+ - README.md
19
22
  - lib/perete.rb
20
- homepage: https://rubygems.org/gems/perete
21
- licenses:
22
- - MIT
23
+ - lib/perete/version.rb
24
+ homepage: http://github.com/robertdurst/perete
25
+ licenses: []
23
26
  metadata: {}
24
27
  post_install_message:
25
28
  rdoc_options: []
@@ -39,5 +42,5 @@ requirements: []
39
42
  rubygems_version: 3.0.3.1
40
43
  signing_key:
41
44
  specification_version: 4
42
- summary: Performance regression testing for Ruby.
45
+ summary: Performance Testing Tool
43
46
  test_files: []