ruby_jisho 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 35ddea43216caf20e4ed6fbb03ec4c0b960cd0ce
4
- data.tar.gz: 904c8952ed59616abc041bef93dee1cff5813efa
2
+ SHA256:
3
+ metadata.gz: 3e6ccf0e8dcd846a8d137fe300dcd0bea0fbd2a5434f1e7c919c07abe92b8c76
4
+ data.tar.gz: 8d71069cf11bad5efaf7d7a9f37ba00d24428bd77de675e488145f8eb489f383
5
5
  SHA512:
6
- metadata.gz: cbdc70492e084a2ba1f9a147979560167d173bf3b85c12ed7c1ce0e2118ed26e16abeef331fe82ed026a0d8a26f018483e10d4212461b5033b00744e1b964573
7
- data.tar.gz: 33f100e86b302bb058fee30634db22b33c254e0e32dd2495d41003ad1e330a51a1d7977ec878f8e762f0e032260ed7a79845259c2697285aae70166578b6ffbc
6
+ metadata.gz: 6f0d602967789df7e473aac087d5fa72e87fb913db0047b4d3231ed6084a8e07de1ade071e52f1b91adcfb4b5dfe307df814c98df905b78fbaf2c306763f3a7c
7
+ data.tar.gz: 8da3ad92b587b16359812eadf43cb8d16ea7f26f85019ce068835146cee731430d87de07f19e98b6e6a2859fc2c7851d519715e259cafd562628cfe34702ffc0
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Liss McCabe
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/lib/ruby_jisho.rb CHANGED
@@ -1,4 +1,3 @@
1
- require 'ruby_jisho/version'
2
1
  require 'ruby_jisho/search'
3
2
  require 'ruby_jisho/result'
4
3
  require 'ruby_jisho/sense'
data/ruby_jisho.gemspec CHANGED
@@ -1,29 +1,24 @@
1
1
  # coding: utf-8
2
2
  # frozen_string_literal: true
3
3
 
4
- lib = File.expand_path('../lib', __FILE__)
5
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
- require 'ruby_jisho/version'
7
-
8
4
  Gem::Specification.new do |spec|
9
5
  spec.name = 'ruby_jisho'
10
- spec.version = RubyJisho::VERSION
6
+ spec.version = '0.1.1'
11
7
  spec.authors = ['Liss McCabe']
12
8
  spec.email = ['liss@eristiccode.com']
13
9
 
14
10
  spec.summary = 'Gem adapter for the Jisho search API'
15
11
  spec.homepage = 'https://github.com/dysnomian/ruby_jisho'
12
+ spec.license = 'MIT'
16
13
 
17
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
- f.match(%r{^(test|spec|features)/})
14
+ spec.files = `git ls-files -z`.split("\0").reject do |f|
15
+ f.match(%r{^(bin|spec)/})
19
16
  end
20
17
 
21
- spec.require_paths = ['lib']
22
-
23
18
  spec.add_development_dependency 'bundler', '~> 1.14'
24
19
  spec.add_development_dependency 'rake', '~> 10.0'
25
20
  spec.add_development_dependency 'rspec', '~> 3.0'
26
- spec.add_development_dependency 'rubocop', '~> 0.42'
21
+ spec.add_development_dependency 'rubocop', '~> 0.49'
27
22
  spec.add_development_dependency 'pry', '~> 0.10'
28
23
  spec.add_dependency 'faraday', '~> 0.9'
29
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_jisho
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liss McCabe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-20 00:00:00.000000000 Z
11
+ date: 2018-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '0.42'
61
+ version: '0.49'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '0.42'
68
+ version: '0.49'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: pry
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -107,19 +107,18 @@ files:
107
107
  - ".rubocop.yml"
108
108
  - ".travis.yml"
109
109
  - Gemfile
110
+ - LICENSE
110
111
  - README.md
111
112
  - Rakefile
112
- - bin/console
113
- - bin/setup
114
113
  - lib/ruby_jisho.rb
115
114
  - lib/ruby_jisho/result.rb
116
115
  - lib/ruby_jisho/results.rb
117
116
  - lib/ruby_jisho/search.rb
118
117
  - lib/ruby_jisho/sense.rb
119
- - lib/ruby_jisho/version.rb
120
118
  - ruby_jisho.gemspec
121
119
  homepage: https://github.com/dysnomian/ruby_jisho
122
- licenses: []
120
+ licenses:
121
+ - MIT
123
122
  metadata: {}
124
123
  post_install_message:
125
124
  rdoc_options: []
@@ -137,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
136
  version: '0'
138
137
  requirements: []
139
138
  rubyforge_project:
140
- rubygems_version: 2.5.2
139
+ rubygems_version: 2.7.6
141
140
  signing_key:
142
141
  specification_version: 4
143
142
  summary: Gem adapter for the Jisho search API
data/bin/console DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'ruby_jisho'
5
-
6
- require 'pry'
7
- Pry.start
data/bin/setup DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
@@ -1,3 +0,0 @@
1
- module RubyJisho
2
- VERSION = '0.1.0'.freeze
3
- end