Sha256: 9e5c2c7d260f4c8299c47709139450c46b215611fac321f7fcfd8e1c8f936d6d

Contents?: true

Size: 1.78 KB

Versions: 1

Compression:

Stored size: 1.78 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mp4_renamer/version'
Gem::Specification.new do |spec|
  spec.name          = 'mp4_renamer'
  spec.version       = Mp4Renamer::VERSION
  spec.authors       = ['Burin Choomnuan']
  spec.email         = ['agilecreativity@gmail.com']
  spec.summary       = %q{Simple gem to rename mp4 and m4a files by adding running time to the filename using embeded metadata}
  spec.description   = %q{Rename the mp4 and m4a files by adding the running time to the end of the filename}
  spec.homepage      = 'https://github.com/agilecreativity/mp4_renamer'
  spec.required_ruby_version = ">= 1.9.3"
  spec.license       = 'MIT'
  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'activesupport-core-ext', '~> 4.0.0.2'
  spec.add_runtime_dependency 'thor', '~> 0.19.1'
  spec.add_runtime_dependency 'mp4info', '~> 1.7.3'
  spec.add_runtime_dependency 'code_lister'

  spec.add_development_dependency 'awesome_print', '~> 1.2.0'
  spec.add_development_dependency 'bundler', '~> 1.7.3'
  spec.add_development_dependency 'gem-ctags', '~> 1.0.6'
  spec.add_development_dependency 'guard', '~> 2.6.1'
  spec.add_development_dependency 'guard-minitest', '~> 2.3.1'
  spec.add_development_dependency 'minitest', '~> 5.4.0'
  spec.add_development_dependency 'minitest-spec-context', '~> 0.0.3'
  spec.add_development_dependency 'pry', '~> 0.10.0'
  spec.add_development_dependency 'rake', '~> 10.3.2'
  spec.add_development_dependency 'rubocop', '~> 0.24.0'
  spec.add_development_dependency 'yard', '~> 0.8.7'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mp4_renamer-0.1.0 mp4_renamer.gemspec