sekka 1.7.1 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 68e39f2abd18a04dded3aa414d166935798ea4b7
4
- data.tar.gz: dd3c4f863160bc9d7d7310f5783f1ffbfcfdeba3
3
+ metadata.gz: 7862206715c3be6515eb94548f4b9b1319253f20
4
+ data.tar.gz: 8610db12f9edecd3743939fd7bd12e6a981dac4c
5
5
  SHA512:
6
- metadata.gz: a476ff53c1f26fe54f027916db088c7acbf4bad6a26874869f33e3b57045de9ff280c3364ade55af903846e68ef966faf9e9b032e31da3134dc8e10662d4ff0b
7
- data.tar.gz: e74a861ddaaf1177b97f75f58a4236946c694375da1aee3c050965927d5751f218ecfdb6fcea5a17a885fa229c85788594c440caeb443bf50a31dbd3a61e16b4
6
+ metadata.gz: 4623d9554fb19649da1fb14a9b8943a3859192eb14fbc16e28f8cac35ef796e4748f4283adaebb009522d1c0edebb8d2e247f388209e209e8a3329c23426323a
7
+ data.tar.gz: 7a58c0d685e0691be63801c11c96f825b0d36a32c961fd64ab50a6d3e8bdfa90c70490b2ec284ad7a5607efb30678392d6bf60b1dfd20e913cc75cab5df31e12
data/Rakefile CHANGED
@@ -10,6 +10,9 @@
10
10
  # 4. rake release
11
11
  # 5. gem push pkg/sekka-x.x.x.gem ( need gem version 1.3.6 or higer. Please "gem update --system" to update )
12
12
  #
13
+ # Release jar one-binary Engineering:
14
+ # 1. cd warbler ; make
15
+ #
13
16
  # Enviroment Variables:
14
17
  # Please select from
15
18
  # DB=gdbm
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 1
3
- :minor: 7
4
- :patch: 1
3
+ :minor: 8
4
+ :patch: 0
@@ -124,7 +124,7 @@ def downloadFile( targetfile, sumfile, urlurl, sumurl )
124
124
  # 辞書のURLをダウンロードする
125
125
  dl = Downloader.new( urlurl )
126
126
  dl.download()
127
- targeturl = dl.getBody().chomp
127
+ targeturl = dl.getBody().chomp.chomp
128
128
  dl.clearBody()
129
129
 
130
130
  # md5記載ファイルをダウンロード
@@ -135,7 +135,7 @@ def downloadFile( targetfile, sumfile, urlurl, sumurl )
135
135
  dl.clearBody()
136
136
 
137
137
  # 辞書ファイル本体をダウンロード
138
- STDERR.printf( " downloading URL : %s ...\n", targeturl );
138
+ STDERR.printf( " downloading URL : [%s] ...\n", targeturl );
139
139
  dl = Downloader.new( targeturl )
140
140
  dl.downloadToFile( targetfile )
141
141
  dl.clearBody()
@@ -3,7 +3,7 @@
3
3
  ;; Copyright (C) 2010-2014 Kiyoka Nishiyama
4
4
  ;;
5
5
  ;; Author: Kiyoka Nishiyama <kiyoka@sumibi.org>
6
- ;; Version: 1.7.1 ;;SEKKA-VERSION
6
+ ;; Version: 1.8.0 ;;SEKKA-VERSION
7
7
  ;; Keywords: ime, skk, japanese
8
8
  ;; Package-Requires: ((cl-lib "0.3") (concurrent "0.3.1") (popup "0.5.2"))
9
9
  ;; URL: https://github.com/kiyoka/sekka
@@ -57,7 +57,7 @@
57
57
  :group 'input-method
58
58
  :group 'Japanese)
59
59
 
