rack-capture 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca614d90af90f94f06ccb59fc0a2a5ad476e70170bbc06bda2dbce601f9037c1
4
- data.tar.gz: 79ed210bc2976e4e38952dd237e174c4a4057a03105903ad8fc245c09a70dd80
3
+ metadata.gz: 2e11ab022e853ac824d46ec4f5c7ba7596292736ea0026ccd5a732c4c55678ea
4
+ data.tar.gz: 5b9a6f293819e435ede36dccc97f88cbd6e28ce7b26e40232ad29d3c57296732
5
5
  SHA512:
6
- metadata.gz: 6cd08848f826f9f44c5144edcf21571166a7cf579565eabf1963309925690f7bf95d15b5192d8baf5957297103ec652c450bf3d4ebea0ab46c7ad78b7ed223bb
7
- data.tar.gz: 90de2cc42390fa8783b8dcdabd19f00a561446c6518c012b6cfe9a35cfbdd5a8d2575cdf5afd32ee04623bee758a59814fd6f1980d5243b8a69e438fb9844422
6
+ metadata.gz: 9e1f029ba7d5c3f84bb2d73f162892d998a1ec3191ed1357638064899db5c5454971eba1f4350929ec5c126af820d7ba6568587bbafe8357758ec89a0eff49a2
7
+ data.tar.gz: 2fb284fad20fc5f6174208c4c37712011f45c67df2b7b8622bc9c6d008d69edcdc6291b8993620ee87e1eb1df5ab2ca4ccd355e7ee3124cf843dc7e17a27063b
@@ -0,0 +1,20 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## 0.1.1 - 2020-10-28
11
+
12
+ ### Added
13
+
14
+ - Add Rack::Capture.call.
15
+
16
+ ## 0.1.0 - 2020-10-28
17
+
18
+ ### Added
19
+
20
+ - Add Rack::Capture.
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Rack::Capture
2
2
 
3
+ [![](https://badge.fury.io/rb/rack-capture.svg)](https://rubygems.org/gems/rack-capture)
4
+
3
5
  Generate static files from Rack application and URLs.
4
6
 
5
7
  ## Installation
@@ -23,6 +25,8 @@ Or install it yourself as:
23
25
  Call `Rack::Capture.call` to generate static file.
24
26
 
25
27
  ```ruby
28
+ require 'rack/capture'
29
+
26
30
  %w[
27
31
  http://example.com/
28
32
  http://example.com/articles
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  class Capture
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
13
13
 
14
14
  spec.metadata['homepage_uri'] = spec.homepage
15
15
  spec.metadata['source_code_uri'] = spec.homepage
16
+ spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/CHANGELOG.md"
16
17
 
17
18
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
18
19
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-capture
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
@@ -34,6 +34,7 @@ files:
34
34
  - ".gitignore"
35
35
  - ".rspec"
36
36
  - ".travis.yml"
37
+ - CHANGELOG.md
37
38
  - Gemfile
38
39
  - Gemfile.lock
39
40
  - LICENSE.txt
@@ -50,6 +51,7 @@ licenses:
50
51
  metadata:
51
52
  homepage_uri: https://github.com/r7kamura/rack-capture
52
53
  source_code_uri: https://github.com/r7kamura/rack-capture
54
+ changelog_uri: https://github.com/r7kamura/rack-capture/blob/master/CHANGELOG.md
53
55
  post_install_message:
54
56
  rdoc_options: []
55
57
  require_paths: