itunes_video 0.4.0 → 0.4.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.
Files changed (6) hide show
  1. data/.gitignore +5 -0
  2. data/LICENSE +13 -0
  3. data/README.md +23 -0
  4. data/Rakefile +1 -0
  5. data/itunes_video.gemspec +15 -0
  6. metadata +39 -2
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ .DS_Store
2
+ pkg/*
3
+ *.mp4
4
+ *.rb
5
+ .yardoc/*
data/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
2
+ Version 2, December 2004
3
+
4
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
5
+
6
+ Everyone is permitted to copy and distribute verbatim or modified
7
+ copies of this license document, and changing it is allowed as long
8
+ as the name is changed.
9
+
10
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
11
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
12
+
13
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
data/README.md ADDED
@@ -0,0 +1,23 @@
1
+ ### itunes_video: a gem to import and organize your video collection in iTunes. OS X only.
2
+
3
+ ### build from source:
4
+
5
+ ```bash
6
+ gem build itunes_video.gemspec
7
+ sudo gem install ./itunes_video-x.x.x.gem
8
+ ```
9
+
10
+ ### usage:
11
+
12
+ ```ruby
13
+ require 'itunes_video'
14
+
15
+ v = Itunes_video.new("/path/to/video.mp4")
16
+ v.kind = "tv show"
17
+ v.season_num = 2
18
+
19
+ p v.kind # => "tv show"
20
+ p v.season_num # => 2
21
+ ```
22
+
23
+ Read the RDoc for a full list of attributes.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,15 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'itunes_video'
3
+ s.version = '0.4.1'
4
+ s.date = Time.now.strftime("%Y-%m-%d")
5
+ s.summary = "Import and organize videos in iTunes"
6
+ s.description = "A gem to import and organize your video collection in iTunes. OS X only."
7
+ s.authors = ["Richard Myers"]
8
+ s.email = 'rick.myers@me.com'
9
+ s.license = 'WTFPL'
10
+ s.files = `git ls-files`.split($/)
11
+ s.homepage = 'https://rubygems.org/gems/itunes_video'
12
+
13
+ s.add_development_dependency "bundler", "~> 1.3"
14
+ s.add_development_dependency "rake"
15
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itunes_video
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,13 +10,50 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2013-09-01 00:00:00.000000000 Z
13
- dependencies: []
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.3'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
14
46
  description: A gem to import and organize your video collection in iTunes. OS X only.
15
47
  email: rick.myers@me.com
16
48
  executables: []
17
49
  extensions: []
18
50
  extra_rdoc_files: []
19
51
  files:
52
+ - .gitignore
53
+ - LICENSE
54
+ - README.md
55
+ - Rakefile
56
+ - itunes_video.gemspec
20
57
  - lib/itunes_video.rb
21
58
  homepage: https://rubygems.org/gems/itunes_video
22
59
  licenses: