GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: DataMapper port of the Paperclip plugin by Thoughtbot
Homepage: http://invalidlogic.com/dm-paperclip/
Clone URL: git://github.com/krobertson/dm-paperclip.git
Updated version attributes, 2.1.4 now
krobertson (author)
Sun Sep 28 16:12:54 -0700 2008
commit  b0312964d8a3c69fbc60806e89aa4361711156e7
tree    bbc1dee2b372ccb18e34dbbf1efee1156ab92364
parent  5d0d65742aa12aaa20e048cd9b55e8a3bd5f2cf2
...
30
31
32
33
 
34
35
36
...
55
56
57
58
 
59
60
61
62
 
63
64
65
...
68
69
70
71
 
72
73
74
...
30
31
32
 
33
34
35
36
...
55
56
57
 
58
59
60
61
 
62
63
64
65
...
68
69
70
 
71
72
73
74
0
@@ -30,7 +30,7 @@ Rake::RDocTask.new(:doc) do |rdoc|
0
   rdoc.rdoc_dir = 'doc'
0
   rdoc.title = 'DM-Paperclip'
0
   rdoc.options << '--line-numbers' << '--inline-source'
0
- rdoc.rdoc_files.include('README.textile')
0
+ rdoc.rdoc_files.include('README.rdoc')
0
   rdoc.rdoc_files.include('lib/**/*.rb')
0
 end
0
  
0
@@ -55,11 +55,11 @@ spec = Gem::Specification.new do |s|
0
   s.name = "dm-paperclip"
0
   s.version = Paperclip::VERSION
0
   s.author = "Ken Robertson"
0
- s.email = "ken@invalidlogic.com jyurek@thoughtbot.com"
0
+ s.email = "ken@invalidlogic.com"
0
   s.homepage = "http://invalidlogic.com/dm-paperclip/"
0
   s.platform = Gem::Platform::RUBY
0
   s.summary = "File attachments as attributes for DataMapper, based on the original Paperclip by Jon Yurek at Thoughtbot"
0
- s.files = FileList["README.textile",
0
+ s.files = FileList["README.rdoc",
0
                                  "LICENSE",
0
                                  "Rakefile",
0
                                  "init.rb",
0
@@ -68,7 +68,7 @@ spec = Gem::Specification.new do |s|
0
   s.test_files = FileList["test/**/test_*.rb"].to_a
0
   s.rubyforge_project = "dm-paperclip"
0
   s.has_rdoc = true
0
- s.extra_rdoc_files = ["README.textile"]
0
+ s.extra_rdoc_files = ["README.rdoc"]
0
   s.rdoc_options << '--line-numbers' << '--inline-source'
0
   s.requirements << "ImageMagick"
0
   s.requirements << "data_mapper"
...
37
38
39
40
 
41
42
43
...
37
38
39
 
40
41
42
43
0
@@ -37,7 +37,7 @@ require File.join(File.dirname(__FILE__), 'dm-paperclip', 'attachment')
0
 require File.join(File.dirname(__FILE__), 'dm-paperclip', 'validations') unless defined?(DataMapper::Validate).nil?
0
 
0
 module Paperclip
0
- VERSION = "2.1.2.1"
0
+ VERSION = "2.1.4"
0
   class << self
0
     # Provides configurability to Paperclip. There are a number of options available, such as:
0
     # * whiny_thumbnails: Will raise an error if Paperclip cannot process thumbnails of

Comments

    No one has commented yet.