serienmover 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,18 @@
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
+ *.swp
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in serienmover.gemspec
4
+ gemspec
5
+ gem 'rspec'
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
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ module Serienmover
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,5 @@
1
+ require "serienmover/version"
2
+
3
+ module Serienmover
4
+ # Your code goes here...
5
+ end
@@ -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
@@ -0,0 +1,17 @@
1
+ require 'spec_helper'
2
+
3
+ require File.dirname(__FILE__) + '/../lib/serienmover'
4
+
5
+ describe Serienmover do
6
+
7
+ before(:all) do
8
+ end
9
+
10
+ after(:all) do
11
+ end
12
+
13
+ it "should be true" do
14
+ true.should be_true
15
+ end
16
+ end
17
+
@@ -0,0 +1,5 @@
1
+ require 'bundler/setup'
2
+ require 'fileutils'
3
+
4
+ RSpec.configure do |config|
5
+ end
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