treehouse-dl 0.0.2
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 +7 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +11 -0
- data/LICENSE +21 -0
- data/README.md +2 -0
- data/bin/treehouse-dl +4 -0
- data/credentials +2 -0
- data/lib/treehouse-dl/downloader.rb +92 -0
- data/lib/treehouse-dl/options.rb +39 -0
- data/lib/treehouse-dl/runner.rb +21 -0
- data/setup.rb +1295 -0
- data/treehouse-dl.gemspec +13 -0
- metadata +55 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "treehouse-dl"
|
3
|
+
s.summary = "Download videos form Treehouse without pro account"
|
4
|
+
s.version = '0.0.2'
|
5
|
+
s.authors = ["Farhad"]
|
6
|
+
s.email = "Farhad9801@gmail.com"
|
7
|
+
s.files = Dir['**/**']
|
8
|
+
s.executables = ["treehouse-dl"]
|
9
|
+
s.required_ruby_version = '>=1.9'
|
10
|
+
s.date = '2017-10-02'
|
11
|
+
s.homepage = 'http://rubygems.org/gems/treehouse-dl'
|
12
|
+
s.license = 'MIT'
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: treehouse-dl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Farhad
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-10-02 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email: Farhad9801@gmail.com
|
15
|
+
executables:
|
16
|
+
- treehouse-dl
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- Gemfile
|
21
|
+
- Gemfile.lock
|
22
|
+
- LICENSE
|
23
|
+
- README.md
|
24
|
+
- bin/treehouse-dl
|
25
|
+
- credentials
|
26
|
+
- lib/treehouse-dl/downloader.rb
|
27
|
+
- lib/treehouse-dl/options.rb
|
28
|
+
- lib/treehouse-dl/runner.rb
|
29
|
+
- setup.rb
|
30
|
+
- treehouse-dl.gemspec
|
31
|
+
homepage: http://rubygems.org/gems/treehouse-dl
|
32
|
+
licenses:
|
33
|
+
- MIT
|
34
|
+
metadata: {}
|
35
|
+
post_install_message:
|
36
|
+
rdoc_options: []
|
37
|
+
require_paths:
|
38
|
+
- lib
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '1.9'
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
requirements: []
|
50
|
+
rubyforge_project:
|
51
|
+
rubygems_version: 2.6.12
|
52
|
+
signing_key:
|
53
|
+
specification_version: 4
|
54
|
+
summary: Download videos form Treehouse without pro account
|
55
|
+
test_files: []
|