mp4_renamer 0.1.1 → 0.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 95e7801e14239e1fc64b6362d1ef1a1f282a7abe
4
- data.tar.gz: f3a1153527d119671b7f319eb3afdca20df6e665
3
+ metadata.gz: 85a401c7e8d3a1f27979b44a367d79be5f8388c7
4
+ data.tar.gz: f89ba0f52429d393912622ac28b62092468f503c
5
5
  SHA512:
6
- metadata.gz: 0c846d7c3b8408b5fc8375166d0771d0dc9ac22a4342adc53b6f9b53fbca0d8592a3908308375f810a8173c659d7cc5b897be5247b216019bf3cd00799bf7d19
7
- data.tar.gz: 1d210aa484a8fb297160094d3a1e8d3b773297449f6b74e7c040640cfedac84f22c60a4ae2ed3f0796d8dc4a8dc239c6619a5906b0821fc1b14d3eda6b26d7ff
6
+ metadata.gz: 83f2e63c617eccb1576efe26ba8d977fda82f42a65659e9350da4028defe24e3510c5bdfb1e3fdbe9e1591d8bc77ad59b2334fb1d645a2d9732aaa188608a0f9
7
+ data.tar.gz: b1ec31c2d9b9a0085fffe24964839f5f7f544c31e5aebac6e42847ca1093b8ebf0d9be3548a8f07850a99dbf3c09bc40944f6ae0a01ef82305c49fe16bc4245e
data/CHANGELOGS.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ### Changelogs
2
2
 
3
+ #### 0.1.2
4
+
5
+ - Code cleanup
6
+
3
7
  #### 0.1.1
4
8
 
5
9
  - Be specific about the version of `code_lister` gem
data/Guardfile CHANGED
@@ -1,7 +1,4 @@
1
- # A sample Guardfile
2
1
  # More info at https://github.com/guard/guard#readme
3
- project_name = 'mp4_renamer'
4
-
5
2
  guard 'minitest' do
6
3
  watch(%r|^test/(.*)\/?test_(.*)\.rb|)
7
4
  watch(%r|^lib/(.*)([^/]+)\.rb|) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
data/README.md CHANGED
@@ -57,7 +57,7 @@ mp4_renamer --base-dir . --recursive
57
57
  mp4_renamer -b . -r
58
58
  ```
59
59
 
60
- Shous show outputs similar to the following
60
+ Should show outputs similar to the following
61
61
 
62
62
  ```
63
63
  FYI: your options {:base_dir=>".", :recursive=>true, :commit=>false, :version=>false}
data/bin/mp4_renamer CHANGED
@@ -1,11 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  require_relative '../lib/mp4_renamer'
3
3
  include Mp4Renamer
4
- # To get the help for your gem uncomment the next line
5
- # Mp4Renamer::CLI.start(ARGV)
6
- # and run the following command
7
- # $./bin/mp4_renamer help execute
8
-
9
4
  if ARGV.empty?
10
5
  Mp4Renamer::CLI.start(%w[usage])
11
6
  else
@@ -1,4 +1,3 @@
1
- #require 'fileutils'
2
1
  module Mp4Renamer
3
2
  module Errors
4
3
  InvalidInputFileError = Class.new(StandardError)
@@ -1,3 +1,3 @@
1
1
  module Mp4Renamer
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
@@ -30,16 +30,3 @@ module Mp4Renamer
30
30
  end
31
31
  end
32
32
  end
33
-
34
- if __FILE__ == $0
35
- require 'pry'
36
- require 'awesome_print'
37
- include Mp4Renamer
38
-
39
- helper = FixtureHelper.new
40
-
41
- helper.setup
42
- samples = helper.sample_files
43
- puts samples
44
- helper.teardown
45
- end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mp4_renamer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Burin Choomnuan