citrusbyte / milton

Extensible Rails upload handling plugin with thumbnailing & Amazon S3 support

This URL has Read+Write access

benalavi (author)
Tue Jul 28 12:15:06 -0700 2009
commit  5b926204124866302c24001d7a365a6672bb01bd
tree    38886a7d264906f9d5b49c845e15a47ee02a77c1
parent  ffdc89410fc4d2864ab9fd0d0dac92010a619d6b
milton / milton.gemspec
100644 39 lines (38 sloc) 1.391 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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 = [
     'README.markdown',
'MIT-LICENSE',
'Rakefile',
'init.rb',
'lib/milton/attachment.rb',
'lib/milton/core/file.rb',
'lib/milton/core/tempfile.rb',
'lib/milton/derivatives/derivative.rb',
'lib/milton/derivatives/thumbnail/crop_calculator.rb',
'lib/milton/derivatives/thumbnail/image.rb',
'lib/milton/derivatives/thumbnail.rb',
'lib/milton/storage/disk_file.rb',
'lib/milton/storage/s3_file.rb',
'lib/milton/storage/stored_file.rb',
'lib/milton/uploading.rb',
'lib/milton.rb',
'test/fixtures/big-milton.jpg',
'test/fixtures/milton.jpg',
'test/fixtures/mini-milton.jpg',
'test/fixtures/unsanitary .milton.jpg',
'test/milton/attachment_test.rb',
'test/milton/milton_test.rb',
'test/milton/resizing_test.rb',
'test/s3_helper.rb',
'test/schema.rb',
'test/test_helper.rb'
  ]
end