rsl-stringex 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/init.rb +1 -7
- data/lib/stringex.rb +7 -0
- data/stringex.gemspec +4 -3
- metadata +7 -4
data/init.rb
CHANGED
data/lib/stringex.rb
ADDED
data/stringex.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "stringex"
|
3
|
-
s.version = "0.9.
|
3
|
+
s.version = "0.9.1"
|
4
4
|
s.date = "2008-10-04"
|
5
5
|
s.summary = "Some [hopefully] useful extensions to Ruby’s String class"
|
6
6
|
s.email = "rsl@luckysneaks.com"
|
@@ -14,6 +14,7 @@ Gem::Specification.new do |s|
|
|
14
14
|
Rakefile
|
15
15
|
README.rdoc
|
16
16
|
stringex.gemspec
|
17
|
+
lib/stringex.rb
|
17
18
|
lib/lucky_sneaks/acts_as_url.rb
|
18
19
|
lib/lucky_sneaks/string_extensions.rb
|
19
20
|
lib/lucky_sneaks/unidecoder.rb
|
@@ -199,10 +200,10 @@ Gem::Specification.new do |s|
|
|
199
200
|
lib/lucky_sneaks/unidecoder_data/xff.yml
|
200
201
|
}
|
201
202
|
s.test_files = %w{
|
202
|
-
test/acts_as_url.sqlite3
|
203
203
|
test/acts_as_url_test.rb
|
204
204
|
test/string_extensions_test.rb
|
205
205
|
test/unidecoder_test.rb
|
206
206
|
}
|
207
|
-
s.rdoc_options = %w{--main README.rdoc --line-numbers}
|
207
|
+
s.rdoc_options = %w{--main README.rdoc --charset utf-8 --line-numbers}
|
208
|
+
s.extra_rdoc_files = %w{MIT-LICENSE README.rdoc}
|
208
209
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rsl-stringex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Russell Norris
|
@@ -19,14 +19,16 @@ executables: []
|
|
19
19
|
|
20
20
|
extensions: []
|
21
21
|
|
22
|
-
extra_rdoc_files:
|
23
|
-
|
22
|
+
extra_rdoc_files:
|
23
|
+
- MIT-LICENSE
|
24
|
+
- README.rdoc
|
24
25
|
files:
|
25
26
|
- init.rb
|
26
27
|
- MIT-LICENSE
|
27
28
|
- Rakefile
|
28
29
|
- README.rdoc
|
29
30
|
- stringex.gemspec
|
31
|
+
- lib/stringex.rb
|
30
32
|
- lib/lucky_sneaks/acts_as_url.rb
|
31
33
|
- lib/lucky_sneaks/string_extensions.rb
|
32
34
|
- lib/lucky_sneaks/unidecoder.rb
|
@@ -216,6 +218,8 @@ post_install_message:
|
|
216
218
|
rdoc_options:
|
217
219
|
- --main
|
218
220
|
- README.rdoc
|
221
|
+
- --charset
|
222
|
+
- utf-8
|
219
223
|
- --line-numbers
|
220
224
|
require_paths:
|
221
225
|
- lib
|
@@ -239,7 +243,6 @@ signing_key:
|
|
239
243
|
specification_version: 2
|
240
244
|
summary: "Some [hopefully] useful extensions to Ruby\xE2\x80\x99s String class"
|
241
245
|
test_files:
|
242
|
-
- test/acts_as_url.sqlite3
|
243
246
|
- test/acts_as_url_test.rb
|
244
247
|
- test/string_extensions_test.rb
|
245
248
|
- test/unidecoder_test.rb
|