tag_uri 1.0.0 → 1.0.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
  SHA1:
3
- metadata.gz: 19bb65c0d8a14948185e0fadc188e04a900d7a26
4
- data.tar.gz: dcdb15b0187e493727831aa16c6d91d58cfde638
3
+ metadata.gz: 24aedc1ef59817936be23c8bd7a0d11c96b02251
4
+ data.tar.gz: a5c2c2a78131e12b451317ff03a30025b6a2387e
5
5
  SHA512:
6
- metadata.gz: c55c9f423772b21719f7fe786981d80825ae53d78ed334228e3a0e52688624b12d15522916b52116c9825d6e4fc7d9a047399d5c6b04a92bc38527bef65cf2c1
7
- data.tar.gz: f61f707f740513cba94276f300a65668d7d18b4162d2c770809e655fbf88bd9480ce11490732c5d6da932056d274f89134c3d601ef8a5a501b8c2f036e6a4f6d
6
+ metadata.gz: eb905bff1541a2df1c0ddc83e9c851ae43d4cae802d201450ed7e375f22475130bba0a8bb79c73d7996c738eb8d362b488a072e55d8a4624a6f95804da5974fa
7
+ data.tar.gz: 3b6aac238508687f5c616295e0342454bddb1bdd52a9bc996d62088528e47a945aff2b16ac5d7533de0e47009bc339d6b3ee0f68aefd3d0474e9fc1e99c7891d
data/CHANGES.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # CH CH CH CHANGES #
2
2
 
3
- ## Sunday the 14th of June, 2015 v1.0.0 ##
3
+ ## Sunday the 14th of June, 2015 ##
4
+
5
+ ### v1.0.1 ###
6
+
7
+ * Improved the docs.
8
+
9
+ ----
10
+
11
+ ### v1.0.0 ###
4
12
 
5
13
  * Updated to use Ruby v2's keywords.
6
14
  * Bumped to v1.0.0 as a semver release.
data/README.md CHANGED
@@ -16,7 +16,15 @@ Because every Atom entry must have a globally unique ID, in the `id` element.
16
16
  * The ID must be globally unique, across all Atom feeds, everywhere, for all time. This part is actually easier than it sounds.
17
17
  * The ID must never, ever change.
18
18
 
19
- Some people use a permalink for this, but we all know that permalinks change, so use a tag URI instead. See http://web.archive.org/web/20110514113830/http://diveintomark.org/archives/2004/05/28/howto-atom-id for more.
19
+ Some people use a permalink for this, but we all know that permalinks change, so use a tag URI instead. See the following articles for a bit more info:
20
+
21
+ - [IBM developer works, Managing XML data: Tag URIs](http://www.ibm.com/developerworks/library/x-mxd6/index.html)
22
+ - [Tag URI](http://taguri.org)
23
+ - [How to make a good ID in Atom](http://web.archive.org/web/20110514113830/http://diveintomark.org/archives/2004/05/28/howto-atom-id)
24
+
25
+ You don't have to just use it with Atom, it's also useful anywhere that a non-tied-to-location URI might make sense. As one of the linked articles states:
26
+
27
+ > Tag URIs finally let URIs do what they were meant to do: identify without implying any sort of location or behavior that they don't have. They're easy to create, they're human legible, they work with existing systems, they're an open standard, and they don't have any backward compatibility issues. What's not to like?
20
28
 
21
29
 
22
30
  ## Installation
@@ -35,7 +43,7 @@ Or install it yourself as:
35
43
 
36
44
  ## Usage
37
45
 
38
- require 'taguri'
46
+ require 'tag_uri'
39
47
 
40
48
  Given a model:
41
49
 
@@ -1,3 +1,3 @@
1
1
  module TagURI
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tag_uri
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Iain Barnett