photocopier 1.1.2 → 1.1.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/.vscode/launch.json +73 -0
- data/bin/bundler +17 -0
- data/bin/byebug +17 -0
- data/bin/coderay +17 -0
- data/bin/htmldiff +17 -0
- data/bin/ldiff +17 -0
- data/bin/pry +17 -0
- data/bin/rake +6 -5
- data/bin/rspec +6 -5
- data/lib/photocopier/ftp.rb +1 -1
- data/lib/photocopier/version.rb +1 -1
- metadata +9 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df97501c1871874087f26dd2353d7f8da05d4ee2
|
|
4
|
+
data.tar.gz: e2a7fba51479d104f793496d03bc1f96c9673553
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9aa85b0cc2d404fbbb236e9b59445be3bcec261105b1e812e65d71eda36ac162bea3a2b092e622f889e9102f8ff3759598c4f142c7a2485591e0b99a588bfd63
|
|
7
|
+
data.tar.gz: 5f4c681fc5dc7438a323ae1bd7130bfcfc681ae98d69c218567e774bb4fba2d6b9f9ff23b2dc92f3dee334ffe775a675f515fad303a511adc3c05a04a0c2edcc
|
data/.vscode/launch.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.2.0",
|
|
3
|
+
"configurations": [
|
|
4
|
+
{
|
|
5
|
+
"name": "Debug Local File",
|
|
6
|
+
"type": "Ruby",
|
|
7
|
+
"request": "launch",
|
|
8
|
+
"cwd": "${workspaceRoot}",
|
|
9
|
+
"program": "${workspaceRoot}/main.rb"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "Listen for rdebug-ide",
|
|
13
|
+
"type": "Ruby",
|
|
14
|
+
"request": "attach",
|
|
15
|
+
"cwd": "${workspaceRoot}",
|
|
16
|
+
"remoteHost": "127.0.0.1",
|
|
17
|
+
"remotePort": "1234",
|
|
18
|
+
"remoteWorkspaceRoot": "${workspaceRoot}"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "Rails server",
|
|
22
|
+
"type": "Ruby",
|
|
23
|
+
"request": "launch",
|
|
24
|
+
"cwd": "${workspaceRoot}",
|
|
25
|
+
"program": "${workspaceRoot}/bin/rails",
|
|
26
|
+
"args": [
|
|
27
|
+
"server"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "RSpec - all",
|
|
32
|
+
"type": "Ruby",
|
|
33
|
+
"request": "launch",
|
|
34
|
+
"cwd": "${workspaceRoot}",
|
|
35
|
+
"program": "${workspaceRoot}/bin/rspec",
|
|
36
|
+
"args": [
|
|
37
|
+
"-I",
|
|
38
|
+
"${workspaceRoot}"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "RSpec - active spec file only",
|
|
43
|
+
"type": "Ruby",
|
|
44
|
+
"request": "launch",
|
|
45
|
+
"cwd": "${workspaceRoot}",
|
|
46
|
+
"program": "${workspaceRoot}/bin/rspec",
|
|
47
|
+
"args": [
|
|
48
|
+
"-I",
|
|
49
|
+
"${workspaceRoot}",
|
|
50
|
+
"${file}"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "RSpec - active test only",
|
|
55
|
+
"type": "Ruby",
|
|
56
|
+
"request": "launch",
|
|
57
|
+
"cwd": "${workspaceRoot}",
|
|
58
|
+
"program": "${workspaceRoot}/bin/rspec",
|
|
59
|
+
"args": [
|
|
60
|
+
"-I",
|
|
61
|
+
"${workspaceRoot}",
|
|
62
|
+
"${file}:${lineNumber}"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "Cucumber",
|
|
67
|
+
"type": "Ruby",
|
|
68
|
+
"request": "launch",
|
|
69
|
+
"cwd": "${workspaceRoot}",
|
|
70
|
+
"program": "${workspaceRoot}/bin/cucumber"
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
}
|
data/bin/bundler
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
#
|
|
4
|
+
# This file was generated by Bundler.
|
|
5
|
+
#
|
|
6
|
+
# The application 'bundler' is installed as part of a gem, and
|
|
7
|
+
# this file is here to facilitate running it.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
require "pathname"
|
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
+
Pathname.new(__FILE__).realpath)
|
|
13
|
+
|
|
14
|
+
require "rubygems"
|
|
15
|
+
require "bundler/setup"
|
|
16
|
+
|
|
17
|
+
load Gem.bin_path("bundler", "bundler")
|
data/bin/byebug
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
#
|
|
4
|
+
# This file was generated by Bundler.
|
|
5
|
+
#
|
|
6
|
+
# The application 'byebug' is installed as part of a gem, and
|
|
7
|
+
# this file is here to facilitate running it.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
require "pathname"
|
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
+
Pathname.new(__FILE__).realpath)
|
|
13
|
+
|
|
14
|
+
require "rubygems"
|
|
15
|
+
require "bundler/setup"
|
|
16
|
+
|
|
17
|
+
load Gem.bin_path("byebug", "byebug")
|
data/bin/coderay
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
#
|
|
4
|
+
# This file was generated by Bundler.
|
|
5
|
+
#
|
|
6
|
+
# The application 'coderay' is installed as part of a gem, and
|
|
7
|
+
# this file is here to facilitate running it.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
require "pathname"
|
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
+
Pathname.new(__FILE__).realpath)
|
|
13
|
+
|
|
14
|
+
require "rubygems"
|
|
15
|
+
require "bundler/setup"
|
|
16
|
+
|
|
17
|
+
load Gem.bin_path("coderay", "coderay")
|
data/bin/htmldiff
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
#
|
|
4
|
+
# This file was generated by Bundler.
|
|
5
|
+
#
|
|
6
|
+
# The application 'htmldiff' is installed as part of a gem, and
|
|
7
|
+
# this file is here to facilitate running it.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
require "pathname"
|
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
+
Pathname.new(__FILE__).realpath)
|
|
13
|
+
|
|
14
|
+
require "rubygems"
|
|
15
|
+
require "bundler/setup"
|
|
16
|
+
|
|
17
|
+
load Gem.bin_path("diff-lcs", "htmldiff")
|
data/bin/ldiff
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
#
|
|
4
|
+
# This file was generated by Bundler.
|
|
5
|
+
#
|
|
6
|
+
# The application 'ldiff' is installed as part of a gem, and
|
|
7
|
+
# this file is here to facilitate running it.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
require "pathname"
|
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
+
Pathname.new(__FILE__).realpath)
|
|
13
|
+
|
|
14
|
+
require "rubygems"
|
|
15
|
+
require "bundler/setup"
|
|
16
|
+
|
|
17
|
+
load Gem.bin_path("diff-lcs", "ldiff")
|
data/bin/pry
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
#
|
|
4
|
+
# This file was generated by Bundler.
|
|
5
|
+
#
|
|
6
|
+
# The application 'pry' is installed as part of a gem, and
|
|
7
|
+
# this file is here to facilitate running it.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
require "pathname"
|
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
+
Pathname.new(__FILE__).realpath)
|
|
13
|
+
|
|
14
|
+
require "rubygems"
|
|
15
|
+
require "bundler/setup"
|
|
16
|
+
|
|
17
|
+
load Gem.bin_path("pry", "pry")
|
data/bin/rake
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
2
3
|
#
|
|
3
4
|
# This file was generated by Bundler.
|
|
4
5
|
#
|
|
@@ -6,11 +7,11 @@
|
|
|
6
7
|
# this file is here to facilitate running it.
|
|
7
8
|
#
|
|
8
9
|
|
|
9
|
-
require
|
|
10
|
-
ENV[
|
|
10
|
+
require "pathname"
|
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
11
12
|
Pathname.new(__FILE__).realpath)
|
|
12
13
|
|
|
13
|
-
require
|
|
14
|
-
require
|
|
14
|
+
require "rubygems"
|
|
15
|
+
require "bundler/setup"
|
|
15
16
|
|
|
16
|
-
load Gem.bin_path(
|
|
17
|
+
load Gem.bin_path("rake", "rake")
|
data/bin/rspec
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
2
3
|
#
|
|
3
4
|
# This file was generated by Bundler.
|
|
4
5
|
#
|
|
@@ -6,11 +7,11 @@
|
|
|
6
7
|
# this file is here to facilitate running it.
|
|
7
8
|
#
|
|
8
9
|
|
|
9
|
-
require
|
|
10
|
-
ENV[
|
|
10
|
+
require "pathname"
|
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
11
12
|
Pathname.new(__FILE__).realpath)
|
|
12
13
|
|
|
13
|
-
require
|
|
14
|
-
require
|
|
14
|
+
require "rubygems"
|
|
15
|
+
require "bundler/setup"
|
|
15
16
|
|
|
16
|
-
load Gem.bin_path(
|
|
17
|
+
load Gem.bin_path("rspec-core", "rspec")
|
data/lib/photocopier/ftp.rb
CHANGED
data/lib/photocopier/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: photocopier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefano Verna
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2017-05-
|
|
13
|
+
date: 2017-05-17 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|
|
@@ -183,12 +183,19 @@ files:
|
|
|
183
183
|
- ".ruby-gemset"
|
|
184
184
|
- ".ruby-version"
|
|
185
185
|
- ".travis.yml"
|
|
186
|
+
- ".vscode/launch.json"
|
|
186
187
|
- CHANGELOG.md
|
|
187
188
|
- Gemfile
|
|
188
189
|
- LICENSE
|
|
189
190
|
- README.md
|
|
190
191
|
- Rakefile
|
|
192
|
+
- bin/bundler
|
|
193
|
+
- bin/byebug
|
|
194
|
+
- bin/coderay
|
|
191
195
|
- bin/console
|
|
196
|
+
- bin/htmldiff
|
|
197
|
+
- bin/ldiff
|
|
198
|
+
- bin/pry
|
|
192
199
|
- bin/rake
|
|
193
200
|
- bin/rspec
|
|
194
201
|
- bin/setup
|