unf 0.1.1 → 0.1.2
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/.travis.yml +1 -1
- data/CHANGELOG.md +39 -0
- data/README.md +1 -1
- data/lib/unf/version.rb +1 -1
- data/unf.gemspec +7 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a6ca72b1d524ee95cac063e6adeb11f17c84286
|
|
4
|
+
data.tar.gz: 1a4377b04582ffe478ce15fac05b04da1af366bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f873875d9f24fbd46bec423dfe44420a0d0ec41221ca90365922dbddd436875039cfdd6cac989f6b05e746d539a7c10207671633dcc0e6fb05650b77f5343cd9
|
|
7
|
+
data.tar.gz: c4ca7e4b294810e818dcbee0031da1e066d401a01506b32f0765fc98b939f58c61c24991c57bf513f5b02785ddb2d2f8cbe7e46d238daf0888cab8033f10c0cd
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
## 0.1.2 (2013-08-12)
|
|
2
|
+
|
|
3
|
+
Features:
|
|
4
|
+
|
|
5
|
+
- Add license to gemspec.
|
|
6
|
+
|
|
7
|
+
- Adjust dependencies for Ruby 1.8 to satisfy bundler.
|
|
8
|
+
|
|
9
|
+
## 0.1.1 (2013-03-23)
|
|
10
|
+
|
|
11
|
+
Features:
|
|
12
|
+
|
|
13
|
+
- Add rdoc.
|
|
14
|
+
|
|
15
|
+
## 0.1.0 (2013-03-18)
|
|
16
|
+
|
|
17
|
+
Features:
|
|
18
|
+
|
|
19
|
+
- Start CI with Travis-CI.
|
|
20
|
+
|
|
21
|
+
## 0.0.5 (2012-03-04)
|
|
22
|
+
|
|
23
|
+
Features:
|
|
24
|
+
|
|
25
|
+
- Migrate from Jeweler to Bundle gem.
|
|
26
|
+
|
|
27
|
+
Bugfixes:
|
|
28
|
+
|
|
29
|
+
- Fix gem support for JRuby.
|
|
30
|
+
|
|
31
|
+
## 0.0.4 (2011-12-09)
|
|
32
|
+
|
|
33
|
+
Features:
|
|
34
|
+
|
|
35
|
+
- Introduce autoloading.
|
|
36
|
+
|
|
37
|
+
## 0.0.3 (2011-10-25)
|
|
38
|
+
|
|
39
|
+
- Initial release.
|
data/README.md
CHANGED
data/lib/unf/version.rb
CHANGED
data/unf.gemspec
CHANGED
|
@@ -13,6 +13,7 @@ to Ruby/JRuby.
|
|
|
13
13
|
gem.summary = %q{A wrapper library to bring Unicode Normalization Form support to Ruby/JRuby}
|
|
14
14
|
gem.homepage = "https://github.com/knu/ruby-unf"
|
|
15
15
|
gem.platform = defined?(JRUBY_VERSION) ? 'jruby' : Gem::Platform::RUBY
|
|
16
|
+
gem.license = "2-clause BSDL"
|
|
16
17
|
|
|
17
18
|
gem.files = `git ls-files`.split("\n")
|
|
18
19
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
@@ -22,7 +23,12 @@ to Ruby/JRuby.
|
|
|
22
23
|
|
|
23
24
|
gem.add_dependency 'unf_ext', '>= 0' unless defined?(JRUBY_VERSION)
|
|
24
25
|
|
|
25
|
-
gem.add_development_dependency 'shoulda', '>= 0'
|
|
26
|
+
gem.add_development_dependency 'shoulda', [RUBY_VERSION < '1.9' ? '< 3.5.0' : '>= 0']
|
|
27
|
+
if RUBY_VERSION < '1.9'
|
|
28
|
+
# Cap dependency on activesupport with < 4.0 on behalf of
|
|
29
|
+
# shoulda-matchers to satisfy bundler.
|
|
30
|
+
gem.add_development_dependency 'activesupport', ['< 4.0']
|
|
31
|
+
end
|
|
26
32
|
gem.add_development_dependency 'bundler', '>= 1.2.0'
|
|
27
33
|
gem.add_development_dependency 'rake', '>= 0.9.2.2'
|
|
28
34
|
gem.add_development_dependency 'rdoc', '> 2.4.2'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Akinori MUSHA
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-08-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: unf_ext
|
|
@@ -93,6 +93,7 @@ extra_rdoc_files:
|
|
|
93
93
|
files:
|
|
94
94
|
- .gitignore
|
|
95
95
|
- .travis.yml
|
|
96
|
+
- CHANGELOG.md
|
|
96
97
|
- Gemfile
|
|
97
98
|
- LICENSE
|
|
98
99
|
- README.md
|
|
@@ -107,7 +108,8 @@ files:
|
|
|
107
108
|
- test/test_unf.rb
|
|
108
109
|
- unf.gemspec
|
|
109
110
|
homepage: https://github.com/knu/ruby-unf
|
|
110
|
-
licenses:
|
|
111
|
+
licenses:
|
|
112
|
+
- 2-clause BSDL
|
|
111
113
|
metadata: {}
|
|
112
114
|
post_install_message:
|
|
113
115
|
rdoc_options: []
|