middleman-redirects 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 2d6c42d9e534315b7b2d89ee6e616aad23caa29f
4
- data.tar.gz: dfa43bb0c08a14141c9570902e28c659d5c062f8
3
+ metadata.gz: be2018be3504425ebacb4a5d8cba1076b013b908
4
+ data.tar.gz: 9349085b702a26da0128fa19ca3054202031421f
5
5
  SHA512:
6
- metadata.gz: d6fa0b135e6cd6286b03ab3f257db52f4f234264652f719918af613902339a538b87285de7846a44c370025871f512aa26052077177e9eb1fd562c86798824bb
7
- data.tar.gz: 91927a80a94973361bbbe01b68eeeb737f04d01403c7fcded253cd77340af0f89ebc3fadd842393a6c4a075fcfdddd33243ec9ecec3db13f09c100da74503951
6
+ metadata.gz: 3abc132971d76a1795b30ec995ce441201f3a20ca30034318106f1c272a39a041ab07c9584e2eb49cd6b8e076434fb6f7c6e5568789f5fb04582511e38e17a9b
7
+ data.tar.gz: 0aee77206d40b3e0bb417e7280e3e8f231d7c285cda4b0ecda67612130af3d48d844d9f37f5861b49efa5b67be2f414294f79ab7bead48a93c86df3571dc1894
data/README.md CHANGED
@@ -1,28 +1,15 @@
1
1
  # Middleman::Redirects
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/middleman/redirects`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Makes middleman parse `REDIRECTS` files during development and perform the redirects specified.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'middleman-redirects'
13
5
  ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install middleman-redirects
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
6
+ # REDIRECTS
7
+ #
8
+ # Syntax:
9
+ #
10
+ # <source> <destination>
11
+ /github https://github.com/PSPDFKit-labs/middleman-redirects
12
+ ```
26
13
 
27
14
  ## Development
28
15
 
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module Redirects
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -56,7 +56,6 @@ module Middleman
56
56
 
57
57
  [source.to_s, destination.to_s]
58
58
  end.compact]
59
- p @redirects
60
59
  end
61
60
  end
62
61
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-redirects
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
  - Martin Schurrer