serienmover 0.0.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.
- data/.gitignore +18 -0
- data/.rspec +1 -0
- data/Gemfile +5 -0
- data/LICENSE +18 -0
- data/README.md +14 -0
- data/Rakefile +2 -0
- data/lib/serienmover/version.rb +3 -0
- data/lib/serienmover.rb +5 -0
- data/serienmover.gemspec +19 -0
- data/spec/serienmover_spec.rb +17 -0
- data/spec/spec_helper.rb +5 -0
- metadata +74 -0
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
|
2
|
+
(General Public License)
|
3
|
+
|
4
|
+
Copyright (c) 2012 Philipp Böhm
|
5
|
+
|
6
|
+
This program is free software; you can redistribute it and/or modify
|
7
|
+
it under the terms of the GNU General Public License as published by
|
8
|
+
the Free Software Foundation in version 3 of the License.
|
9
|
+
|
10
|
+
This program is distributed in the hope that it will be useful,
|
11
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
GNU General Public License for more details.
|
14
|
+
|
15
|
+
You should have received a copy of the GNU General Public License
|
16
|
+
along with this program; if not, write to the Free Software
|
17
|
+
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
18
|
+
MA 02110-1301, USA.
|
data/README.md
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# Serienmover
|
2
|
+
|
3
|
+
Tool that moves series episodes into a specific directory structure.
|
4
|
+
It's recommended to use [serienrenamer](http://github.com/pboehm/serienrenamer)
|
5
|
+
to rename these files.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
$ gem install serienmover
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
TODO: Write usage instructions here
|
14
|
+
|
data/Rakefile
ADDED
data/lib/serienmover.rb
ADDED
data/serienmover.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/serienmover/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Philipp Böhm"]
|
6
|
+
gem.email = ["philipp@i77i.de"]
|
7
|
+
gem.description = %q{Tool that moves your episodes into a specific directory structure}
|
8
|
+
gem.summary = %q{Tool that moves your episodes into a specific directory structure}
|
9
|
+
gem.homepage = "http://github.com/pboehm/serienmover"
|
10
|
+
|
11
|
+
gem.add_dependency('serienrenamer', '~> 0.0.7')
|
12
|
+
|
13
|
+
gem.files = `git ls-files`.split($\)
|
14
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
15
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
16
|
+
gem.name = "serienmover"
|
17
|
+
gem.require_paths = ["lib"]
|
18
|
+
gem.version = Serienmover::VERSION
|
19
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: serienmover
|
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-03-23 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: serienrenamer
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.0.7
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.0.7
|
30
|
+
description: Tool that moves your episodes into a specific directory structure
|
31
|
+
email:
|
32
|
+
- philipp@i77i.de
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- .rspec
|
39
|
+
- Gemfile
|
40
|
+
- LICENSE
|
41
|
+
- README.md
|
42
|
+
- Rakefile
|
43
|
+
- lib/serienmover.rb
|
44
|
+
- lib/serienmover/version.rb
|
45
|
+
- serienmover.gemspec
|
46
|
+
- spec/serienmover_spec.rb
|
47
|
+
- spec/spec_helper.rb
|
48
|
+
homepage: http://github.com/pboehm/serienmover
|
49
|
+
licenses: []
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options: []
|
52
|
+
require_paths:
|
53
|
+
- lib
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ! '>='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ! '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
66
|
+
requirements: []
|
67
|
+
rubyforge_project:
|
68
|
+
rubygems_version: 1.8.21
|
69
|
+
signing_key:
|
70
|
+
specification_version: 3
|
71
|
+
summary: Tool that moves your episodes into a specific directory structure
|
72
|
+
test_files:
|
73
|
+
- spec/serienmover_spec.rb
|
74
|
+
- spec/spec_helper.rb
|