-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathRakefile
18 lines (15 loc) · 911 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- encoding: utf-8 -*-
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "paperclip-strip-strange-characters"
s.version = '0.0.1'
s.authors = ["Marcin Lewandowski"]
s.email = ["[email protected]"]
s.summary = %q{Simple gem for Ruby on Rails that makes file names of paperclip attachments URL's browser friendly by stripping any strange characters.}
s.description = %q{Simple gem for Ruby on Rails that makes file names of paperclip attachments URL's browser friendly by stripping any strange characters. It adds String#strip_strange_characters and filter for paperclip postprocessing. See the website for more information.}
s.homepage = "https://github.com/saepia/paperclip-strip-strange-characters"
s.files = ["Gemfile", "Rakefile", "lib/", "lib/paperclip-strip-strange-characters.rb"]
s.require_paths = ["lib"]
s.add_dependency 'paperclip'
end
Jeweler::RubygemsDotOrgTasks.new