60
- (defcustom sekka-server-url "http://localhost:12929/"
60
+ (defcustom sekka-server-url "http://127.0.0.1:12929/"
61
61
  "SekkaサーバーのURLを指定する。"
62
62
  :type 'string
63
63
  :group 'sekka)
@@ -1756,7 +1756,7 @@ point から行頭方向に同種の文字列が続く間を漢字変換しま
1756
1756
  (setq default-input-method "japanese-sekka")
1757
1757
 
1758
1758
  (defconst sekka-version
1759
- "1.7.1" ;;SEKKA-VERSION
1759
+ "1.8.0" ;;SEKKA-VERSION
1760
1760
  )
1761
1761
  (defun sekka-version (&optional arg)
1762
1762
  "入力モード変更"
@@ -8,3 +8,4 @@ gem "nendo"
8
8
  gem "json"
9
9
  gem "rake"
10
10
  gem "ruby-progressbar"
11
+ gem "warbler", "1.4.10"
@@ -43,11 +43,27 @@ class Downloader
43
43
  @body = nil
44
44
  end
45
45
 
46
+ def httpInstance(scheme,host,port)
47
+ if scheme == 'https'
48
+ http_proxy = ENV['https_proxy']
49
+ else
50
+ http_proxy = ENV['http_proxy']
51
+ end
52
+ if http_proxy
53
+ (p_host,p_port) = http_proxy.split(':')
54
+ proxy_class = Net::HTTP::Proxy(p_host,p_port.to_i)
55
+ http = proxy_class.new(host,port)
56
+ else
57
+ http = Net::HTTP.new(host,port)
58
+ end
59
+ return http
60
+ end
61
+
46
62
  def download()
47
63
  url = URI.parse(@url_str)
48
64
  if(url)
49
65
  req = Net::HTTP::Get.new(url.path)
50
- http = Net::HTTP.new(url.host,url.port)
66
+ http = httpInstance(url.scheme,url.host,url.port)
51
67
  if url.scheme == 'https'
52
68
  http.use_ssl = true
53
69
  end
@@ -59,8 +75,8 @@ class Downloader
59
75
 
60
76
  def downloadToFile(path)
61
77
  url = URI.parse(@url_str)
62
- req = Net::HTTP::Get.new url.path
63
- http = Net::HTTP.new(url.host, url.port)
78
+ req = Net::HTTP::Get.new(url.path)
79
+ http = httpInstance(url.scheme,url.host,url.port)
64
80
  if url.scheme == 'https'
65
81
  http.use_ssl = true
66
82
  end
@@ -1,4 +1,4 @@
1
1
  class SekkaVersion
2
- def self.version() "1.7.1" end
2
+ def self.version() "1.8.0" end
3
3
  def self.dictVersion() "1.6.2" end
4
4
  end
@@ -41,7 +41,6 @@ require 'uri'
41
41
  require 'date'
42
42
  require 'sekkaconfig'
43
43
  require 'sekka/sekkaversion'
44
- require 'memcache'
45
44
 
46
45
  module SekkaServer
47
46
  class Server
@@ -67,24 +66,7 @@ module SekkaServer
67
66
  SekkaServer::Config.dictSource,
68
67
  SekkaServer::Config.cacheSource )
69
68
 
70
- # connection check to memcached
71
- fail_message = "sekka-server: failed to access memcached.\n"
72
- begin
73
- @core.flushCacheServer(@initialCachesv)
74
- rescue MemCache::MemCacheError
75
- STDERR.printf(fail_message)
76
- exit(1)
77
- rescue Timeout
78
- STDERR.printf(fail_message)
79
- exit(1)
80
- rescue SocketError
81
- STDERR.printf(fail_message)
82
- exit(1)
83
- rescue Errno::ECONNREFUSED
84
- STDERR.printf(fail_message)
85
- exit(1)
86
- end
87
-
69
+ @core.flushCacheServer(@initialCachesv)
88
70
  @cachesv = @initialCachesv
89
71
  @downTime = DateTime.now
90
72
 
@@ -238,8 +220,6 @@ module SekkaServer
238
220
  @core.writeToString(obj)
239
221
  end
240
222
  end
241
- rescue MemCache::MemCacheError
242
- result = "sekka-server: memcached server is down (or may be offline)"
243
223
  rescue Timeout
244
224
  result = "sekka-server: Timeout to request memcached server #{_orRedis} (or may be offline)"
245
225
  rescue SocketError
@@ -0,0 +1 @@
1
+ /config
@@ -0,0 +1,5 @@
1
+ /lib
2
+ /sekka-server-1.7.1.jar
3
+ /sekka-server-1.8.0.jar
4
+ /sekka-server.jar
5
+ /vendor
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+ source "https://rubygems.org"
3
+
4
+ gem "warbler", "1.4.10"
5
+ gem "eventmachine"
6
+ gem "distributed-trie"
7
+ gem "memcachepod"
8
+ gem "nendo"
9
+ gem "json"
10
+ gem "ruby-progressbar"
11
+ gem "rack"
@@ -0,0 +1,41 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ RubyInline (3.12.4)
5
+ ZenTest (~> 4.3)
6
+ ZenTest (4.11.1)
7
+ distributed-trie (0.8.0)
8
+ fuzzy-string-match (>= 0.9.3)
9
+ eventmachine (1.2.3-java)
10
+ fuzzy-string-match (1.0.1)
11
+ RubyInline (>= 3.8.6)
12
+ jruby-jars (1.7.27)
13
+ jruby-rack (1.1.20)
14
+ json (2.1.0-java)
15
+ memcachepod (0.0.2)
16
+ nendo (0.8.0)
17
+ rack (1.6.8)
18
+ rake (12.0.0)
19
+ ruby-progressbar (1.8.1)
20
+ rubyzip (1.2.1)
21
+ warbler (1.4.10)
22
+ jruby-jars (>= 1.5.6, < 2.0)
23
+ jruby-rack (>= 1.1.1, < 1.3)
24
+ rake (>= 0.9.6)
25
+ rubyzip (>= 0.9, < 1.3)
26
+
27
+ PLATFORMS
28
+ java
29
+
30
+ DEPENDENCIES
31
+ distributed-trie
32
+ eventmachine
33
+ json
34
+ memcachepod
35
+ nendo
36
+ rack
37
+ ruby-progressbar
38
+ warbler (= 1.4.10)
39
+
40
+ BUNDLED WITH
41
+ 1.15.3
@@ -0,0 +1,18 @@
1
+
2
+ VERSION := $(shell ruby -I ../lib -rsekka/sekkaversion.rb -e 'puts SekkaVersion.version')
3
+
4
+ sekka-server.jar : ./app/sekka-server.rb bin/init.rb Makefile
5
+ rm -rf ./lib
6
+ mkdir -p ./lib
7
+ cp -r ../lib/* ./lib
8
+ bundle exec warble jar .
9
+ /bin/cp sekka-server.jar sekka-server-${VERSION}.jar
10
+
11
+ ./app/sekka-server.rb : ../bin/sekka-server
12
+ cp -f ../bin/sekka-server ./app/sekka-server.rb
13
+
14
+ rackup:
15
+ java -jar sekka-server.jar
16
+
17
+ bundle:
18
+ bundle install --path vendor/bundle
@@ -0,0 +1 @@
1
+ /sekka-server.rb
@@ -0,0 +1 @@
1
+ /sekka-server.rb
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../"))
3
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../app/"))
4
+
5
+ Dir.glob(File.expand_path('vendor/bundle/jruby/*/gems/*/lib')).each{|path|
6
+ $LOAD_PATH << path if !$LOAD_PATH.include?(path)
7
+ }
8
+
9
+ java_import 'java.lang.System'
10
+ java_import 'javax.swing.JOptionPane'
11
+
12
+ def console_exist?
13
+ console = System.console()
14
+ if console.nil?
15
+ false
16
+ else
17
+ true
18
+ end
19
+ end
20
+
21
+ if console_exist?
22
+ ENV.delete('SEKKA_DB')
23
+ require 'app/sekka-server'
24
+ else
25
+ require 'sekka/sekkaversion.rb'
26
+ JOptionPane.showMessageDialog(nil, 'consoleが存在しません。 コンソールで java -jar sekka-server-' + SekkaVersion.version + '.jar を実行してください')
27
+ end
@@ -0,0 +1,183 @@
1
+ # Disable Rake-environment-task framework detection by uncommenting/setting to false
2
+ # Warbler.framework_detection = false
3
+
4
+ # Warbler web application assembly configuration file
5
+ Warbler::Config.new do |config|
6
+ # Features: additional options controlling how the jar is built.
7
+ # Currently the following features are supported:
8
+ # - gemjar: package the gem repository in a jar file in WEB-INF/lib
9
+ # - executable: embed a web server and make the war executable
10
+ # - compiled: compile .rb files to .class files
11
+ # config.features = %w(gemjar)
12
+
13
+ # Application directories to be included in the webapp.
14
+ config.dirs = %w(bin config app lib)
15
+
16
+ # Additional files/directories to include, above those in config.dirs
17
+ # config.includes = FileList["db"]
18
+
19
+ # Additional files/directories to exclude
20
+ # config.excludes = FileList["lib/tasks/*"]
21
+
22
+ # Additional Java .jar files to include. Note that if .jar files are placed
23
+ # in lib (and not otherwise excluded) then they need not be mentioned here.
24
+ # JRuby and JRuby-Rack are pre-loaded in this list. Be sure to include your
25
+ # own versions if you directly set the value
26
+ # config.java_libs += FileList["lib/java/*.jar"]
27
+
28
+ # Loose Java classes and miscellaneous files to be included.
29
+ # config.java_classes = FileList["target/classes/**.*"]
30
+
31
+ # One or more pathmaps defining how the java classes should be copied into
32
+ # the archive. The example pathmap below accompanies the java_classes
33
+ # configuration above. See http://rake.rubyforge.org/classes/String.html#M000017
34
+ # for details of how to specify a pathmap.
35
+ # config.pathmaps.java_classes << "%{target/classes/,}p"
36
+
37
+ # Bundler support is built-in. If Warbler finds a Gemfile in the
38
+ # project directory, it will be used to collect the gems to bundle
39
+ # in your application. If you wish to explicitly disable this
40
+ # functionality, uncomment here.
41
+ # config.bundler = false
42
+
43
+ # An array of Bundler groups to avoid including in the war file.
44
+ # Defaults to ["development", "test", "assets"].
45
+ # config.bundle_without = []
46
+
47
+ # Other gems to be included. If you don't use Bundler or a gemspec
48
+ # file, you need to tell Warbler which gems your application needs
49
+ # so that they can be packaged in the archive.
50
+ # For Rails applications, the Rails gems are included by default
51
+ # unless the vendor/rails directory is present.
52
+ # config.gems += ["activerecord-jdbcmysql-adapter", "jruby-openssl"]
53
+ # config.gems << "tzinfo"
54
+
55
+ # Uncomment this if you don't want to package rails gem.
56
+ # config.gems -= ["rails"]
57
+
58
+ # The most recent versions of gems are used.
59
+ # You can specify versions of gems by using a hash assignment:
60
+ # config.gems["rails"] = "2.3.10"
61
+
62
+ # You can also use regexps or Gem::Dependency objects for flexibility or
63
+ # finer-grained control.
64
+ # config.gems << /^merb-/
65
+ # config.gems << Gem::Dependency.new("merb-core", "= 0.9.3")
66
+
67
+ # Include gem dependencies not mentioned specifically. Default is
68
+ # true, uncomment to turn off.
69
+ # config.gem_dependencies = false
70
+
71
+ # Array of regular expressions matching relative paths in gems to be
72
+ # excluded from the war. Defaults to empty, but you can set it like
73
+ # below, which excludes test files.
74
+ # config.gem_excludes = [/^(test|spec)\//]
75
+
76
+ # Pathmaps for controlling how application files are copied into the archive
77
+ # config.pathmaps.application = ["WEB-INF/%p"]
78
+
79
+ # Name of the archive (without the extension). Defaults to the basename
80
+ # of the project directory.
81
+ config.jar_name = "sekka-server"
82
+
83
+ # File extension for the archive. Defaults to either 'jar' or 'war'.
84
+ # config.jar_extension = "jar"
85
+
86
+ # Destionation for the created archive. Defaults to project's root directory.
87
+ # config.autodeploy_dir = "dist/"
88
+
89
+ # Name of the MANIFEST.MF template for the war file. Defaults to a simple
90
+ # MANIFEST.MF that contains the version of Warbler used to create the war file.
91
+ # config.manifest_file = "config/MANIFEST.MF"
92
+
93
+ # When using the 'compiled' feature and specified, only these Ruby
94
+ # files will be compiled. Default is to compile all \.rb files in
95
+ # the application.
96
+ # config.compiled_ruby_files = FileList['app/**/*.rb']
97
+
98
+ # Determines if ruby files in supporting gems will be compiled.
99
+ # Ignored unless compile feature is used.
100
+ # config.compile_gems = false
101
+
102
+ # When set it specify the bytecode version for compiled class files
103
+ # config.bytecode_version = "1.6"
104
+
105
+ # When set to true, Warbler will override the value of ENV['GEM_HOME'] even it
106
+ # has already been set. When set to false it will use any existing value of
107
+ # GEM_HOME if it is set.
108
+ # config.override_gem_home = true
109
+
110
+ # Allows for specifing custom executables
111
+ # config.executable = ["rake", "bin/rake"]
112
+
113
+ # Sets default (prefixed) parameters for the executables
114
+ # config.executable_params = "do:something"
115
+
116
+ # If set to true, moves jar files into WEB-INF/lib. Prior to version 1.4.2 of Warbler this was done
117
+ # by default. But since 1.4.2 this config defaults to false. It may need to be set to true for
118
+ # web servers that do not explode the WAR file.
119
+ # Alternatively, this option can be set to a regular expression, which will
120
+ # act as a jar selector -- only jar files that match the pattern will be
121
+ # included in the archive.
122
+ # config.move_jars_to_webinf_lib = false
123
+
124
+ # === War files only below here ===
125
+
126
+ # Path to the pre-bundled gem directory inside the war file. Default
127
+ # is 'WEB-INF/gems'. Specify path if gems are already bundled
128
+ # before running Warbler. This also sets 'gem.path' inside web.xml.
129
+ # config.gem_path = "WEB-INF/vendor/bundler_gems"
130
+
131
+ # Files for WEB-INF directory (next to web.xml). This contains
132
+ # web.xml by default. If there is an .erb-File it will be processed
133
+ # with webxml-config. You may want to exclude this file via
134
+ # config.excludes.
135
+ # config.webinf_files += FileList["jboss-web.xml"]
136
+
137
+ # Files to be included in the root of the webapp. Note that files in public
138
+ # will have the leading 'public/' part of the path stripped during staging.
139
+ # config.public_html = FileList["public/**/*", "doc/**/*"]
140
+
141
+ # Pathmaps for controlling how public HTML files are copied into the .war
142
+ # config.pathmaps.public_html = ["%{public/,}p"]
143
+
144
+ # Embedded webserver to use with the 'executable' feature. Currently supported
145
+ # webservers are:
146
+ # * <tt>winstone</tt> (default) - Winstone 0.9.10 from sourceforge
147
+ # * <tt>jenkins-ci.winstone</tt> - Improved Winstone from Jenkins CI
148
+ # * <tt>jetty</tt> - Embedded Jetty from Eclipse
149
+ # config.webserver = 'jetty'
150
+
151
+ # Value of RAILS_ENV for the webapp -- default as shown below
152
+ # config.webxml.rails.env = ENV['RAILS_ENV'] || 'production'
153
+
154
+ # Application booter to use, one of :rack, :rails, or :merb (autodetected by default)
155
+ # config.webxml.booter = :rails
156
+
157
+ # Set JRuby to run in 1.9 mode.
158
+ # config.webxml.jruby.compat.version = "1.9"
159
+
160
+ # When using the :rack booter, "Rackup" script to use.
161
+ # - For 'rackup.path', the value points to the location of the rackup
162
+ # script in the web archive file. You need to make sure this file
163
+ # gets included in the war, possibly by adding it to config.includes
164
+ # or config.webinf_files above.
165
+ # - For 'rackup', the rackup script you provide as an inline string
166
+ # is simply embedded in web.xml.
167
+ # The script is evaluated in a Rack::Builder to load the application.
168
+ # Examples:
169
+ # config.webxml.rackup.path = 'WEB-INF/hello.ru'
170
+ # config.webxml.rackup = %{require './lib/demo'; run Rack::Adapter::Camping.new(Demo)}
171
+ # config.webxml.rackup = require 'cgi' && CGI::escapeHTML(File.read("config.ru"))
172
+
173
+ # Control the pool of Rails runtimes. Leaving unspecified means
174
+ # the pool will grow as needed to service requests. It is recommended
175
+ # that you fix these values when running a production server!
176
+ # If you're using threadsafe! mode, you probably don't want to set these values,
177
+ # since 1 runtime(default for threadsafe mode) will be enough.
178
+ # config.webxml.jruby.min.runtimes = 2
179
+ # config.webxml.jruby.max.runtimes = 4
180
+
181
+ # JNDI data source name
182
+ # config.webxml.jndi = 'jdbc/rails'
183
+ end
metadata CHANGED
@@ -1,128 +1,129 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sekka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kiyoka Nishiyama
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-25 00:00:00.000000000 Z
11
+ date: 2017-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
+ name: eventmachine
14
15
  requirement: !ruby/object:Gem::Requirement
15
16
  requirements:
16
17
  - - "~>"
17
18
  - !ruby/object:Gem::Version
18
19
  version: '1.0'
19
- name: eventmachine
20
- prerelease: false
21
20
  type: :runtime
21
+ prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.0'
27
27
  - !ruby/object:Gem::Dependency
28
+ name: memcache-client
28
29
  requirement: !ruby/object:Gem::Requirement
29
30
  requirements:
30
31
  - - "~>"
31
32
  - !ruby/object:Gem::Version
32
33
  version: '1.8'
33
- name: memcache-client
34
- prerelease: false
35
34
  type: :runtime
35
+ prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.8'
41
41
  - !ruby/object:Gem::Dependency
42
+ name: nendo
42
43
  requirement: !ruby/object:Gem::Requirement
43
44
  requirements:
44
45
  - - "~>"
45
46
  - !ruby/object:Gem::Version
46
47
  version: 0.8.0
47
- name: nendo
48
- prerelease: false
49
48
  type: :runtime
49
+ prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.8.0
55
55
  - !ruby/object:Gem::Dependency
56
+ name: distributed-trie
56
57
  requirement: !ruby/object:Gem::Requirement
57
58
  requirements:
58
59
  - - '='
59
60
  - !ruby/object:Gem::Version
60
61
  version: 0.8.0
61
- name: distributed-trie
62
- prerelease: false
63
62
  type: :runtime
63
+ prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.8.0
69
69
  - !ruby/object:Gem::Dependency
70
+ name: rack
70
71
  requirement: !ruby/object:Gem::Requirement
71
72
  requirements:
72
73
  - - "~>"
73
74
  - !ruby/object:Gem::Version
74
75
  version: '1.5'
75
- name: rack
76
- prerelease: false
77
76
  type: :runtime
77
+ prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '1.5'
83
83
  - !ruby/object:Gem::Dependency
84
+ name: ruby-progressbar
84
85
  requirement: !ruby/object:Gem::Requirement
85
86
  requirements:
86
87
  - - "~>"
87
88
  - !ruby/object:Gem::Version
88
89
  version: '1.4'
89
- name: ruby-progressbar
90
- prerelease: false
91
90
  type: :runtime
91
+ prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '1.4'
97
97
  - !ruby/object:Gem::Dependency
98
+ name: bundler
98
99
  requirement: !ruby/object:Gem::Requirement
99
100
  requirements:
100
101
  - - "~>"
101
102
  - !ruby/object:Gem::Version
102
103
  version: '1.7'
103
- name: bundler
104
- prerelease: false
105
104
  type: :development
105
+ prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: '1.7'
111
111
  - !ruby/object:Gem::Dependency
112
+ name: rake
112
113
  requirement: !ruby/object:Gem::Requirement
113
114
  requirements:
114
115
  - - "~>"
115
116
  - !ruby/object:Gem::Version
116
117
  version: '10.0'
117
- name: rake
118
- prerelease: false
119
118
  type: :development
119
+ prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: '10.0'
125
- description: Sekka is a SKK like input method. Sekka server provides REST Based API. If you are SKK user, let's try it.
125
+ description: Sekka is a SKK like input method. Sekka server provides REST Based API.
126
+ If you are SKK user, let's try it.
126
127
  email:
127
128
  - kiyoka@sumibi.org
128
129
  executables:
@@ -249,11 +250,20 @@ files:
249
250
  - tool/MapDBImpoter/.classpath
250
251
  - tool/MapDBImpoter/.project
251
252
  - tool/MapDBImpoter/src/MapDBImporter.java
253
+ - warbler/.bundle/.gitignore
254
+ - warbler/.gitignore
255
+ - warbler/Gemfile
256
+ - warbler/Gemfile.lock
257
+ - warbler/Makefile
258
+ - warbler/app/.gitignore
259
+ - warbler/bin/.gitignore
260
+ - warbler/bin/init.rb
261
+ - warbler/config/warble.rb
252
262
  homepage: http://github.com/kiyoka/sekka
253
263
  licenses:
254
264
  - New BSD
255
265
  metadata: {}
256
- post_install_message:
266
+ post_install_message:
257
267
  rdoc_options: []
258
268
  require_paths:
259
269
  - lib
@@ -268,9 +278,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
268
278
  - !ruby/object:Gem::Version
269
279
  version: '0'
270
280
  requirements: []
271
- rubyforge_project:
272
- rubygems_version: 2.4.8
273
- signing_key:
281
+ rubyforge_project:
282
+ rubygems_version: 2.6.11
283
+ signing_key:
274
284
  specification_version: 4
275
285
  summary: Sekka is a SKK like input method.
276
286
  test_files: