reemo 0.2.0 → 0.2.1

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: f0483686c9597757174af1536087c9e04bae735f
4
- data.tar.gz: 508165a9bf7f1a481aee86408d51cb9aef0abd49
3
+ metadata.gz: 48c994774b8a468dc9f056f3b1bd1bd531b1a987
4
+ data.tar.gz: 86f5ed09b325df1b1f85efce8a47846e9eb3586f
5
5
  SHA512:
6
- metadata.gz: 02515e97f484857aaca178acb598d607414d8833bb80131afe55ef578d0d8facc7a423f83b5e3b9b894833e3cfbbca1d4fcae1c48dbfd4f171b3ddfb36b79958
7
- data.tar.gz: 55119828181d8f93364aa10d8c8743dd991bafdac574a40a08df3f41c5b0445e5841bbd35350c65df4fd52243b1854f72bad225a517726452f6d839f1babd0a0
6
+ metadata.gz: 28aaf6de8164a4cf3fc36f893a1f89c66be25eb9f1dc50b83263c2a85edc45f64485243b5a9367edbdf01d7a9251aae5a0f8da866b6edc38a2d95244af40c221
7
+ data.tar.gz: 173a5941b0257fa2c1859d1190261f83eb722252b1c2e803ef36cb7965b5f016bc017996a676d9fd191d039f0db45c8858a584e019b46777f2302fd30fcf4f9d
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- reemo (0.2.0)
4
+ reemo (0.2.1)
5
5
  buff-ignore
6
6
  minitar
7
7
  multipart-post
@@ -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
- cd <this repo>
10
- bundle install
7
+ gem install reemo
11
8
  ```
12
9
 
13
- ## Server Configuration
10
+ ## Server Configuration (Example)
14
11
 
15
12
  ```bash
16
- bundle exec reemo server-config --host=hogehoge.io --http-port=4567 --ssh-port=2222
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
- bundle exec reemo run
24
- ```
22
+ reemo run
23
+ ```
24
+
25
+ NOTE: You can use just `reemo` instead of `reemo run` for short.
@@ -165,7 +165,7 @@ EOS
165
165
  IO.copy_stream(f, tmp_out_f)
166
166
  tmp_out_f.close()
167
167
 
168
- if !File.empty?(tmp_out_f.path)
168
+ if !File.zero?(tmp_out_f.path)
169
169
  if !Dir.exists?(OUTPUT_DIR_PATH)
170
170
  Dir.mkdir(OUTPUT_DIR_PATH)
171
171
  end
@@ -1,3 +1,3 @@
1
1
  module Reemo
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
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.0
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-14 00:00:00.000000000 Z
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.6.13
155
+ rubygems_version: 2.5.2
155
156
  signing_key:
156
157
  specification_version: 4
157
158
  summary: Reemo CLI