procrastination 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b2d3ee14e198621c3ca92eefad3ebc15ed244002e6110a2c195fc6ff7df10378
4
+ data.tar.gz: af047274c524dcdb63ac056f455b26df45b028784a940ee1ff66eab3da145488
5
+ SHA512:
6
+ metadata.gz: ac6a46e173cbf05cc6deffbdc18140bcd1cd996e31d536c7735aa0e69cf7a0913b960274fe9a9aef2a41ef47520ecca34e6065ba1d228c7b55c63e3a96c1e280
7
+ data.tar.gz: cb86b8587501fb005b30b10c215dec7fdc4534779e904ac1c388aede4ca6e990d3e1e0f8210fe7e7709fbf08d12792c58ba2b1984af933b5d87635adcf59d8ff
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+ /.bundle/
13
+ /vendor/bundle
14
+ Gemfile.lock
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 0.0.1
4
+
5
+ - Initial release (name claim)
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ task default: []
@@ -0,0 +1,3 @@
1
+ module Procrastination
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ require_relative "procrastination/version"
2
+
3
+ module Procrastination
4
+ end
@@ -0,0 +1,23 @@
1
+ require_relative "lib/procrastination/version"
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "procrastination"
5
+ spec.version = Procrastination::VERSION
6
+ spec.authors = ["Joshua Paine"]
7
+ spec.email = []
8
+
9
+ spec.summary = "Procrastination"
10
+ spec.homepage = "https://github.com/midnightmonster/procrastination"
11
+ spec.license = "MIT"
12
+ spec.required_ruby_version = ">= 3.0"
13
+
14
+ spec.metadata["homepage_uri"] = spec.homepage
15
+ spec.metadata["source_code_uri"] = spec.homepage
16
+ spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
17
+
18
+ spec.files = Dir.chdir(__dir__) do
19
+ `git ls-files -z`.split("\x0").reject { |f| f.match?(%r{\A(test|spec|features)/}) }
20
+ end
21
+
22
+ spec.require_paths = ["lib"]
23
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: procrastination
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Joshua Paine
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ email: []
13
+ executables: []
14
+ extensions: []
15
+ extra_rdoc_files: []
16
+ files:
17
+ - ".gitignore"
18
+ - CHANGELOG.md
19
+ - Gemfile
20
+ - Rakefile
21
+ - lib/procrastination.rb
22
+ - lib/procrastination/version.rb
23
+ - procrastination.gemspec
24
+ homepage: https://github.com/midnightmonster/procrastination
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://github.com/midnightmonster/procrastination
29
+ source_code_uri: https://github.com/midnightmonster/procrastination
30
+ changelog_uri: https://github.com/midnightmonster/procrastination/blob/main/CHANGELOG.md
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '3.0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.6.9
46
+ specification_version: 4
47
+ summary: Procrastination
48
+ test_files: []