Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
owahab committed May 30, 2011
0 parents commit c24a8fd
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in paperclip-ffmpeg.gemspec
gemspec
Empty file added README.md
Empty file.
2 changes: 2 additions & 0 deletions Rakefile
@@ -0,0 +1,2 @@
require 'bundler'
Bundler::GemHelper.install_tasks
7 changes: 7 additions & 0 deletions lib/paperclip-ffmpeg.rb
@@ -0,0 +1,7 @@
module Paperclip
module Ffmpeg
def is_video?
true
end
end
end
5 changes: 5 additions & 0 deletions lib/paperclip-ffmpeg/version.rb
@@ -0,0 +1,5 @@
module Paperclip
module Ffmpeg
VERSION = "0.0.1"
end
end
23 changes: 23 additions & 0 deletions paperclip-ffmpeg.gemspec
@@ -0,0 +1,23 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "paperclip-ffmpeg/version"

Gem::Specification.new do |s|
s.name = "paperclip-ffmpeg"
s.version = Paperclip::Ffmpeg::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Omar Abdel-Wahab"]
s.email = ["owahab@gmail.com"]
s.homepage = ""
s.summary = %q{Process your attachments with FFMPEG}
s.description = %q{Process your attachments with FFMPEG}

s.rubyforge_project = "paperclip-ffmpeg"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_dependency('paperclip', '>=2.3.8')
end

0 comments on commit c24a8fd

Please sign in to comment.