fixed_size_buffer 0.1.1 → 0.1.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: f7a9ed206bfb4253b36aad2ecff0af3fa8c64625d071db9e0c28ea572604b064
4
- data.tar.gz: b46cb5ec494651139725e626a61187c4b0214d0ca662736405023bcfba62ca5e
3
+ metadata.gz: 168b93d2d8a689a21cade081c41e9c4edcd41fc5dadd39aa2fe57a1948d7e71d
4
+ data.tar.gz: 7436bfc42d488f986f6ec7f756dc5e409b7d360c3210a37e6d5e6786b76cb6ef
5
5
  SHA512:
6
- metadata.gz: 2a1b78f1e0757632cdaffbb62fc36ac9895482ce49ba53f2a506beeeaaa42f86c9cbe6957cf154f2bf0003010135f7f7ff2aad6085908ea3733c733d289fa340
7
- data.tar.gz: 0e5c28990544adfc1e63e9e3fcd639de772b4025b832ea2f7f2e058a45dd398e777dd0c1fc52fd686b1b20c898630e91619582326686207dbc21f18668bd3c14
6
+ metadata.gz: 66614c9cbff209313b1d0ec858976912b3e9349200acf632da61bf8cefbff43492ccc7f528716953f6b2cc8ba64381862708bba598d64995bbd1c41d30ef371f
7
+ data.tar.gz: 11c88c06a86e91dea6687eecbb3a80363ccc140632bfff4979007e3b9cdc0a413a889c34173bf2d233bf12003d001239345160028e42f6e2a47c6c5f4e15fda2
data/.yardopts ADDED
@@ -0,0 +1,5 @@
1
+ --markup markdown
2
+ lib/**/*.rb
3
+ -
4
+ LICENSE.txt
5
+ CHANGELOG.md
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ Release v0.1.2
2
+ ====================
3
+
4
+ Fix rubydoc.info documentation
5
+
1
6
  Release v0.1.1
2
7
  ====================
3
8
 
@@ -58,13 +58,17 @@ require 'fixed_size_buffer/version'
58
58
  # and a full buffer (write pointer just before read pointer). The value
59
59
  # in-between the read and write pointers for a full buffer will not be read.
60
60
  class FixedSizeBuffer
61
+ # The capacity given to {.new}
61
62
  attr_reader :capacity
62
63
 
63
64
  # Create a new empty {FixedSizeBuffer}
64
65
  #
65
66
  # Start state
67
+ #
68
+ # ```text
66
69
  # rw
67
70
  # | | | | |
71
+ # ```
68
72
  #
69
73
  # @param capacity [Integer] The number of items this buffer can hold
70
74
  def initialize(capacity)
@@ -2,7 +2,7 @@
2
2
 
3
3
  class FixedSizeBuffer
4
4
  # The current FixedSizeBuffer gem version
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.2'
6
6
 
7
7
  def self.version
8
8
  Gem::Version.new(VERSION)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fixed_size_buffer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Howard
@@ -59,6 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".yardopts"
62
63
  - CHANGELOG.md
63
64
  - LICENSE.txt
64
65
  - README.md
@@ -69,7 +70,7 @@ licenses:
69
70
  - MIT
70
71
  metadata:
71
72
  changelog_uri: https://github.com/justinhoward/fixed_size_buffer/blob/master/CHANGELOG.md
72
- documentation_uri: https://www.rubydoc.info/gems/fixed_size_buffer/0.1.1
73
+ documentation_uri: https://www.rubydoc.info/gems/fixed_size_buffer/0.1.2
73
74
  post_install_message:
74
75
  rdoc_options: []
75
76
  require_paths: