citrusbyte / milton

Extensible Rails upload handling plugin with thumbnailing & Amazon S3 support

benalavi (author)
Tue Jul 28 12:15:06 -0700 2009
commit  5b926204124866302c24001d7a365a6672bb01bd
tree    38886a7d264906f9d5b49c845e15a47ee02a77c1
parent  ffdc89410fc4d2864ab9fd0d0dac92010a619d6b
milton / milton.gemspec.erb
100644 23 lines (22 sloc) 0.813 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
  s.name = 'milton'
  s.rubyforge_project = 'milton'
  s.summary = "Rails file and upload handling plugin built for extensibility. Supports Amazon S3 and resizes images."
  s.description = "Rails file and upload handling plugin built for extensibility. Supports Amazon S3 and resizes images."
  s.version = '0.3.5'
  s.author = "Ben Alavi"
  s.email = "ben.alavi@citrusbyte.com"
  s.homepage = "http://labs.citrusbyte.com/projects/milton"
  s.files = [
    <%= Dir.glob([
      'README*',
      'MIT-LICENSE',
      'Rakefile',
      'init.rb',
      'lib/**/*.rb',
      'test/fixtures/*.*',
      'test/milton/*.*',
      'test/*.rb'
    ]).collect{ |file| "\t\t'#{file}'" }.join(",\n") %>
  ]
end