perete 0.0.0 → 0.0.3

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: c45a2677236c4c32749606d9ec6ca2890340658867f456855efa6a75ef085c44
4
- data.tar.gz: f64c5dd7cb330407626b850fa896b8f80153a1740d23ffe6d00f4f5557df9d84
3
+ metadata.gz: 96be8fadb4063dc2e77be1b2613f4d9d7713ee3d5d213ad36df10734c1ef2ada
4
+ data.tar.gz: ad20b38d707e0c353e37cd6383bfa605a45c44c93758f6b62cb1b4636477a8cc
5
5
  SHA512:
6
- metadata.gz: 942e35604fb2e91b549b281cc78880553dd5bb028d35fd1667da64df6299a90863525dc6009bd6f969be547e25346a5fc236cc94817d0f9a1fb153e5c2e94cbf
7
- data.tar.gz: d7c54fb6d78d9d83d3c8de9c8714886a9514fd2b3711b25e930485302b5b45fbb0fd55d069a7cbaab71d02f6eb16fe2f7470e396535e5ab00c3ae9a1806cb350
6
+ metadata.gz: 98de215dc845ee6d5f2a48614b1df8e17ff4963e1713204a5ebd51c18dbd0bb66f335984bd3cb26d98a6dbc61d5e755d4a353198793aaac45747679cca4e8990
7
+ data.tar.gz: f48d5a149f3e573fa4ad02c7cda4c3ee745429e9b2ca22fde458d93aaba55a2a49ebf46c054f59b356a48daa639fe535772a9791209c9c29558cbf00a9fdb03e
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
data/bin/perete ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'perete'
4
+ puts Perete.hi(ARGV[0])
@@ -0,0 +1,3 @@
1
+ module Perete
2
+ VERSION = "0.0.3"
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.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Durst
@@ -10,16 +10,20 @@ 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
22
+ - bin/perete
19
23
  - lib/perete.rb
20
- homepage: https://rubygems.org/gems/perete
21
- licenses:
22
- - MIT
24
+ - lib/perete/version.rb
25
+ homepage: http://github.com/robertdurst/perete
26
+ licenses: []
23
27
  metadata: {}
24
28
  post_install_message:
25
29
  rdoc_options: []
@@ -39,5 +43,5 @@ requirements: []
39
43
  rubygems_version: 3.0.3.1
40
44
  signing_key:
41
45
  specification_version: 4
42
- summary: Performance regression testing for Ruby.
46
+ summary: Performance Testing Tool
43
47
  test_files: []