youtube_dlhelper 0.1.9.4 → 0.1.9.5

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -16,7 +16,6 @@
16
16
  | still maintained? | [![stillmaintained](http://stillmaintained.com/saigkill/youtube_dlhelper.png)](http://stillmaintained.com/saigkill/youtube_dlhelper) |
17
17
  | documentation quality | [![documentationquality](http://inch-ci.org/github/saigkill/youtube_dlhelper.svg?branch=master)](http://inch-ci.org/github/saigkill/youtube_dlhelper) |
18
18
  | documentation | http://www.rubydoc.info/gems/youtube_dlhelper |
19
- | user documentation | http://saigkill.github.io/docs/youtube_dlhelper/en-US/html/ |
20
19
  | Bugreports & Feature requests | http://saigkill-bugs.myjetbrains.com/youtrack/issues |
21
20
  | Mailinglist | https://groups.google.com/forum/#!forum/youtube_dlhelper |
22
21
  | authors blog | http://saigkill.github.io |
@@ -36,11 +35,11 @@ group name or interpreters name. Now it creates a Subfolder inside your Musicdir
36
35
  The installation is very easy.
37
36
 
38
37
  gem install youtube_dlhelper
39
- cd /path/to/gem (Falls RVM benutzt wird z.B. ~/.rvm/gems/ruby-2.2.1/gems/latex_curriculum_vitae)
38
+ cd /path/to/gem (Falls RVM benutzt wird z.B. ~/.rvm/gems/ruby-2.2.1/gems/youtube_dlhelper)
40
39
  rake setup
41
40
 
42
41
  ## Hard dependencies
43
- Just a preinstalled ffmpeg.
42
+ Just a preinstalled ffmpeg or avconf.
44
43
 
45
44
  ## Usage
46
45
 
@@ -51,8 +50,18 @@ Example:
51
50
  youtube_dlhelper http://www.youtube.com/watch?v=aHjpOzsQ9YI
52
51
  If a https:// URL doesn't work use http:// instead
53
52
 
53
+ Now the program asks you if the artist is an Interpret or a Group. If you choose Interpret it aks you for the firstname and
54
+ the surname. So it creates a directory in your MUSICDIR/surname_firstname/Youtube. If you choose Group it uses the Groupname
55
+ for creating the directory.
56
+
54
57
  Before running the program you have to open the youtube_dlhelper.conf and change the settings (It is placed in HOME/.youtube_dlhelper).
55
58
 
59
+ If you like this little program so don't forget to give this GitHub repository a star :-)
60
+
61
+ ## Known Issues
62
+ Sometimes it happens a 403 FORBIDDEN feedback from Google. It looks like it depends on country restrictions mostly on
63
+ VEVO Videos. More [there](https://github.com/rb2k/viddl-rb/issues/117).
64
+
56
65
  ## Feature Requests & Bug Reports
57
66
  You can file Requests and Reports on the Github Repository: http://saigkill-bugs.myjetbrains.com/youtrack/issues
58
67
 
data/Rakefile CHANGED
@@ -63,31 +63,6 @@ Reek::Rake::Task.new do |t|
63
63
  t.verbose = true
64
64
  end
65
65
 
66
- require 'bundler/audit/cli'
67
- namespace :bundle_audit do
68
- desc 'Update bundle-audit database'
69
- task :update do
70
- Bundler::Audit::CLI.new.update
71
- end
72
-
73
- desc 'Check gems for vulns using bundle-audit'
74
- task :check do
75
- Bundler::Audit::CLI.new.check
76
- end
77
-
78
- desc 'Update vulns database and check gems using bundle-audit'
79
- task :run do
80
- Rake::Task['bundle_audit:update'].invoke
81
- Rake::Task['bundle_audit:check'].invoke
82
- end
83
- end
84
-
85
- task :bundle_audit do
86
- Rake::Task['bundle_audit:run'].invoke
87
- end
88
-
89
- # Setup procedure /Codeship
90
- # dpkg -s ffmpeg 2>/dev/null >/dev/null && echo $?
91
66
  desc 'Launching the setup'
92
67
  task :setup_start do
93
68
  version = YoutubeDlhelperVersion::Version::STRING
@@ -117,65 +92,9 @@ task :setup => [:setup_start, :link_binary] do
117
92
  puts 'Finished Setup'
118
93
  end
119
94
 
120
- require 'fileutils'
121
- desc 'Prepare Userdoc for translating'
122
- task :prepare_doc do
123
- doc = './doc'
124
- FileUtils.cd(doc) do
125
- puts 'Running trans_drop'
126
- system('publican trans_drop')
127
- puts 'Preparing pot files'
128
- system('publican update_pot')
129
- puts 'Preparing po files for de-DE'
130
- system('publican update_po --langs=de-DE')
131
- puts 'All done. Please use a poeditor (like poedit) to translate'
132
- puts 'For building doc use rake build_doc.'
133
- end
134
- end
135
-
136
- require 'fileutils'
137
- desc 'Build Userdoc'
138
- task :build_doc do
139
- doc = './doc'
140
- FileUtils.cd(doc) do
141
- puts 'Building all targets'
142
- system('publican build --langs=en-US,de-DE --formats=html,pdf')
143
- puts 'All done. Please use rake publish_doc for publishing.'
144
- end
145
- end
146
-
147
- require 'fileutils'
148
- desc 'Publish Userdoc'
149
- task :publish_doc do
150
- version = YoutubeDlhelperVersion::Version::STRING
151
- home = Dir.home
152
- srcde = 'doc/tmp/de-DE/html'
153
- srcen = 'doc/tmp/en-US/html'
154
- srcdepdf = 'doc/tmp/de-DE/pdf'
155
- srcenpdf = 'doc/tmp/en-US/pdf'
156
- target = "#{home}/RubymineProjects/saigkill.github.com"
157
- targetde = "#{home}/RubymineProjects/saigkill.github.com/doc/youtube_dlhelper/de-DE/html"
158
- targeten = "#{home}/RubymineProjects/saigkill.github.com/doc/youtube_dlhelper/en-US/html"
159
- targetenpdf = "#{home}/RubymineProjects/saigkill.github.com/doc/youtube_dlhelper/en-US/pdf"
160
- targetdepdf = "#{home}/RubymineProjects/saigkill.github.com/doc/youtube_dlhelper/de-DE/pdf"
161
-
162
- puts 'Copying source html files to target git repository'
163
- FileUtils.cp_r(Dir["#{srcde}/*"], "#{targetde}")
164
- FileUtils.cp_r(Dir["#{srcen}/*"], "#{targeten}")
165
- FileUtils.cp_r(Dir["#{srcdepdf}/*"], "#{targetdepdf}")
166
- FileUtils.cp_r(Dir["#{srcenpdf}/*"], "#{targetenpdf}")
167
-
168
- puts 'Checking in into repository'
169
- FileUtils.cd(target) do
170
- puts 'Adding missing files'
171
- system('git add *')
172
- puts 'Made commit'
173
- system("git commit -m \"Updated doc for youtube_dlhelper #{version}\"")
174
- puts 'Pushing it to origin'
175
- system('git push')
176
- end
177
- end
178
-
95
+ require 'yaml'
96
+ ##require 'MannsShared/change'
97
+ require File.expand_path(File.join(File.dirname(__FILE__), 'lib/youtube_dlhelper/change'))
179
98
  require 'fileutils'
180
99
  desc 'Prepares for release'
181
100
  task :make_release do
@@ -184,10 +103,16 @@ task :make_release do
184
103
  target = "#{home}/RubymineProjects/saigkill.github.com/_posts"
185
104
  time = Time.new
186
105
  date = time.strftime('%Y-%m-%d')
106
+ config = YAML.load_file('Index.yml')
107
+ oldversion = config['version']
187
108
 
109
+ puts('Updating index')
110
+ YoutubeDlhelper.search_replace(oldversion, version, 'Index.yml')
111
+ YoutubeDlhelper.search_replace(oldversion, version, 'VERSION')
112
+ system('index --using VERSION Index.yml')
188
113
  puts 'Updating MANIFEST'
189
114
  system('mast -u && mast -u')
190
- system('git add MANIFEST')
115
+ system('git add MANIFEST .index')
191
116
  puts 'done'
192
117
  puts 'Updating workspace'
193
118
  system('git add .idea/*')
@@ -208,6 +133,7 @@ tags: [ruby, opensource, youtube, en-US]
208
133
  ---
209
134
  {% include JB/setup %}
210
135
 
136
+ [![youtube_dlhelper](http://saigkill.github.io/img/myprojects/100px-youtube_dlhelper.png)](https://github.com/saigkill/youtube_dlhelper)
211
137
  # Introduction
212
138
  The youtube_dlhelper is a short tool for download and manage the downloaded files. You are running the program inside the command line with a Youtube URL. Then it aska for a group name or interpreters name. Now it creates a Subfolder inside your Musicdirectory. Then it makes a MP3 from the downloaded file and moves it to the folder.
213
139
 
@@ -215,7 +141,7 @@ The youtube_dlhelper is a short tool for download and manage the downloaded file
215
141
  If you give it a try just follow the next steps (If you have already Ruby installed):
216
142
 
217
143
  * gem install youtube_dlhelper
218
- * cd /path/to/gem (Falls RVM benutzt wird z.B. ~/.rvm/gems/ruby-2.2.1/gems/latex_curriculum_vitae)
144
+ * cd /path/to/gem (Falls RVM benutzt wird z.B. ~/.rvm/gems/ruby-2.2.1/gems/youtube_dlhelper-#{version})
219
145
  * rake setup
220
146
 
221
147
  # Dependencies
@@ -235,7 +161,7 @@ You need to have ffmpeg or avconv installed. The soft dependencies will be solve
235
161
  * Step2
236
162
 
237
163
  # Donations
238
- [![publicancreators](https://pledgie.com/campaigns/29423.png?skin_name=chrome)](https://pledgie.com/campaigns/29423)
164
+ [![youtube_dlhelper](https://pledgie.com/campaigns/29423.png?skin_name=chrome)](https://pledgie.com/campaigns/29423)
239
165
  [![wishlist](http://tsv-neuss.de/cms/upload/News-Bilder/amazon1.png)](http://www.amazon.de/registry/wishlist/D75HOEQ00BDD)
240
166
  EOF
241
167
  end
@@ -251,6 +177,7 @@ tags: [ruby, opensource, youtube, de-DE]
251
177
  ---
252
178
  {% include JB/setup %}
253
179
 
180
+ [![youtube_dlhelper](http://saigkill.github.io/img/myprojects/100px-youtube_dlhelper.png)](https://github.com/saigkill/youtube_dlhelper)
254
181
  # Einführung
255
182
  youtube_dlhelper ist ein kleines Tool zum Download und Konvertierung der files. Sie starten das Programm in der Kommandozeile mit der gewünschten Youtube URL. Das Programm fragt nun nach Parametern, wie der Name des Interpreten oder der Gruppe und erstellt innerhalb Ihres festgelegten Musikverzeichnis die benötigten Unterverzeichnisse.
256
183
 
@@ -258,7 +185,7 @@ youtube_dlhelper ist ein kleines Tool zum Download und Konvertierung der files.
258
185
  Wenn Ruby bereits installiert ist, können Sie youtube_dlhelper wie folgt installieren:
259
186
 
260
187
  * gem install youtube_dlhelper
261
- * cd /path/to/gem (Falls RVM benutzt wird z.B. ~/.rvm/gems/ruby-2.2.1/gems/latex_curriculum_vitae)
188
+ * cd /path/to/gem (Falls RVM benutzt wird z.B. ~/.rvm/gems/ruby-2.2.1/gems/youtube_dlhelper-#{version})
262
189
  * rake setup
263
190
 
264
191
  # Abhängigkeiten
@@ -285,10 +212,11 @@ EOF
285
212
  puts 'Prepared your Blogpost. Please add the changes of this release'
286
213
  puts 'Now ready for social media posting'
287
214
 
215
+ # rubocop:disable Style/MultilineOperationIndentation
288
216
  # Create email to ruby-talk
289
217
  space = '%20'
290
218
  crlf = '%0D%0A'
291
- subject = "latex_curriculum_vitae #{version} released"
219
+ subject = "[ANN] youtube_dlhelper #{version} released"
292
220
  subject.gsub!(/ /, "#{space}")
293
221
  body = 'Hello Ruby list,' + "#{crlf}" + "#{crlf}" +
294
222
  "i would like to announce the youtube_dlhelper gem in version #{version}." + "#{crlf}" + "#{crlf}" +
@@ -299,7 +227,7 @@ EOF
299
227
  'The youtube_dlhelper is a short tool for download and manage the downloaded files. You are running the program inside the command line with a Youtube URL. Then it aska for a group name or interpreters name. Now it creates a Subfolder inside your Musicdirectory. Then it makes a MP3 from the downloaded file and moves it to the folder.' + "#{crlf}" + "#{crlf}" +
300
228
  'Installation:'+ "#{crlf}" + "#{crlf}" +
301
229
  ' gem install youtube_dlhelper' + "#{crlf}" +
302
- ' cd /path/to/gem \(In case of using RVM anything like ~/.rvm/gems/ruby-2.2.1/gems/latex_curriculum_vitae\)' + "#{crlf}" + "#{crlf}" +
230
+ ' cd /path/to/gem \(In case of using RVM anything like ~/.rvm/gems/ruby-2.2.1/gems/youtube_dlhelper\)' + "#{crlf}" + "#{crlf}" +
303
231
  ' rake setup' + "#{crlf}" + "#{crlf}" +
304
232
  'Dependencies:'+ "#{crlf}" + "#{crlf}" +
305
233
  'You need to have ffmpeg or avconv installed. The soft dependencies will be solved by bundler.' + "#{crlf}" + "#{crlf}" +
@@ -313,6 +241,5 @@ EOF
313
241
  body.gsub!(/ /, "#{space}")
314
242
  system("thunderbird mailto:ruby-talk@ruby-lang.org?subject=#{subject}\\&body=#{body}")
315
243
  system('rm pkg/*')
244
+ system('git add .idea/workspace && git commit -m "workspace" && git push')
316
245
  end
317
-
318
- # vim: syntax=ruby
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.9.4
1
+ 0.1.9.5
@@ -7,6 +7,3 @@ when 1
7
7
  else
8
8
  abort('Syntax Error: Please check if you have given a URL')
9
9
  end
10
-
11
-
12
- exit YoutubeDlhelper.run!(*ARGV)
@@ -23,6 +23,7 @@ require File.expand_path(File.join(File.dirname(__FILE__), 'youtube_dlhelper/che
23
23
  require File.expand_path(File.join(File.dirname(__FILE__), 'youtube_dlhelper/downloader'))
24
24
  require File.expand_path(File.join(File.dirname(__FILE__), 'youtube_dlhelper/import_config'))
25
25
  require File.expand_path(File.join(File.dirname(__FILE__), 'youtube_dlhelper/ripper'))
26
+ require File.expand_path(File.join(File.dirname(__FILE__), 'youtube_dlhelper/notifier'))
26
27
  require 'highline/import'
27
28
  require 'fileutils'
28
29
  require 'parseconfig'
@@ -124,5 +125,7 @@ class YoutubeDlhelper
124
125
 
125
126
  puts "Now you can find your file in #{music_dir}/#{folder}/#{filenamenew}.#{extension}".color(:yellow)
126
127
  puts "Thank you for using #{my_name} #{version}".color(:yellow)
128
+
129
+ Notifier.run
127
130
  end
128
131
  end
@@ -0,0 +1,36 @@
1
+ # MannsShared Library
2
+ # Description: Different shared libraries
3
+ # Work: This Module provides different modules and methods for some standard
4
+ # tasks
5
+ # Copyright (C) 2013-2015 Sascha Manns <samannsml@directbox.com>
6
+ #
7
+ # This program is free software: you can redistribute it and/or modify
8
+ # it under the terms of the GNU General Public License as published by
9
+ # the Free Software Foundation, either version 3 of the License, or
10
+ # (at your option) any later version.
11
+ #
12
+ # This program is distributed in the hope that it will be useful,
13
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ # GNU General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU General Public License
18
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
+ # Dependencies
20
+
21
+ # MannsShared Class
22
+ class YoutubeDlhelper
23
+ # Method for replacing content in a file
24
+ # @param [String] search is the search text in the target file
25
+ # @param [String] replace the replace text
26
+ # @param [String] file Target file like Author_Group.xml
27
+ # @return [String] true or false
28
+ def self.search_replace(search, replace, file)
29
+ text = File.read(file)
30
+ new_value = text.gsub(search, replace)
31
+ puts new_value
32
+ File.open(file, 'w') do |file1|
33
+ file1.puts new_value
34
+ end
35
+ end
36
+ end
@@ -93,7 +93,7 @@ module Checker
93
93
  puts 'Just the entries "Interpret" or "Group" are allowed'.color(:red)
94
94
  abort('Aborted')
95
95
  end
96
- subdir.gsub(/ /, '_')
96
+ subdir.gsub!(/ /, '_')
97
97
  folder = "#{ subdir }/Youtube-Music"
98
98
  return folder
99
99
  end
@@ -55,7 +55,6 @@ module Downloader
55
55
  # filename
56
56
  filenamenew0 = filename.gsub(/ /, '_')
57
57
  pattern = /[a-zA-Z0-9\-\s\_]/
58
- # Culture_Beat___________Mr_Vain
59
58
  filenamenew = filenamenew0.split(//).keep_if do |chr|
60
59
  chr =~ pattern
61
60
  end.join
@@ -30,8 +30,7 @@ module Import
30
30
  # @return [Array] music_dir, ogg_file_accept, ffmpeg_binary
31
31
  def self.import_config
32
32
  home = Dir.home
33
- config = ParseConfig.new(File.join(File.dirname(home),
34
- '.youtube_dlhelper/youtube_dlhelper.conf'))
33
+ config = ParseConfig.new(File.join("#{home}/.youtube_dlhelper/youtube_dlhelper.conf"))
35
34
  # @note Saving the variable musiddir
36
35
  music_dir = config['musicdir'].to_s
37
36
  # @note Saving the variable ogg_file_accept
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: utf-8
3
+ # @author Sascha Manns
4
+ # @abstract Notifier Module for latex_curriculum_vitae
5
+ #
6
+ # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
7
+ # License: GPL-3
8
+
9
+ # Dependencies
10
+
11
+ # Module for notify the user
12
+ require 'notifier'
13
+
14
+ # Module for notifying the user
15
+ module Notifier
16
+ # Method for notifying the user
17
+ def self.run
18
+ home = Dir.home
19
+ prefix = "#{home}/.rvm/rubies/default"
20
+ datadir = "#{prefix}/share"
21
+ img = "#{datadir}/youtube_dlhelper/100px-youtube_dlhelper.png"
22
+ Notifier.notify(
23
+ :image => "#{img}",
24
+ :title => 'Your YouTube video',
25
+ :message => 'Your transcoding is finished.'
26
+ )
27
+ end
28
+ end
@@ -79,6 +79,7 @@ module Ripper
79
79
  # Method for converting stuff
80
80
  # This method smells of :reek:TooManyStatements
81
81
  # This method smells of :reek:LongParameterList
82
+ # This method smells of :reek:ControlParameter
82
83
  # @param [String] ogg_file_accept OGG file as result accepted?
83
84
  # @param [String] ffmpeg_binary Path to the ffmpeg binary
84
85
  # @param [String] filenamein The original file
@@ -29,7 +29,7 @@ class YoutubeDlhelperVersion
29
29
  # Patch version
30
30
  PATCH = 9
31
31
  # Build version
32
- BUILD = 4
32
+ BUILD = 5
33
33
 
34
34
  # combined string with the full version
35
35
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.homepage = 'https://github.com/saigkill/youtube_dlhelper'
15
15
  spec.licenses = ['GPL-3']
16
16
  spec.metadata = { 'issue_tracker' => 'http://saigkill-bugs.myjetbrains.com/youtrack/issues' }
17
- spec.extra_rdoc_files = %w(CHANGELOG.md CODE_OF_CONDUCT.md LICENSE.md)
17
+ spec.extra_rdoc_files = %w(CHANGELOG.md CONTRIBUTING.md CODE_OF_CONDUCT.md LICENSE.md)
18
18
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
19
19
  f.match(%r{^(test|test|features)/})
20
20
  end
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.platform = Gem::Platform::RUBY
27
27
  spec.date = ENV['from'] ? Date.parse(ENV['from']) : Date.today
28
28
  spec.test_files = `git ls-files -- {test,test,features}/*`.split("\n")
29
- spec.post_install_message = 'Please file bugreports and feature requests on: http://saigkill-bugs.myjetbrains.com/youtrack/issue'
29
+ spec.post_install_message = '*** Run rake setup to finish the installation *** Please file bugreports and feature requests on: http://saigkill-bugs.myjetbrains.com/youtrack/issue'
30
30
  spec.add_runtime_dependency 'highline', '~> 1.7', '>= 1.7.3'
31
31
  spec.add_runtime_dependency 'parseconfig', '~> 1.0', '>= 1.0.6'
32
32
  spec.add_runtime_dependency 'viddl-rb', '~> 1.1', '>= 1.1.1'
@@ -35,21 +35,19 @@ Gem::Specification.new do |spec|
35
35
  spec.add_runtime_dependency 'addressable', '~> 2.3', '>= 2.3.8'
36
36
  spec.add_runtime_dependency 'setup', '~> 5.2', '>= 5.2.0'
37
37
  spec.add_runtime_dependency 'notifier', '~> 0.5', '>= 0.5.1'
38
+ spec.add_development_dependency 'MannsShared', '~> 0.2', '>= 0.2.0'
38
39
  spec.add_development_dependency 'rake', '~> 10.4', '>= 10.4.2'
39
40
  spec.add_development_dependency 'rdoc', '~> 4.2', '>= 4.2.0'
40
41
  spec.add_development_dependency 'bundler', '~> 1.9', '>= 1.9.6'
41
42
  spec.add_development_dependency 'yard', '~> 0.8', '>= 0.8.7.6'
42
- spec.add_development_dependency 'gem-release', '~> 0.7', '>= 0.7.3'
43
+ spec.add_development_dependency 'gem-release', '~> 0.7', '>= 0.7.4'
43
44
  spec.add_development_dependency 'coveralls', '~> 0.8', '>= 0.8.1'
44
45
  spec.add_development_dependency 'rspec', '~> 3.2', '>= 3.2.0'
45
46
  spec.add_development_dependency 'rspec-core', '~> 3.3', '>= 3.3.2'
46
- spec.add_development_dependency 'rubocop', '~> 0.33', '>= 0.33.0'
47
- spec.add_development_dependency 'travis', '~> 1.7', '>= 1.7.7'
48
- spec.add_development_dependency 'reek', '~> 3.3', '>= 3.3.0'
47
+ spec.add_development_dependency 'rubocop', '~> 0.33', '>= 0.34.0'
48
+ spec.add_development_dependency 'reek', '~> 3.3', '>= 3.3.1'
49
49
  spec.add_development_dependency 'ruby-lint', '~> 2.0', '>= 2.0.4'
50
50
  spec.add_development_dependency 'simplecov', '~> 0.10', '>= 0.10.0'
51
- spec.add_development_dependency 'fpm', '~> 1.4', '>= 1.4.0'
52
- spec.add_development_dependency 'bundler-audit', '~> 0.4', '>= 0.4.0'
53
51
  spec.add_development_dependency 'indexer', '~> 0.3', '>= 0.3.1'
54
52
  spec.add_development_dependency 'mast', '~> 1.4', '>= 1.4.0'
55
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: youtube_dlhelper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9.4
4
+ version: 0.1.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Manns
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-07 00:00:00.000000000 Z
11
+ date: 2015-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: highline
@@ -170,6 +170,26 @@ dependencies:
170
170
  - - ">="
171
171
  - !ruby/object:Gem::Version
172
172
  version: 0.5.1
173
+ - !ruby/object:Gem::Dependency
174
+ name: MannsShared
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - "~>"
178
+ - !ruby/object:Gem::Version
179
+ version: '0.2'
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: 0.2.0
183
+ type: :development
184
+ prerelease: false
185
+ version_requirements: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - "~>"
188
+ - !ruby/object:Gem::Version
189
+ version: '0.2'
190
+ - - ">="
191
+ - !ruby/object:Gem::Version
192
+ version: 0.2.0
173
193
  - !ruby/object:Gem::Dependency
174
194
  name: rake
175
195
  requirement: !ruby/object:Gem::Requirement
@@ -259,7 +279,7 @@ dependencies:
259
279
  version: '0.7'
260
280
  - - ">="
261
281
  - !ruby/object:Gem::Version
262
- version: 0.7.3
282
+ version: 0.7.4
263
283
  type: :development
264
284
  prerelease: false
265
285
  version_requirements: !ruby/object:Gem::Requirement
@@ -269,7 +289,7 @@ dependencies:
269
289
  version: '0.7'
270
290
  - - ">="
271
291
  - !ruby/object:Gem::Version
272
- version: 0.7.3
292
+ version: 0.7.4
273
293
  - !ruby/object:Gem::Dependency
274
294
  name: coveralls
275
295
  requirement: !ruby/object:Gem::Requirement
@@ -339,7 +359,7 @@ dependencies:
339
359
  version: '0.33'
340
360
  - - ">="
341
361
  - !ruby/object:Gem::Version
342
- version: 0.33.0
362
+ version: 0.34.0
343
363
  type: :development
344
364
  prerelease: false
345
365
  version_requirements: !ruby/object:Gem::Requirement
@@ -349,27 +369,7 @@ dependencies:
349
369
  version: '0.33'
350
370
  - - ">="
351
371
  - !ruby/object:Gem::Version
352
- version: 0.33.0
353
- - !ruby/object:Gem::Dependency
354
- name: travis
355
- requirement: !ruby/object:Gem::Requirement
356
- requirements:
357
- - - "~>"
358
- - !ruby/object:Gem::Version
359
- version: '1.7'
360
- - - ">="
361
- - !ruby/object:Gem::Version
362
- version: 1.7.7
363
- type: :development
364
- prerelease: false
365
- version_requirements: !ruby/object:Gem::Requirement
366
- requirements:
367
- - - "~>"
368
- - !ruby/object:Gem::Version
369
- version: '1.7'
370
- - - ">="
371
- - !ruby/object:Gem::Version
372
- version: 1.7.7
372
+ version: 0.34.0
373
373
  - !ruby/object:Gem::Dependency
374
374
  name: reek
375
375
  requirement: !ruby/object:Gem::Requirement
@@ -379,7 +379,7 @@ dependencies:
379
379
  version: '3.3'
380
380
  - - ">="
381
381
  - !ruby/object:Gem::Version
382
- version: 3.3.0
382
+ version: 3.3.1
383
383
  type: :development
384
384
  prerelease: false
385
385
  version_requirements: !ruby/object:Gem::Requirement
@@ -389,7 +389,7 @@ dependencies:
389
389
  version: '3.3'
390
390
  - - ">="
391
391
  - !ruby/object:Gem::Version
392
- version: 3.3.0
392
+ version: 3.3.1
393
393
  - !ruby/object:Gem::Dependency
394
394
  name: ruby-lint
395
395
  requirement: !ruby/object:Gem::Requirement
@@ -430,46 +430,6 @@ dependencies:
430
430
  - - ">="
431
431
  - !ruby/object:Gem::Version
432
432
  version: 0.10.0
433
- - !ruby/object:Gem::Dependency
434
- name: fpm
435
- requirement: !ruby/object:Gem::Requirement
436
- requirements:
437
- - - "~>"
438
- - !ruby/object:Gem::Version
439
- version: '1.4'
440
- - - ">="
441
- - !ruby/object:Gem::Version
442
- version: 1.4.0
443
- type: :development
444
- prerelease: false
445
- version_requirements: !ruby/object:Gem::Requirement
446
- requirements:
447
- - - "~>"
448
- - !ruby/object:Gem::Version
449
- version: '1.4'
450
- - - ">="
451
- - !ruby/object:Gem::Version
452
- version: 1.4.0
453
- - !ruby/object:Gem::Dependency
454
- name: bundler-audit
455
- requirement: !ruby/object:Gem::Requirement
456
- requirements:
457
- - - "~>"
458
- - !ruby/object:Gem::Version
459
- version: '0.4'
460
- - - ">="
461
- - !ruby/object:Gem::Version
462
- version: 0.4.0
463
- type: :development
464
- prerelease: false
465
- version_requirements: !ruby/object:Gem::Requirement
466
- requirements:
467
- - - "~>"
468
- - !ruby/object:Gem::Version
469
- version: '0.4'
470
- - - ">="
471
- - !ruby/object:Gem::Version
472
- version: 0.4.0
473
433
  - !ruby/object:Gem::Dependency
474
434
  name: indexer
475
435
  requirement: !ruby/object:Gem::Requirement
@@ -517,6 +477,7 @@ executables: []
517
477
  extensions: []
518
478
  extra_rdoc_files:
519
479
  - CHANGELOG.md
480
+ - CONTRIBUTING.md
520
481
  - CODE_OF_CONDUCT.md
521
482
  - LICENSE.md
522
483
  files:
@@ -542,7 +503,6 @@ files:
542
503
  - ".idea/youtube_dlhelper.iml"
543
504
  - ".idea/youtube_dlhelper_conflict-20150617-151434.iml"
544
505
  - ".index"
545
- - ".overcommit.yml"
546
506
  - ".rspec"
547
507
  - ".rubocop.yml"
548
508
  - ".scrutinizer.yml"
@@ -562,12 +522,14 @@ files:
562
522
  - bin/youtube_dlhelper
563
523
  - circle.yml
564
524
  - config.reek
525
+ - data/youtube_dlhelper/100px-youtube_dlhelper.png
565
526
  - etc/youtube_dlhelper.conf
566
527
  - lib/youtube_dlhelper.rb
528
+ - lib/youtube_dlhelper/change.rb
567
529
  - lib/youtube_dlhelper/checker.rb
568
530
  - lib/youtube_dlhelper/downloader.rb
569
- - lib/youtube_dlhelper/get.rb
570
531
  - lib/youtube_dlhelper/import_config.rb
532
+ - lib/youtube_dlhelper/notifier.rb
571
533
  - lib/youtube_dlhelper/ripper.rb
572
534
  - lib/youtube_dlhelper/version.rb
573
535
  - ruby-lint.yml
@@ -577,7 +539,8 @@ licenses:
577
539
  - GPL-3
578
540
  metadata:
579
541
  issue_tracker: http://saigkill-bugs.myjetbrains.com/youtrack/issues
580
- post_install_message: 'Please file bugreports and feature requests on: http://saigkill-bugs.myjetbrains.com/youtrack/issue'
542
+ post_install_message: "*** Run rake setup to finish the installation *** Please file
543
+ bugreports and feature requests on: http://saigkill-bugs.myjetbrains.com/youtrack/issue"
581
544
  rdoc_options: []
582
545
  require_paths:
583
546
  - lib