rest-ftp-daemon 0.300.2 → 0.300.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +5 -5
- data/rest-ftp-daemon.gemspec +2 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 261bf46659b553d4503748d18c088522f198dcbd
|
4
|
+
data.tar.gz: e38b90ee56450265d1967fe95b1992af9ac6e483
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb73ad80937ab57466428b78fd2af4351e43df7e801fcedbfbf1fcaa0a7c331cdfdf4034946de81bd0498e3e701bcd00817a5f538ddb5140600ac6518996ed86
|
7
|
+
data.tar.gz: 942a05aa3d4f0883e6905e9d3ebb5c860a9c908ba99fb35bc22125cbe101fe2d55e7a4682e13763ae91f81c6dfda54da239cc22a45c0ff1b21345321faeb1f72
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -61,7 +61,7 @@ Expected features in a short-time range :
|
|
61
61
|
Installation
|
62
62
|
------------------------------------------------------------------------------------
|
63
63
|
|
64
|
-
With Ruby (version 2.
|
64
|
+
With Ruby (version 2.2 or higher) and rubygems properly installed, you only need :
|
65
65
|
|
66
66
|
```
|
67
67
|
gem install rest-ftp-daemon
|
@@ -229,7 +229,7 @@ TODO for this document
|
|
229
229
|
Debian install preparation
|
230
230
|
------------------------------------------------------------------------------------
|
231
231
|
|
232
|
-
This project is available as a rubygem, requires Ruby 2.
|
232
|
+
This project is available as a rubygem, requires Ruby 2.2 and RubyGems installed.
|
233
233
|
|
234
234
|
#### Using rbenv and ruby-build
|
235
235
|
|
@@ -240,7 +240,7 @@ You may use `rbenv` and `ruby-build` to get the right Ruby version. If this is y
|
|
240
240
|
# git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
|
241
241
|
# echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
|
242
242
|
# echo 'eval "$(rbenv init -)"' >> ~/.bashrc
|
243
|
-
# ruby-build --definitions | grep '2.
|
243
|
+
# ruby-build --definitions | grep '2.2'
|
244
244
|
```
|
245
245
|
|
246
246
|
Otherwise, you way have to update ruby-build to include Ruby 2.3.0 definitions.
|
@@ -260,8 +260,8 @@ Use a dedicated user for the daemon, switch to this user and enable rbenv
|
|
260
260
|
Install the right ruby version and activate it
|
261
261
|
|
262
262
|
```
|
263
|
-
# rbenv install 2.
|
264
|
-
# rbenv local 2.
|
263
|
+
# rbenv install 2.2.0
|
264
|
+
# rbenv local 2.2.0
|
265
265
|
# rbenv rehash
|
266
266
|
```
|
267
267
|
|
data/rest-ftp-daemon.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Gem::Specification.new do |spec|
|
3
3
|
|
4
4
|
# Project version
|
5
|
-
spec.version = "0.300.
|
5
|
+
spec.version = "0.300.3"
|
6
6
|
|
7
7
|
# Project description
|
8
8
|
spec.name = "rest-ftp-daemon"
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.files = `git ls-files -z`.split("\x0").reject{ |f| f == "dashboard.png"}
|
19
19
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
20
|
spec.require_paths = ["lib"]
|
21
|
-
spec.required_ruby_version = ">= 2.
|
21
|
+
spec.required_ruby_version = ">= 2.2"
|
22
22
|
|
23
23
|
|
24
24
|
# Development dependencies
|
@@ -26,7 +26,6 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.add_development_dependency "rake"
|
27
27
|
spec.add_development_dependency "rspec"
|
28
28
|
spec.add_development_dependency "http"
|
29
|
-
#spec.add_development_dependency "http", "~> 0.8"
|
30
29
|
spec.add_development_dependency "rubocop", "~> 0.32.0"
|
31
30
|
spec.add_development_dependency "pry"
|
32
31
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rest-ftp-daemon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.300.
|
4
|
+
version: 0.300.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bruno MEDICI
|
@@ -362,7 +362,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
362
362
|
requirements:
|
363
363
|
- - ">="
|
364
364
|
- !ruby/object:Gem::Version
|
365
|
-
version: '2.
|
365
|
+
version: '2.2'
|
366
366
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
367
367
|
requirements:
|
368
368
|
- - ">="
|