reemo 0.2.0 → 0.2.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 +4 -4
- data/Gemfile.lock +1 -1
- data/MYNOTE.md +28 -0
- data/README.md +9 -8
- data/lib/reemo.rb +1 -1
- data/lib/reemo/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48c994774b8a468dc9f056f3b1bd1bd531b1a987
|
|
4
|
+
data.tar.gz: 86f5ed09b325df1b1f85efce8a47846e9eb3586f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28aaf6de8164a4cf3fc36f893a1f89c66be25eb9f1dc50b83263c2a85edc45f64485243b5a9367edbdf01d7a9251aae5a0f8da866b6edc38a2d95244af40c221
|
|
7
|
+
data.tar.gz: 173a5941b0257fa2c1859d1190261f83eb722252b1c2e803ef36cb7965b5f016bc017996a676d9fd191d039f0db45c8858a584e019b46777f2302fd30fcf4f9d
|
data/Gemfile.lock
CHANGED
data/MYNOTE.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# My Note
|
|
2
|
+
|
|
3
|
+
## Develop
|
|
4
|
+
|
|
5
|
+
### Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
cd <this repo>
|
|
9
|
+
bundle install
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
### Server Configuration
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
bundle exec reemo server-config --host=localhost --http-port=4567 --ssh-port=2222
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Run
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
cd sample_workspaces/gcc-project1/
|
|
22
|
+
bundle exec reemo run
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## Gem release
|
|
27
|
+
|
|
28
|
+
https://qiita.com/kyohei8/items/b292f727e213ed7db9d7
|
data/README.md
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
# Reemo CLI
|
|
2
2
|
|
|
3
|
-
## Usage
|
|
4
|
-
|
|
5
3
|
|
|
6
4
|
## Installation
|
|
7
5
|
|
|
8
6
|
```bash
|
|
9
|
-
|
|
10
|
-
bundle install
|
|
7
|
+
gem install reemo
|
|
11
8
|
```
|
|
12
9
|
|
|
13
|
-
## Server Configuration
|
|
10
|
+
## Server Configuration (Example)
|
|
14
11
|
|
|
15
12
|
```bash
|
|
16
|
-
|
|
13
|
+
reemo server-config --host=hogehoge.io --http-port=4567 --ssh-port=2222
|
|
17
14
|
```
|
|
18
15
|
|
|
16
|
+
Replace `--host`, `--http-port`, `--ssh-port` with your sever setting.
|
|
17
|
+
|
|
19
18
|
## Run
|
|
20
19
|
|
|
21
20
|
```bash
|
|
22
21
|
cd sample_workspaces/gcc-project1/
|
|
23
|
-
|
|
24
|
-
```
|
|
22
|
+
reemo run
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
NOTE: You can use just `reemo` instead of `reemo run` for short.
|
data/lib/reemo.rb
CHANGED
data/lib/reemo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: reemo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryo Ota
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multipart-post
|
|
@@ -105,6 +105,7 @@ files:
|
|
|
105
105
|
- ".gitignore"
|
|
106
106
|
- Gemfile
|
|
107
107
|
- Gemfile.lock
|
|
108
|
+
- MYNOTE.md
|
|
108
109
|
- README.md
|
|
109
110
|
- Rakefile
|
|
110
111
|
- bin/console
|
|
@@ -151,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
152
|
version: '0'
|
|
152
153
|
requirements: []
|
|
153
154
|
rubyforge_project:
|
|
154
|
-
rubygems_version: 2.
|
|
155
|
+
rubygems_version: 2.5.2
|
|
155
156
|
signing_key:
|
|
156
157
|
specification_version: 4
|
|
157
158
|
summary: Reemo CLI
|