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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81fee1c2e0809177d3d26efec9da20c494708a86c497b0fe3d27b8b9df72f173
4
- data.tar.gz: 79f930361ad85f1d34aa8784aca4d072e058bdf985420966c8c2e59c18bc4a63
3
+ metadata.gz: 410850425ce6a0416aba93fa42c7f889b084a10f945c69196b2ba1fdca08c6da
4
+ data.tar.gz: b83172478ef655c56e7931e4228d9ee1c24a0c2518ebbf0fc06c1b4bb464bdd8
5
5
  SHA512:
6
- metadata.gz: 66302674f968e7b9553d4709164bc27bb97970624f0b324e74138c5718b0fd4980b9c733bc919e2eae26dfd1411d1c87c1b3aece09fcb63c30c179f2ceb5cd9e
7
- data.tar.gz: d59919fdbc0bc21695867fd277f6512bf65c938c1e26ad4250a25ef74090c4f29e98a8e7450d5815c6d30bf70adbb9e17ae9c7e5b524797aba18b875ec2d5bf3
6
+ metadata.gz: f4f1f157407ac01655408da4ced69b54e20989270bb24e5222cbdf73ca87e3705497825ccc20f96c231aae85c1d185aff4f873fb927139bc51c5174580663f3e
7
+ data.tar.gz: 8c4790fb62d00205e92afde33dc39b6f7ebab7700688f3c0e9baf686a73026d7f55bc8d5abf766c2f01cb48eb99ba023e30bd842187c60d150a60668b73c661d
@@ -0,0 +1,20 @@
1
+ version: 2.1
2
+
3
+ executors:
4
+ ruby:
5
+ docker:
6
+ - image: circleci/ruby
7
+
8
+ jobs:
9
+ test:
10
+ executor: ruby
11
+ steps:
12
+ - checkout
13
+ - run: bundle
14
+ - run: gem install rspec
15
+ - run: rspec
16
+
17
+ workflows:
18
+ test:
19
+ jobs:
20
+ - test
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"
@@ -1,3 +1,3 @@
1
1
  module Fortschritt
2
- VERSION = '0.3.6'
2
+ VERSION = '1.0.0'
3
3
  end
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.3.6
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-02-06 00:00:00.000000000 Z
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.2
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: []