infobar 0.7.1 → 0.7.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: 6a7bc8f14e10abb294f335faee99adf2682408d07d2dce2d5d4fe2135f8d3975
4
- data.tar.gz: af0865c4269e721b4a2cc111ce13a6f59d2f60a8515dfe7343ca62c7f73bfd4a
3
+ metadata.gz: ce46e0cc9b279ee4dce2a70f3732a4197bf0f4e8ccf21e7e8ff6de9d53481736
4
+ data.tar.gz: 4d8532f1fbe4761d487a7f68583365344cfa0dfa4fccfdf18b132bcdf7f6ca3c
5
5
  SHA512:
6
- metadata.gz: 4cca3630a3872d27f82c73a25b00058ed66604c0a773038a8028892d200bf2f37225ef8a0a34f8b9766f34fe693b4ae931fd1cdf0cdfd713e643908615bd4c07
7
- data.tar.gz: 6bbd9dc838c9eae82d145e8ce0ecc61a82c7a3df4eb836271b308f0a1ba575d77a4cde103c9e68c3e5341f3576e41b1cf32b85546344c00a4f67724625a6d109
6
+ metadata.gz: c46e5634cb7a6fd68294d9b31448445883d5f3300b73f4f086dd913cfd631443022abe915886d5f946bb542b02dfa99f05cd005a803f7e71aeb146809b38b14c
7
+ data.tar.gz: dfa8b6d284c0c963f118d3276337ae358059920d123f99d2266267226ca4c99bc866de52f80735194fbf7684ff4b3fd77d7630362cf5463b03420d3c127f808b
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ GemHadar do
6
6
  name 'infobar'
7
7
  author 'Florian Frank'
8
8
  email 'flori@ping.de'
9
- homepage "http://github.com/#{name}"
9
+ homepage "http://github.com/flori/#{name}"
10
10
  summary 'Gem to display information about computations.'
11
11
  description 'This gem displays progress of computations and additional information to the terminal.'
12
12
  module_type :class
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.1
1
+ 0.7.2
data/infobar.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: infobar 0.7.1 ruby lib
2
+ # stub: infobar 0.7.2 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "infobar".freeze
6
- s.version = "0.7.1"
6
+ s.version = "0.7.2"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
  s.email = "flori@ping.de".freeze
14
14
  s.extra_rdoc_files = ["README.md".freeze, "lib/infobar.rb".freeze, "lib/infobar/counter.rb".freeze, "lib/infobar/display.rb".freeze, "lib/infobar/duration.rb".freeze, "lib/infobar/fancy_interface.rb".freeze, "lib/infobar/fifo.rb".freeze, "lib/infobar/frequency.rb".freeze, "lib/infobar/input_output.rb".freeze, "lib/infobar/message.rb".freeze, "lib/infobar/number.rb".freeze, "lib/infobar/rate.rb".freeze, "lib/infobar/spinner.rb".freeze, "lib/infobar/timer.rb".freeze, "lib/infobar/trend.rb".freeze, "lib/infobar/version.rb".freeze]
15
15
  s.files = [".all_images.yml".freeze, ".gitignore".freeze, ".rspec".freeze, ".travis.yml".freeze, ".utilsrc".freeze, "COPYING".freeze, "Gemfile".freeze, "README.md".freeze, "Rakefile".freeze, "TODO.md".freeze, "VERSION".freeze, "infobar.gemspec".freeze, "lib/infobar.rb".freeze, "lib/infobar/counter.rb".freeze, "lib/infobar/display.rb".freeze, "lib/infobar/duration.rb".freeze, "lib/infobar/fancy_interface.rb".freeze, "lib/infobar/fifo.rb".freeze, "lib/infobar/frequency.rb".freeze, "lib/infobar/input_output.rb".freeze, "lib/infobar/message.rb".freeze, "lib/infobar/number.rb".freeze, "lib/infobar/rate.rb".freeze, "lib/infobar/spinner.rb".freeze, "lib/infobar/timer.rb".freeze, "lib/infobar/trend.rb".freeze, "lib/infobar/version.rb".freeze, "spec/config/infobar.yml".freeze, "spec/infobar/config_spec.rb".freeze, "spec/infobar/counter_spec.rb".freeze, "spec/infobar/display_spec.rb".freeze, "spec/infobar/duration_spec.rb".freeze, "spec/infobar/fifo_spec.rb".freeze, "spec/infobar/frequency_spec.rb".freeze, "spec/infobar/input_output_spec.rb".freeze, "spec/infobar/message_spec.rb".freeze, "spec/infobar/number_spec.rb".freeze, "spec/infobar/rate_spec.rb".freeze, "spec/infobar/spinner_spec.rb".freeze, "spec/infobar/timer_spec.rb".freeze, "spec/infobar/trend_spec.rb".freeze, "spec/infobar_spec.rb".freeze, "spec/spec_helper.rb".freeze]
16
- s.homepage = "http://github.com/infobar".freeze
16
+ s.homepage = "http://github.com/flori/infobar".freeze
17
17
  s.rdoc_options = ["--title".freeze, "Infobar".freeze, "--main".freeze, "README.md".freeze]
18
18
  s.required_ruby_version = Gem::Requirement.new(">= 2.3".freeze)
19
19
  s.rubygems_version = "3.4.10".freeze
@@ -1,6 +1,6 @@
1
1
  class Infobar
2
2
  # Infobar version
3
- VERSION = '0.7.1'
3
+ VERSION = '0.7.2'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infobar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
@@ -222,7 +222,7 @@ files:
222
222
  - spec/infobar/trend_spec.rb
223
223
  - spec/infobar_spec.rb
224
224
  - spec/spec_helper.rb
225
- homepage: http://github.com/infobar
225
+ homepage: http://github.com/flori/infobar
226
226
  licenses: []
227
227
  metadata: {}
228
228
  post_install_message: