fortschritt 0.3.6 → 1.0.0
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 +4 -4
- data/.circleci/config.yml +20 -0
- data/LICENSE +13 -0
- data/fortschritt.gemspec +1 -0
- data/lib/fortschritt/version.rb +1 -1
- metadata +10 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 410850425ce6a0416aba93fa42c7f889b084a10f945c69196b2ba1fdca08c6da
|
|
4
|
+
data.tar.gz: b83172478ef655c56e7931e4228d9ee1c24a0c2518ebbf0fc06c1b4bb464bdd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4f1f157407ac01655408da4ced69b54e20989270bb24e5222cbdf73ca87e3705497825ccc20f96c231aae85c1d185aff4f873fb927139bc51c5174580663f3e
|
|
7
|
+
data.tar.gz: 8c4790fb62d00205e92afde33dc39b6f7ebab7700688f3c0e9baf686a73026d7f55bc8d5abf766c2f01cb48eb99ba023e30bd842187c60d150a60668b73c661d
|
data/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
2
|
+
Version 2, December 2004
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2021 Johannes Opper <johannes.opper@gmail.com>
|
|
5
|
+
|
|
6
|
+
Everyone is permitted to copy and distribute verbatim or modified
|
|
7
|
+
copies of this license document, and changing it is allowed as long
|
|
8
|
+
as the name is changed.
|
|
9
|
+
|
|
10
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
11
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
12
|
+
|
|
13
|
+
0. You just DO WHAT THE FUCK YOU WANT TO.
|
data/fortschritt.gemspec
CHANGED
|
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.summary = %q{non-fancy progress}
|
|
13
13
|
spec.description = %q{non-fancy progress}
|
|
14
14
|
spec.homepage = "https://github.com/xijo/fortschritt"
|
|
15
|
+
spec.license = "WTFPL"
|
|
15
16
|
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
18
|
spec.bindir = "exe"
|
data/lib/fortschritt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fortschritt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Johannes Opper
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-12-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -59,10 +59,12 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- ".circleci/config.yml"
|
|
62
63
|
- ".gitignore"
|
|
63
64
|
- ".rspec"
|
|
64
65
|
- ".travis.yml"
|
|
65
66
|
- Gemfile
|
|
67
|
+
- LICENSE
|
|
66
68
|
- README.md
|
|
67
69
|
- Rakefile
|
|
68
70
|
- bin/console
|
|
@@ -74,9 +76,10 @@ files:
|
|
|
74
76
|
- lib/fortschritt/printer.rb
|
|
75
77
|
- lib/fortschritt/version.rb
|
|
76
78
|
homepage: https://github.com/xijo/fortschritt
|
|
77
|
-
licenses:
|
|
79
|
+
licenses:
|
|
80
|
+
- WTFPL
|
|
78
81
|
metadata: {}
|
|
79
|
-
post_install_message:
|
|
82
|
+
post_install_message:
|
|
80
83
|
rdoc_options: []
|
|
81
84
|
require_paths:
|
|
82
85
|
- lib
|
|
@@ -91,8 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
94
|
- !ruby/object:Gem::Version
|
|
92
95
|
version: '0'
|
|
93
96
|
requirements: []
|
|
94
|
-
rubygems_version: 3.1.
|
|
95
|
-
signing_key:
|
|
97
|
+
rubygems_version: 3.1.4
|
|
98
|
+
signing_key:
|
|
96
99
|
specification_version: 4
|
|
97
100
|
summary: non-fancy progress
|
|
98
101
|
test_files: []
|