linebreak 2.0.1 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/.coveralls.yml +1 -0
- data/.travis.yml +2 -5
- data/Gemfile +5 -2
- data/HISTORY.md +13 -0
- data/LICENSE.md +2 -2
- data/README.md +42 -19
- data/Rakefile +1 -1
- data/lib/aef/linebreak.rb +1 -1
- data/lib/aef/linebreak/version.rb +3 -3
- data/lib/linebreak.rb +1 -1
- data/lib/linebreak/bare.rb +1 -1
- data/linebreak.gemspec +31 -32
- data/spec/linebreak_spec.rb +1 -1
- data/spec/spec_helper.rb +11 -4
- metadata +93 -72
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
=begin
|
3
|
-
Copyright Alexander E. Fischer <aef@
|
3
|
+
Copyright Alexander E. Fischer <aef@godobject.net>, 2009-2013
|
4
4
|
|
5
5
|
This file is part of Linebreak.
|
6
6
|
|
@@ -19,5 +19,8 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
19
19
|
|
20
20
|
source 'http://rubygems.org'
|
21
21
|
|
22
|
-
#
|
22
|
+
# Gem dependencies are specified in the .gemspec file
|
23
23
|
gemspec
|
24
|
+
|
25
|
+
gem 'coveralls', require: false
|
26
|
+
|
data/HISTORY.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
2.1.0 / 2013-10-17
|
2
|
+
==================
|
3
|
+
|
4
|
+
* 5 minor enhancements
|
5
|
+
|
6
|
+
* Updated documentation
|
7
|
+
* Updated gemspec
|
8
|
+
* Updated dependencies
|
9
|
+
* Added project to Gemnasium
|
10
|
+
* Added project to Coveralls
|
11
|
+
|
12
|
+
* Ruby versions below 1.9.3 are not supported anymore
|
13
|
+
|
1
14
|
2.0.1 / 2012-10-02
|
2
15
|
==================
|
3
16
|
|
data/LICENSE.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Copyright Alexander E. Fischer <aef@
|
1
|
+
Copyright Alexander E. Fischer <aef@godobject.net>, 2009-2013
|
2
2
|
|
3
3
|
Linebreak is licensed under the following ISC-style license:
|
4
4
|
|
@@ -12,4 +12,4 @@ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
12
12
|
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
13
13
|
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
14
14
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
15
|
-
PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
PERFORMANCE OF THIS SOFTWARE.
|
data/README.md
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
Linebreak
|
2
2
|
=========
|
3
3
|
|
4
|
-
[![
|
5
|
-
https://secure.travis-ci.org/aef/linebreak)
|
6
|
-
[![
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/linebreak.png)](https://badge.fury.io/rb/linebreak)
|
5
|
+
[![Build Status](https://secure.travis-ci.org/aef/linebreak.png)](https://secure.travis-ci.org/aef/linebreak)
|
6
|
+
[![Dependency Status](https://gemnasium.com/aef/linebreak.png)](https://gemnasium.com/aef/linebreak)
|
7
|
+
[![Code Climate](https://codeclimate.com/github/aef/linebreak.png)](https://codeclimate.com/github/aef/linebreak)
|
8
|
+
[![Coverage Status](https://coveralls.io/repos/aef/linebreak/badge.png?branch=master)](https://coveralls.io/r/aef/linebreak)
|
7
9
|
|
8
10
|
* [Documentation][docs]
|
9
11
|
* [Project][project]
|
@@ -15,7 +17,7 @@ Description
|
|
15
17
|
-----------
|
16
18
|
|
17
19
|
Linebreak is a Ruby library for conversion of text between linebreak encoding
|
18
|
-
formats of
|
20
|
+
formats of Unix, Windows or Mac.
|
19
21
|
|
20
22
|
A command-line tool is available as separate gem named linebreak-cli.
|
21
23
|
Earlier versions of Linebreak were called BreakVerter.
|
@@ -25,7 +27,7 @@ Features / Problems
|
|
25
27
|
|
26
28
|
This project tries to conform to:
|
27
29
|
|
28
|
-
* [Semantic Versioning (2.0.0
|
30
|
+
* [Semantic Versioning (2.0.0)][semver]
|
29
31
|
* [Ruby Packaging Standard (0.5-draft)][rps]
|
30
32
|
* [Ruby Style Guide][style]
|
31
33
|
* [Gem Packaging: Best Practices][gem]
|
@@ -39,7 +41,8 @@ Additional facts:
|
|
39
41
|
|
40
42
|
* Written purely in Ruby.
|
41
43
|
* Documented with YARD.
|
42
|
-
*
|
44
|
+
* Automatically testable through RSpec.
|
45
|
+
* Intended to be used with Ruby 1.9.3 or higher.
|
43
46
|
* Extends core classes. This can be disabled through bare mode.
|
44
47
|
* Cryptographically signed gem and git tags.
|
45
48
|
|
@@ -146,7 +149,7 @@ some_string.extend Aef::Linebreak
|
|
146
149
|
Requirements
|
147
150
|
------------
|
148
151
|
|
149
|
-
* Ruby 1.
|
152
|
+
* Ruby 1.9.3 or higher
|
150
153
|
|
151
154
|
Installation
|
152
155
|
------------
|
@@ -165,7 +168,7 @@ Add the key to your rubygems' trusted certificates by the following command:
|
|
165
168
|
|
166
169
|
gem cert --add aef-gem.pem
|
167
170
|
|
168
|
-
Now you can install the gem while automatically verifying
|
171
|
+
Now you can install the gem while automatically verifying its signature by the
|
169
172
|
following command:
|
170
173
|
|
171
174
|
gem install linebreak -P HighSecurity
|
@@ -204,27 +207,33 @@ or ideas for improvement of this software.
|
|
204
207
|
|
205
208
|
### Source code
|
206
209
|
|
210
|
+
#### Distribution
|
211
|
+
|
207
212
|
This software is developed in the source code management system Git. There are
|
208
213
|
several synchronized mirror repositories available:
|
209
214
|
|
210
|
-
* GitHub
|
215
|
+
* GitHub (located in California, USA)
|
211
216
|
|
212
217
|
URL: https://github.com/aef/linebreak.git
|
213
218
|
|
214
|
-
* Gitorious
|
219
|
+
* Gitorious (located in Norway)
|
215
220
|
|
216
221
|
URL: https://git.gitorious.org/linebreak/linebreak.git
|
217
222
|
|
218
|
-
* BitBucket
|
223
|
+
* BitBucket (located in Colorado, USA)
|
219
224
|
|
220
225
|
URL: https://bitbucket.org/alefi/linebreak.git
|
221
226
|
|
227
|
+
* Pikacode (located in France)
|
228
|
+
|
229
|
+
URL: https://pikacode.com/aef/linebreak.git
|
230
|
+
|
222
231
|
You can get the latest source code with the following command, while
|
223
232
|
exchanging the placeholder for one of the mirror URLs:
|
224
233
|
|
225
234
|
git clone MIRROR_URL
|
226
235
|
|
227
|
-
#### Tags
|
236
|
+
#### Tags and cryptographic verification
|
228
237
|
|
229
238
|
The final commit before each released gem version will be marked by a tag
|
230
239
|
named like the version with a prefixed lower-case "v", as required by Semantic
|
@@ -241,21 +250,35 @@ This command will tell you if your code is of integrity and authentic:
|
|
241
250
|
|
242
251
|
git tag -v [TAG NAME]
|
243
252
|
|
253
|
+
#### Building gems
|
254
|
+
|
255
|
+
To package your state of the source code into a gem package use the following
|
256
|
+
command:
|
257
|
+
|
258
|
+
rake build
|
259
|
+
|
260
|
+
The gem will be generated according to the .gemspec file in the project root
|
261
|
+
directory and will be placed into the pkg/ directory.
|
262
|
+
|
244
263
|
### Contribution
|
245
264
|
|
246
265
|
Help on making this software better is always very appreciated. If you want
|
247
|
-
your changes to be included in the official release, please clone
|
248
|
-
on github.com, create a named branch to commit
|
249
|
-
send
|
266
|
+
your changes to be included in the official release, please clone the project
|
267
|
+
on github.com, create a named branch to commit, push your changes into it and
|
268
|
+
send a pull request afterwards.
|
269
|
+
|
270
|
+
Please make sure to write tests for your changes so that no one else will break
|
271
|
+
them when changing other things. Also notice that an inclusion of your changes
|
272
|
+
cannot be guaranteed before reviewing them.
|
273
|
+
|
274
|
+
The following people were involved in development:
|
250
275
|
|
251
|
-
|
252
|
-
when changing other things on the library. Also notice that I can't promise
|
253
|
-
to include your changes before reviewing them.
|
276
|
+
- Alexander E. Fischer
|
254
277
|
|
255
278
|
License
|
256
279
|
-------
|
257
280
|
|
258
|
-
Copyright Alexander E. Fischer <aef@
|
281
|
+
Copyright Alexander E. Fischer <aef@godobject.net>, 2009-2013
|
259
282
|
|
260
283
|
This file is part of Linebreak.
|
261
284
|
|
data/Rakefile
CHANGED
data/lib/aef/linebreak.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
=begin
|
3
|
-
Copyright Alexander E. Fischer <aef@
|
3
|
+
Copyright Alexander E. Fischer <aef@godobject.net>, 2009-2013
|
4
4
|
|
5
5
|
This file is part of Linebreak.
|
6
6
|
|
@@ -22,9 +22,9 @@ module Aef
|
|
22
22
|
|
23
23
|
# The currently loaded library version
|
24
24
|
#
|
25
|
-
# Using Semantic Versioning (2.0.0
|
25
|
+
# Using Semantic Versioning (2.0.0) rules
|
26
26
|
# @see http://semver.org/
|
27
|
-
VERSION = '2.0
|
27
|
+
VERSION = '2.1.0'.freeze
|
28
28
|
|
29
29
|
end
|
30
30
|
end
|
data/lib/linebreak.rb
CHANGED
data/lib/linebreak/bare.rb
CHANGED
data/linebreak.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
=begin
|
3
|
-
Copyright Alexander E. Fischer <aef@
|
3
|
+
Copyright Alexander E. Fischer <aef@godobject.net>, 2009-2013
|
4
4
|
|
5
5
|
This file is part of Linebreak.
|
6
6
|
|
@@ -19,37 +19,36 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
19
19
|
|
20
20
|
require File.expand_path('../lib/aef/linebreak/version', __FILE__)
|
21
21
|
|
22
|
-
Gem::Specification.new do |
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
s.license = 'ISC'
|
29
|
-
s.summary = 'Easy linebreak system conversion library'
|
30
|
-
s.description = <<-DESCRIPTION
|
22
|
+
Gem::Specification.new do |gem|
|
23
|
+
gem.name = "linebreak"
|
24
|
+
gem.version = Aef::Linebreak::VERSION.dup
|
25
|
+
gem.authors = ["Alexander E. Fischer"]
|
26
|
+
gem.email = ["aef@godobject.net"]
|
27
|
+
gem.description = <<-DESCRIPTION
|
31
28
|
Linebreak is a Ruby library for conversion of text between linebreak encoding
|
32
|
-
formats of
|
29
|
+
formats of Unix, Windows or Mac.
|
33
30
|
DESCRIPTION
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
31
|
+
gem.summary = "Easy linebreak system conversion library"
|
32
|
+
gem.homepage = "https://aef.name/"
|
33
|
+
gem.license = "ISC"
|
34
|
+
gem.has_rdoc = "yard"
|
35
|
+
gem.extra_rdoc_files = ["HISTORY.md", "LICENSE.md"]
|
36
|
+
gem.rubyforge_project = nil
|
37
|
+
|
38
|
+
gem.files = `git ls-files`.split($\)
|
39
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
40
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
41
|
+
gem.require_paths = ["lib"]
|
42
|
+
|
43
|
+
gem.required_ruby_version = '>= 1.9.3'
|
44
|
+
|
45
|
+
gem.add_development_dependency('rake')
|
46
|
+
gem.add_development_dependency('bundler')
|
47
|
+
gem.add_development_dependency('rspec', '~> 2.14.1')
|
48
|
+
gem.add_development_dependency('simplecov')
|
49
|
+
gem.add_development_dependency('pry')
|
50
|
+
gem.add_development_dependency('yard')
|
51
|
+
|
52
|
+
gem.cert_chain = "#{ENV['GEM_CERT_CHAIN']}".split(':')
|
53
|
+
gem.signing_key = ENV['GEM_SIGNING_KEY']
|
55
54
|
end
|
data/spec/linebreak_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
=begin
|
3
|
-
Copyright Alexander E. Fischer <aef@
|
3
|
+
Copyright Alexander E. Fischer <aef@godobject.net>, 2009-2013
|
4
4
|
|
5
5
|
This file is part of Linebreak.
|
6
6
|
|
@@ -21,9 +21,16 @@ require 'bundler'
|
|
21
21
|
|
22
22
|
Bundler.setup
|
23
23
|
|
24
|
-
|
25
|
-
|
26
|
-
|
24
|
+
require 'simplecov'
|
25
|
+
require 'coveralls'
|
26
|
+
|
27
|
+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
28
|
+
SimpleCov::Formatter::HTMLFormatter,
|
29
|
+
Coveralls::SimpleCov::Formatter
|
30
|
+
]
|
31
|
+
|
32
|
+
SimpleCov.start do
|
33
|
+
add_filter "/spec/"
|
27
34
|
end
|
28
35
|
|
29
36
|
require 'rspec'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: linebreak
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,127 +9,146 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain:
|
12
|
-
- !
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
lCB4ih+sB2AI2IUiYBeoCGctXdBQ020prqop/oTQEudzFk/gyQ686lp06HdLRt+O
|
41
|
-
|
42
|
-
HoQjTIab8vmfgIubjPdIRzokMfHbelvhLi+mQfWVghRhs2jpEfdXbL0w5nNw+trp
|
43
|
-
|
44
|
-
rO70Dw59hduDUOpgpxew+PLbs4vP1tb1QKPG+39C+PZtosbbf1fai0hqYV1txMCx
|
45
|
-
|
46
|
-
55akF+N8NbO6tpVDy6TMagqa10LfEpiQH6dvDHe/xdAqYOCrXKpmqzwu2PI=
|
47
|
-
|
48
|
-
-----END CERTIFICATE-----
|
49
|
-
|
50
|
-
'
|
51
|
-
date: 2012-10-02 00:00:00.000000000 Z
|
12
|
+
- !binary |-
|
13
|
+
LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURLRENDQWhDZ0F3SUJB
|
14
|
+
Z0lCQURBTkJna3Foa2lHOXcwQkFRVUZBREE2TVF3d0NnWURWUVFEREFOaFpX
|
15
|
+
WXgKRlRBVEJnb0praWFKay9Jc1pBRVpGZ1Z5WVhoNWN6RVRNQkVHQ2dtU0pv
|
16
|
+
bVQ4aXhrQVJrV0EyNWxkREFlRncwdwpPVEF5TWpVeU1ETTVNRGhhRncweE1E
|
17
|
+
QXlNalV5TURNNU1EaGFNRG94RERBS0JnTlZCQU1NQTJGbFpqRVZNQk1HCkNn
|
18
|
+
bVNKb21UOGl4a0FSa1dCWEpoZUhsek1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZ
|
19
|
+
RGJtVjBNSUlCSWpBTkJna3EKaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dL
|
20
|
+
Q0FRRUFvWXRqMHFhZDUvTXBiZHR0SVR6QkgwaDFTTmU2ZU83Ugo3cVZlcU5Z
|
21
|
+
dTZxRFFBUTByWWMwSmh1YkpDV1lyWkVKb3JIRUJoVUZVNmNkUWdRT3M3OHdp
|
22
|
+
SmFEZ2tlVTdZZlhCCnEybDEyNWtKOGFIa0ExdWtySzIvRFJ6cDJBSEVtenhI
|
23
|
+
SVlwWFY1LzYzaCtOV2pDUCt1S3ZURUxZc290UzJNS3QKM2Q0M0UwUWFqc1Ba
|
24
|
+
dTJadU5Gd2tyb3FldWU4NzJnTUhVbGRHT1Z5NVd0U2Q5YWp3MnhJL0NvY2lZ
|
25
|
+
Njc0NmRMKwpwWXJpVjNRYVl0Ui9lemVhTHBLQkxzYzVUMVVRMDd0N1hzN21J
|
26
|
+
MjgxdGRtUnZwTGRQNWRRaGp6SW5maW8wQ0p2CjFQZjViWlVqR0cwSzlSVzJH
|
27
|
+
Yi90R1BTWUVFVGlMTXViakg2MU93Qm9vWEtpV1I1Y3M0LzFCUUlEQVFBQm96
|
28
|
+
a3cKTnpBSkJnTlZIUk1FQWpBQU1Bc0dBMVVkRHdRRUF3SUVzREFkQmdOVkhR
|
29
|
+
NEVGZ1FVU1l2amhHMkVXblI1a3g1bApEQWV3WENrSk9WRXdEUVlKS29aSWh2
|
30
|
+
Y05BUUVGQlFBRGdnRUJBQjJyeURiVTRiUXRudW5Ldi9BWHE0Q3VPM0xTCmtp
|
31
|
+
azlYaHllOEUvNWRUY3NnaXRDWkpYQXF4MHJIY0swdTJFSG5qQTVDRGNkRjVK
|
32
|
+
QjdYZ1N2UnJRa0ZXb1cvOUsKbENCNGloK3NCMkFJMklVaVlCZW9DR2N0WGRC
|
33
|
+
UTAyMHBycW9wL29UUUV1ZHpGay9neVE2ODZscDA2SGRMUnQrTwpIb1FqVElh
|
34
|
+
Yjh2bWZnSXVialBkSVJ6b2tNZkhiZWx2aExpK21RZldWZ2hSaHMyanBFZmRY
|
35
|
+
YkwwdzVuTncrdHJwCnJPNzBEdzU5aGR1RFVPcGdweGV3K1BMYnM0dlAxdGIx
|
36
|
+
UUtQRyszOUMrUFp0b3NiYmYxZmFpMGhxWVYxdHhNQ3gKNTVha0YrTjhOYk82
|
37
|
+
dHBWRHk2VE1hZ3FhMTBMZkVwaVFINmR2REhlL3hkQXFZT0NyWEtwbXF6d3Uy
|
38
|
+
UEk9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K
|
39
|
+
date: 2013-10-17 00:00:00.000000000 Z
|
52
40
|
dependencies:
|
53
41
|
- !ruby/object:Gem::Dependency
|
54
|
-
name:
|
55
|
-
requirement:
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
56
44
|
none: false
|
57
45
|
requirements:
|
58
|
-
- -
|
46
|
+
- - ! '>='
|
59
47
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
48
|
+
version: '0'
|
61
49
|
type: :development
|
62
50
|
prerelease: false
|
63
|
-
version_requirements:
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
64
57
|
- !ruby/object:Gem::Dependency
|
65
|
-
name:
|
66
|
-
requirement:
|
58
|
+
name: bundler
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
67
60
|
none: false
|
68
61
|
requirements:
|
69
|
-
- -
|
62
|
+
- - ! '>='
|
70
63
|
- !ruby/object:Gem::Version
|
71
|
-
version: 0
|
64
|
+
version: '0'
|
72
65
|
type: :development
|
73
66
|
prerelease: false
|
74
|
-
version_requirements:
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ! '>='
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
75
73
|
- !ruby/object:Gem::Dependency
|
76
74
|
name: rspec
|
77
|
-
requirement:
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
78
76
|
none: false
|
79
77
|
requirements:
|
80
78
|
- - ~>
|
81
79
|
- !ruby/object:Gem::Version
|
82
|
-
version: 2.
|
80
|
+
version: 2.14.1
|
83
81
|
type: :development
|
84
82
|
prerelease: false
|
85
|
-
version_requirements:
|
83
|
+
version_requirements: !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ~>
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 2.14.1
|
86
89
|
- !ruby/object:Gem::Dependency
|
87
90
|
name: simplecov
|
88
|
-
requirement:
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
89
92
|
none: false
|
90
93
|
requirements:
|
91
|
-
- -
|
94
|
+
- - ! '>='
|
92
95
|
- !ruby/object:Gem::Version
|
93
|
-
version: 0
|
96
|
+
version: '0'
|
94
97
|
type: :development
|
95
98
|
prerelease: false
|
96
|
-
version_requirements:
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
none: false
|
101
|
+
requirements:
|
102
|
+
- - ! '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
97
105
|
- !ruby/object:Gem::Dependency
|
98
106
|
name: pry
|
99
|
-
requirement:
|
107
|
+
requirement: !ruby/object:Gem::Requirement
|
100
108
|
none: false
|
101
109
|
requirements:
|
102
|
-
- -
|
110
|
+
- - ! '>='
|
103
111
|
- !ruby/object:Gem::Version
|
104
|
-
version: 0
|
112
|
+
version: '0'
|
105
113
|
type: :development
|
106
114
|
prerelease: false
|
107
|
-
version_requirements:
|
115
|
+
version_requirements: !ruby/object:Gem::Requirement
|
116
|
+
none: false
|
117
|
+
requirements:
|
118
|
+
- - ! '>='
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
108
121
|
- !ruby/object:Gem::Dependency
|
109
122
|
name: yard
|
110
|
-
requirement:
|
123
|
+
requirement: !ruby/object:Gem::Requirement
|
111
124
|
none: false
|
112
125
|
requirements:
|
113
|
-
- -
|
126
|
+
- - ! '>='
|
114
127
|
- !ruby/object:Gem::Version
|
115
|
-
version: 0
|
128
|
+
version: '0'
|
116
129
|
type: :development
|
117
130
|
prerelease: false
|
118
|
-
version_requirements:
|
131
|
+
version_requirements: !ruby/object:Gem::Requirement
|
132
|
+
none: false
|
133
|
+
requirements:
|
134
|
+
- - ! '>='
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '0'
|
119
137
|
description: ! 'Linebreak is a Ruby library for conversion of text between linebreak
|
120
138
|
encoding
|
121
139
|
|
122
|
-
formats of
|
140
|
+
formats of Unix, Windows or Mac.
|
123
141
|
|
124
142
|
'
|
125
143
|
email:
|
126
|
-
- aef@
|
144
|
+
- aef@godobject.net
|
127
145
|
executables: []
|
128
146
|
extensions: []
|
129
147
|
extra_rdoc_files:
|
130
148
|
- HISTORY.md
|
131
149
|
- LICENSE.md
|
132
150
|
files:
|
151
|
+
- .coveralls.yml
|
133
152
|
- .gitignore
|
134
153
|
- .rspec
|
135
154
|
- .travis.yml
|
@@ -146,7 +165,7 @@ files:
|
|
146
165
|
- linebreak.gemspec
|
147
166
|
- spec/linebreak_spec.rb
|
148
167
|
- spec/spec_helper.rb
|
149
|
-
homepage:
|
168
|
+
homepage: https://aef.name/
|
150
169
|
licenses:
|
151
170
|
- ISC
|
152
171
|
post_install_message:
|
@@ -158,7 +177,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
158
177
|
requirements:
|
159
178
|
- - ! '>='
|
160
179
|
- !ruby/object:Gem::Version
|
161
|
-
version: 1.
|
180
|
+
version: 1.9.3
|
162
181
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
163
182
|
none: false
|
164
183
|
requirements:
|
@@ -167,9 +186,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
167
186
|
version: '0'
|
168
187
|
requirements: []
|
169
188
|
rubyforge_project:
|
170
|
-
rubygems_version: 1.8.
|
189
|
+
rubygems_version: 1.8.24
|
171
190
|
signing_key:
|
172
191
|
specification_version: 3
|
173
192
|
summary: Easy linebreak system conversion library
|
174
|
-
test_files:
|
193
|
+
test_files:
|
194
|
+
- spec/linebreak_spec.rb
|
195
|
+
- spec/spec_helper.rb
|
175
196
|
has_rdoc: yard
|
metadata.gz.sig
CHANGED
Binary file
|