nature_remo 0.2.2 → 0.2.3
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 +4 -4
- data/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- data/README.md +1 -0
- data/lib/nature_remo/version.rb +1 -1
- metadata +3 -6
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 44486974bfab637d8b7483fe472ae5de4185d031b3ea86163d28de7bdba0229d
|
|
4
|
+
data.tar.gz: dbff1084e523d3fcfe0f2e45f6a323296cd79d324758c50cba0da538338d40c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
data/lib/nature_remo/version.rb
CHANGED
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.
|
|
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-
|
|
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__)
|