nature_remo 0.2.2 → 0.2.3

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
  SHA256:
3
- metadata.gz: bb50bdebd34cc875e2cf98003aad3b543fdd37cf26311bb993f57accd405679b
4
- data.tar.gz: 59fcc5b9058d15603910ef5483dccac5df1b8906dcbec7b1a58d28088e3e4404
3
+ metadata.gz: 44486974bfab637d8b7483fe472ae5de4185d031b3ea86163d28de7bdba0229d
4
+ data.tar.gz: dbff1084e523d3fcfe0f2e45f6a323296cd79d324758c50cba0da538338d40c5
5
5
  SHA512:
6
- metadata.gz: 711cae411e7aef044eadf21a5b617ceb7ace321798e61c9ccc04daff5b3ef9c4dcd3e2ef6294d27986ebaf98c3230d2950ad31f83c999be9800df90439530460
7
- data.tar.gz: cfaf3d488257724a554a7718ec9a4b174ce41f2a34d8e41df132758f0e72893aa1948e58cf0967f2aad6c7c48760caa0530e410f3a9ce05bbbc9bf7ebe760edf
6
+ metadata.gz: 000e64d4bddeaa1abf2e0803da4d44131097d36be43e17bf7a5e74aa73663d47bc15559b1c57db52ba3ca8652f38c84009629668b4af139829c4d14b5ddbc929
7
+ data.tar.gz: 8e5049dac89ee5b8d306a8fa3ad7376fbad50af65abafec6a3e79c1aa607607e42970a360c73b6b4db6d35b47480addb580c3f48a4315e7992ef68cca56d14af
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+
5
+ ---
6
+
7
+ **Is your feature request related to a problem? Please describe.**
8
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9
+
10
+ **Describe the solution you'd like**
11
+ A clear and concise description of what you want to happen.
12
+
13
+ **Describe alternatives you've considered**
14
+ A clear and concise description of any alternative solutions or features you've considered.
15
+
16
+ **Additional context**
17
+ Add any other context or screenshots about the feature request here.
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # NatureRemo
2
2
 
3
3
  [![Build Status](https://travis-ci.org/ichi-t/nature_remo.svg?branch=master)](https://travis-ci.org/ichi-t/nature_remo)
4
+ [![Gem Version](https://badge.fury.io/rb/nature_remo.svg)](https://badge.fury.io/rb/nature_remo)
4
5
 
5
6
  Nature Remo API client
6
7
 
@@ -1,3 +1,3 @@
1
1
  module NatureRemo
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nature_remo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichi-t
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-25 00:00:00.000000000 Z
11
+ date: 2018-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -98,12 +98,11 @@ description:
98
98
  email:
99
99
  - taisuke_ichimura@icloud.com
100
100
  executables:
101
- - console
102
101
  - natureremo
103
- - setup
104
102
  extensions: []
105
103
  extra_rdoc_files: []
106
104
  files:
105
+ - ".github/ISSUE_TEMPLATE/feature_request.md"
107
106
  - ".gitignore"
108
107
  - ".travis.yml"
109
108
  - CODE_OF_CONDUCT.md
@@ -111,9 +110,7 @@ files:
111
110
  - LICENSE.txt
112
111
  - README.md
113
112
  - Rakefile
114
- - bin/console
115
113
  - bin/natureremo
116
- - bin/setup
117
114
  - lib/nature_remo.rb
118
115
  - lib/nature_remo/cli.rb
119
116
  - lib/nature_remo/client.rb
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "nature_remo"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here