junkie 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +19 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +17 -0
- data/README.md +32 -0
- data/Rakefile +1 -0
- data/junkie.gemspec +19 -0
- data/lib/junkie/version.rb +3 -0
- data/lib/junkie.rb +5 -0
- metadata +53 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
(General Public License)
|
2
|
+
|
3
|
+
Copyright (c) 2012 Philipp Böhm
|
4
|
+
|
5
|
+
This program is free software; you can redistribute it and/or modify
|
6
|
+
it under the terms of the GNU General Public License as published by
|
7
|
+
the Free Software Foundation in version 3 of the License.
|
8
|
+
|
9
|
+
This program is distributed in the hope that it will be useful,
|
10
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
12
|
+
GNU General Public License for more details.
|
13
|
+
|
14
|
+
You should have received a copy of the GNU General Public License
|
15
|
+
along with this program; if not, write to the Free Software
|
16
|
+
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
17
|
+
MA 02110-1301, USA.
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# Junkie
|
2
|
+
|
3
|
+
TV series management application that includes the whole lifecycle for new
|
4
|
+
episodes. `junkie` does the following things:
|
5
|
+
|
6
|
+
* Find new episodes (`sjunkieex`)
|
7
|
+
* Download these episodes (`pyload`)
|
8
|
+
* Extract episodes from their archives (`pyload`)
|
9
|
+
* Brings episodes in the right format (`serienrenamer`)
|
10
|
+
* Add these new episodes to th index of watched episodes (`sindex`)
|
11
|
+
|
12
|
+
As you can see, `junkie` requires some external tools for doing his job.
|
13
|
+
[pyLoad](http://pyload.org) is an application that makes downloading from some
|
14
|
+
sharehoster incredible easy, so it is used here.
|
15
|
+
|
16
|
+
## Installation
|
17
|
+
|
18
|
+
`junkie` requires Ruby 1.9 or higher, than you can install it through:
|
19
|
+
|
20
|
+
$ gem install junkie
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
TODO: Write usage instructions here
|
25
|
+
|
26
|
+
## Contributing
|
27
|
+
|
28
|
+
1. Fork it
|
29
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
30
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
31
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
32
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/junkie.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'junkie/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "junkie"
|
8
|
+
gem.version = Junkie::VERSION
|
9
|
+
gem.authors = ["Philipp Böhm"]
|
10
|
+
gem.email = ["philipp-boehm@live.de"]
|
11
|
+
gem.description = %q{TV series management application}
|
12
|
+
gem.summary = %q{TV series managament tool that does all the work you have with your series.}
|
13
|
+
gem.homepage = "https://github.com/pboehm/junkie"
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
end
|
data/lib/junkie.rb
ADDED
metadata
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: junkie
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Philipp Böhm
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-21 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: TV series management application
|
15
|
+
email:
|
16
|
+
- philipp-boehm@live.de
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .gitignore
|
22
|
+
- Gemfile
|
23
|
+
- LICENSE.txt
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
26
|
+
- junkie.gemspec
|
27
|
+
- lib/junkie.rb
|
28
|
+
- lib/junkie/version.rb
|
29
|
+
homepage: https://github.com/pboehm/junkie
|
30
|
+
licenses: []
|
31
|
+
post_install_message:
|
32
|
+
rdoc_options: []
|
33
|
+
require_paths:
|
34
|
+
- lib
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
36
|
+
none: false
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
requirements: []
|
48
|
+
rubyforge_project:
|
49
|
+
rubygems_version: 1.8.24
|
50
|
+
signing_key:
|
51
|
+
specification_version: 3
|
52
|
+
summary: TV series managament tool that does all the work you have with your series.
|
53
|
+
test_files: []
|