uploader 0.1.12 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -31,7 +31,7 @@ begin
31
31
  gemspec.homepage = "http://github.com/jbasdf/uploader"
32
32
  gemspec.description = "Uploader gem that makes it simple add multiple file uploads to your Rails project using SWFUpload and Paperclip"
33
33
  gemspec.authors = ["Justin Ball", "David South"]
34
- #gemspec.files.include %w( tasks/rails.rake lib/uploader/*.rb lib/uploader/middleware/*.rb db/migrate/*.rb public/images/file_icons/* app/views/uploads/* )
34
+ gemspec.files.include %w( test/rails_root/db/* )
35
35
  gemspec.rubyforge_project = 'uploader'
36
36
  gemspec.add_dependency "mime-types"
37
37
  gemspec.add_dependency "rack"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.12
1
+ 0.1.13
data/rdoc/created.rid CHANGED
@@ -1 +1 @@
1
- Mon, 01 Jun 2009 09:49:54 -0600
1
+ Tue, 02 Jun 2009 14:11:05 -0600
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Sat May 30 17:44:16 -0600 2009</td>
59
+ <td>Tue Jun 02 14:09:00 -0600 2009</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -80,8 +80,9 @@ multiple file uploads into your application using SWFUpload
80
80
  sudo gem install uploader
81
81
  </p>
82
82
  <p>
83
- Installing uploader should also install mime-types. If for some reason it
84
- does not then manually install it: sudo gem install mime-types
83
+ Installing uploader should also install mime-types and rack. If for some
84
+ reason it does not then manually install it: sudo gem install mime-types
85
+ sudo gem install rack
85
86
  </p>
86
87
  <h3>Add the gem to environment.rb</h3>
87
88
  <p>
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Wed May 20 17:45:12 -0600 2009</td>
59
+ <td>Mon Jun 01 22:33:20 -0600 2009</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
Binary file
data/uploader.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{uploader}
5
- s.version = "0.1.12"
5
+ s.version = "0.1.13"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Justin Ball", "David South"]
@@ -176,8 +176,11 @@ Gem::Specification.new do |s|
176
176
  "test/rails_root/config/initializers/session_store.rb",
177
177
  "test/rails_root/config/routes.rb",
178
178
  "test/rails_root/db/.keep",
179
+ "test/rails_root/db/development.sqlite3",
179
180
  "test/rails_root/db/migrate/20090517040220_create_uploads.rb",
180
181
  "test/rails_root/db/migrate/20090602041838_create_users.rb",
182
+ "test/rails_root/db/schema.rb",
183
+ "test/rails_root/db/test.sqlite3",
181
184
  "test/rails_root/features/step_definitions/webrat_steps.rb",
182
185
  "test/rails_root/features/support/env.rb",
183
186
  "test/rails_root/public/.htaccess",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uploader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.12
4
+ version: 0.1.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Ball
@@ -205,8 +205,11 @@ files:
205
205
  - test/rails_root/config/initializers/session_store.rb
206
206
  - test/rails_root/config/routes.rb
207
207
  - test/rails_root/db/.keep
208
+ - test/rails_root/db/development.sqlite3
208
209
  - test/rails_root/db/migrate/20090517040220_create_uploads.rb
209
210
  - test/rails_root/db/migrate/20090602041838_create_users.rb
211
+ - test/rails_root/db/schema.rb
212
+ - test/rails_root/db/test.sqlite3
210
213
  - test/rails_root/features/step_definitions/webrat_steps.rb
211
214
  - test/rails_root/features/support/env.rb
212
215
  - test/rails_root/public/.htaccess