narou 1.2.8 → 1.2.9.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of narou might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d8364479cacd3411e78a7c97af3a7481baa19461
4
- data.tar.gz: 550c34826c79d3f52928e17240d6628af10cb3f0
3
+ metadata.gz: 0e61866692ff792520c16ea417d5aa05035b832d
4
+ data.tar.gz: 8ee839d37a219dfe1d13740fa4b638365ba746f6
5
5
  SHA512:
6
- metadata.gz: c04217754e0c5dfe811ee5c1da20aba6c9d949931d5ba9cef4a934c498df1670c831491db2a83706d9e3c0376d72f1fcad290fd894052c757339ca2ddb9060b6
7
- data.tar.gz: 926a5a493b894fe9fe52a2e27cb690ace1cf2af8d4b1db79da44e865001cca759e2cbc9b3513fafc21b405af2e3521328c04dd9d71e0ef64aaaba0ed75234716
6
+ metadata.gz: 46d4b8560ea3028a4d721fae17a23f895369e2af3dbd9e566967b7d6c13dc83e2b34f1538a9f36b0c756598a7cc979e388d9e012cf7b4b7e95c4793f0138e02d
7
+ data.tar.gz: 44948e893f3ff1d66c38a474b2ea3435d0eb0597a2d79de6edb41e04f8c2c98c4946f91ed993d4c6ec49336dbe53aa0ff7dcf269579647268aa3f0e2a1c2359a
@@ -1,6 +1,10 @@
1
1
  
2
2
  更新履歴 - ChangeLog
3
3
  --------------------
4
+ 2013/xx/xx : **1.2.9**
5
+ * Bug Fix
6
+ - 小説のタイトルに < 及び > が含まれている場合にエラーになっていた問題を修正
7
+
4
8
  2013/07/26 : **1.2.8**
5
9
  * Bug Fix
6
10
  - なろうの仕様変更でタイトルがたまに二重に表示されてしまうバグ(?)に対処
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2013 whiteleaf.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -57,7 +57,7 @@ module Command
57
57
  next unless Helper.confirm("#{title} を#{(@options["with-file"] ? "“完全に”" : "")}削除しますか")
58
58
  end
59
59
  Downloader.remove_novel(target, @options["with-file"])
60
- puts "<green>#{title} を削除しました</green>".termcolor
60
+ puts "<green>#{TermColor.escape(title)} を削除しました</green>".termcolor
61
61
  end
62
62
  end
63
63
 
@@ -74,7 +74,7 @@ module Command
74
74
  end
75
75
  if send_all
76
76
  if device.ebook_file_old?(ebook_path)
77
- puts "<green>ID:#{target} #{titles[target]}</green>".termcolor
77
+ puts "<green>ID:#{target} #{TermColor.escape(titles[target])}</green>".termcolor
78
78
  else
79
79
  next
80
80
  end
@@ -3,7 +3,7 @@
3
3
  # Copyright 2013 whiteleaf. All rights reserved.
4
4
  #
5
5
 
6
- Version = "1.2.8"
6
+ Version = "1.2.9.rc1"
7
7
 
8
8
  cv_path = File.expand_path(File.join(File.dirname(__FILE__), "../commitversion"))
9
9
  if File.exists?(cv_path)
@@ -25,6 +25,7 @@ Encoding.default_external = Encoding::UTF_8
25
25
  Gem::Specification.new do |gem|
26
26
  gem.name = "narou"
27
27
  gem.version = Version
28
+ gem.license = "MIT"
28
29
  gem.authors = ["whiteleaf7"]
29
30
  gem.email = ["2nd.leaf@gmail.com"]
30
31
  gem.homepage = "http://whiteleaf.hatenablog.com/"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: narou
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.8
4
+ version: 1.2.9.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - whiteleaf7
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-25 00:00:00.000000000 Z
11
+ date: 2013-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: termcolor
@@ -36,6 +36,7 @@ files:
36
36
  - .gitignore
37
37
  - ChangeLog.md
38
38
  - Gemfile
39
+ - LICENSE.txt
39
40
  - README.md
40
41
  - Rakefile
41
42
  - bin/narou
@@ -114,7 +115,8 @@ files:
114
115
  - webnovel/novel18.syosetu.com.yaml
115
116
  - commitversion
116
117
  homepage: http://whiteleaf.hatenablog.com/
117
- licenses: []
118
+ licenses:
119
+ - MIT
118
120
  metadata: {}
119
121
  post_install_message: |
120
122
  *******************************************************************************
@@ -137,9 +139,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
137
139
  version: 1.9.3
138
140
  required_rubygems_version: !ruby/object:Gem::Requirement
139
141
  requirements:
140
- - - '>='
142
+ - - '>'
141
143
  - !ruby/object:Gem::Version
142
- version: '0'
144
+ version: 1.3.1
143
145
  requirements: []
144
146
  rubyforge_project:
145
147
  rubygems_version: 2.0.0