stringex 2.6.0 → 2.6.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 +4 -4
- data/README.rdoc +10 -0
- data/VERSION +1 -1
- data/stringex.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9873c1bd3db8c441ab3daa62fe317e3497d5a06
|
|
4
|
+
data.tar.gz: dd04a038329594f84844c3e636b54a98e1d95717
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6da7370b5e50eb31c5ecdc5914181334cc7dd4e3230bb7baced02c67aef3cbac4ef3d1a3d3715b5d24cb72f3313ad85424567ce32d0d95b8528e42fe4e6c6552
|
|
7
|
+
data.tar.gz: 4ccd3f0efd3b3607afd93fe1e1bbe8e344657568d2db48e583ed92d6d3e5a34dadcc8f97bae0211a6b5fd6902a129728edfb1d35e0b5f68a51400cd4d7996633
|
data/README.rdoc
CHANGED
|
@@ -130,6 +130,16 @@ If you don't want to use the Stringex built-in translations, you can force Strin
|
|
|
130
130
|
You'll need to add a <tt>:find_by => :url</tt> to your <tt>load_and_authorize_resource</tt>. Here's an example:
|
|
131
131
|
|
|
132
132
|
load_and_authorize_resource :class => "Whatever", :message => "Not authorized", :find_by => :url
|
|
133
|
+
|
|
134
|
+
== Semantic Versioning
|
|
135
|
+
|
|
136
|
+
This project conforms to [semver](http://semver.org/). As a result of this policy, you can (and should) specify a dependency on this gem using the [Pessimistic Version Constraint](http://guides.rubygems.org/patterns/) with two digits of precision. For example:
|
|
137
|
+
|
|
138
|
+
spec.add_dependency 'stringex', '~> 1.0'
|
|
139
|
+
|
|
140
|
+
This means your project is compatible with licensee 1.0 up until 2.0. You can also set a higher minimum version:
|
|
141
|
+
|
|
142
|
+
spec.add_dependency 'stringex', '~> 1.1'
|
|
133
143
|
|
|
134
144
|
== Thanks & Acknowledgements
|
|
135
145
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.6.
|
|
1
|
+
2.6.1
|
data/stringex.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: stringex 2.6.
|
|
5
|
+
# stub: stringex 2.6.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "stringex"
|
|
9
|
-
s.version = "2.6.
|
|
9
|
+
s.version = "2.6.1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Russell Norris"]
|
|
14
|
-
s.date = "2016-
|
|
14
|
+
s.date = "2016-07-14"
|
|
15
15
|
s.description = "Some [hopefully] useful extensions to Ruby's String class. Stringex is made up of three libraries: ActsAsUrl [permalink solution with better character translation], Unidecoder [Unicode to ASCII transliteration], and StringExtensions [miscellaneous helper methods for the String class]."
|
|
16
16
|
s.email = "rsl@luckysneaks.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stringex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Russell Norris
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jeweler
|