dumpy 1.0 → 1.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/README.md +1 -9
- data/dumpy.gemspec +0 -1
- data/lib/dumpy.rb +2 -2
- data/lib/dumpy/version.rb +1 -1
- 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: 5c9ac8abb6c7f4d5cdbb3955a850bc5ba089f3e2
|
|
4
|
+
data.tar.gz: 223edbbc0a6d6b74be7af282e88b48b915963573
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd42e445e4b61b4e59eab389305778406dcec045e95fbb0c5fad56d793c3822ca02f1271d15f1c23233e9327959b5baf729eb34f1786e4d3b350048725e7e688
|
|
7
|
+
data.tar.gz: 257484cd1b054329a631eb8b0688ed20d4b0860b7329e133d0b592f51cd9d0f7a947874743a0891c40c5a0ad6efa6dbddc6e545bb825aede8c3973c42e874719
|
data/README.md
CHANGED
|
@@ -4,15 +4,7 @@ Easy file sharing straight from the command line
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
gem 'dumpy'
|
|
10
|
-
|
|
11
|
-
And then execute:
|
|
12
|
-
|
|
13
|
-
$ bundle
|
|
14
|
-
|
|
15
|
-
Or install it yourself as:
|
|
7
|
+
Install it yourself using:
|
|
16
8
|
|
|
17
9
|
$ gem install dumpy
|
|
18
10
|
|
data/dumpy.gemspec
CHANGED
|
@@ -14,7 +14,6 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
|
16
16
|
spec.executables = ["dumpy"]
|
|
17
|
-
# spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
18
|
spec.require_paths = ["lib"]
|
|
20
19
|
|
data/lib/dumpy.rb
CHANGED
|
@@ -7,8 +7,8 @@ module Dumpy
|
|
|
7
7
|
require 'clipboard'
|
|
8
8
|
|
|
9
9
|
def self.upload(filename)
|
|
10
|
-
url = "http://
|
|
11
|
-
download_link = "http://
|
|
10
|
+
url = "http://dumpy.io/upload.php"
|
|
11
|
+
download_link = "http://dumpy.io/download.php?q="
|
|
12
12
|
begin
|
|
13
13
|
current_dir = `pwd`
|
|
14
14
|
file = current_dir.strip + "/" + filename
|
data/lib/dumpy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dumpy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '1.
|
|
4
|
+
version: '1.1'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adrian Bordinc
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|