dumpy 1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2e89312f5458a9711f5d4d7c116ff3d7ad0bba81
4
+ data.tar.gz: 186ca4a43ea4ef82aaefb4edbd516c5d3ea5504d
5
+ SHA512:
6
+ metadata.gz: f6cc369da12c1d0e7e75f644db75c525654dbaab7fd073954446db67ef2e095c2ead95df1b9c92280a256f697c4067cdf0bf882c1fb2a7d77e926e64ecd80ee8
7
+ data.tar.gz: 69b5f7fb099a508e49a8bbcb69fd2bc7ebc86d9d74f5381f5a7b88baa05063fb0e2d5d38af53b72938f5606287bb687627710f0389bdb344a301ffc5fdf15e83
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in dumpy.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Adrian Bordinc
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,33 @@
1
+ # Dumpy
2
+
3
+ Easy file sharing straight from the command line
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'dumpy'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install dumpy
18
+
19
+ ## Usage
20
+
21
+ 1. Run from terminal using the command:
22
+
23
+ `$ dumpy your_file.txt`
24
+
25
+ 2. A download link will be copied to your clipboard. Just paste it.
26
+
27
+ ## Contributing
28
+
29
+ 1. Fork it ( https://github.com/ellimist/dumpy/fork )
30
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
31
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
32
+ 4. Push to the branch (`git push origin my-new-feature`)
33
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'dumpy'
4
+
5
+ Dumpy::Uploader.upload ARGV[0]
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'dumpy/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "dumpy"
8
+ spec.version = Dumpy::VERSION
9
+ spec.authors = ["Adrian Bordinc"]
10
+ spec.email = ["adrian.bordinc@gmail.com"]
11
+ spec.summary = %q{Share a file from the terminal}
12
+ spec.homepage = "http://github.com/ellimist/dumpy"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = ["dumpy"]
17
+ # spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_runtime_dependency "json", "~> 1.8.1", '>= 1.8.1'
24
+ spec.add_runtime_dependency "clipboard", "~> 1.0.5", '>= 1.0.5'
25
+ spec.add_runtime_dependency "rest_client", "~> 1.7.3", '>= 1.7.3'
26
+
27
+ end
@@ -0,0 +1,30 @@
1
+ require 'dumpy/version'
2
+
3
+ module Dumpy
4
+ class Uploader
5
+ require 'rest_client'
6
+ require 'json'
7
+ require 'clipboard'
8
+
9
+ def self.upload(filename)
10
+ url = "http://9devs.com/upload.php"
11
+ download_link = "http://9devs.com/download.php?q="
12
+ begin
13
+ current_dir = `pwd`
14
+ file = current_dir.strip + "/" + filename
15
+
16
+ begin
17
+ data = RestClient.post(url, :file => File.new(file))
18
+ rescue => e
19
+ e.response
20
+ end
21
+
22
+ data = JSON.parse(data)
23
+ Clipboard.copy download_link+data[0]
24
+ puts "Your link was copied to your clipboard. Just paste it! \nThe download link will be valid for 3 days. \n:-) \n"
25
+ rescue => e
26
+ puts "Something's wrong."
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,3 @@
1
+ module Dumpy
2
+ VERSION = "1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,142 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dumpy
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.0'
5
+ platform: ruby
6
+ authors:
7
+ - Adrian Bordinc
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-08-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: json
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.8.1
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 1.8.1
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - "~>"
56
+ - !ruby/object:Gem::Version
57
+ version: 1.8.1
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 1.8.1
61
+ - !ruby/object:Gem::Dependency
62
+ name: clipboard
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 1.0.5
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: 1.0.5
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: 1.0.5
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 1.0.5
81
+ - !ruby/object:Gem::Dependency
82
+ name: rest_client
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: 1.7.3
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 1.7.3
91
+ type: :runtime
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: 1.7.3
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: 1.7.3
101
+ description:
102
+ email:
103
+ - adrian.bordinc@gmail.com
104
+ executables:
105
+ - dumpy
106
+ extensions: []
107
+ extra_rdoc_files: []
108
+ files:
109
+ - ".gitignore"
110
+ - Gemfile
111
+ - LICENSE.txt
112
+ - README.md
113
+ - Rakefile
114
+ - bin/dumpy
115
+ - dumpy.gemspec
116
+ - lib/dumpy.rb
117
+ - lib/dumpy/version.rb
118
+ homepage: http://github.com/ellimist/dumpy
119
+ licenses:
120
+ - MIT
121
+ metadata: {}
122
+ post_install_message:
123
+ rdoc_options: []
124
+ require_paths:
125
+ - lib
126
+ required_ruby_version: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
131
+ required_rubygems_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ requirements: []
137
+ rubyforge_project:
138
+ rubygems_version: 2.2.2
139
+ signing_key:
140
+ specification_version: 4
141
+ summary: Share a file from the terminal
142
+ test_files: []