uploader 0.1.19 → 0.1.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +3 -27
  2. data/VERSION +1 -1
  3. data/uploader.gemspec +5 -3
  4. metadata +2 -3
data/Rakefile CHANGED
@@ -42,33 +42,9 @@ begin
42
42
  gemspec.add_dependency "mime-types"
43
43
  gemspec.add_dependency "rack"
44
44
  end
45
- rescue LoadError
46
- puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
47
- end
48
-
49
- # rubyforge tasks
50
- begin
51
- require 'rake/contrib/sshpublisher'
52
- namespace :rubyforge do
53
-
54
- desc "Release gem and RDoc documentation to RubyForge"
55
- task :release => ["rubyforge:release:gem", "rubyforge:release:docs"]
56
-
57
- namespace :release do
58
- desc "Publish RDoc to RubyForge."
59
- task :docs => [:rdoc] do
60
- config = YAML.load(
61
- File.read(File.expand_path('~/.rubyforge/user-config.yml'))
62
- )
63
-
64
- host = "#{config['username']}@rubyforge.org"
65
- remote_dir = "/var/www/gforge-projects/uploader/"
66
- local_dir = 'rdoc'
67
-
68
- Rake::SshDirPublisher.new(host, remote_dir, local_dir).upload
69
- end
70
- end
45
+ Jeweler::RubyforgeTasks.new do |rubyforge|
46
+ rubyforge.doc_task = "rdoc"
71
47
  end
72
48
  rescue LoadError
73
- puts "Rake SshDirPublisher is unavailable or your rubyforge environment is not configured."
49
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
74
50
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.19
1
+ 0.1.20
data/uploader.gemspec CHANGED
@@ -1,12 +1,15 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
1
4
  # -*- encoding: utf-8 -*-
2
5
 
3
6
  Gem::Specification.new do |s|
4
7
  s.name = %q{uploader}
5
- s.version = "0.1.19"
8
+ s.version = "0.1.20"
6
9
 
7
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
11
  s.authors = ["Justin Ball", "David South"]
9
- s.date = %q{2009-08-08}
12
+ s.date = %q{2009-08-12}
10
13
  s.description = %q{Uploader gem that makes it simple add multiple file uploads to your Rails project using SWFUpload and Paperclip}
11
14
  s.email = %q{justinball@gmail.com}
12
15
  s.extra_rdoc_files = [
@@ -233,7 +236,6 @@ Gem::Specification.new do |s|
233
236
  "test/rails_root/config/routes.rb",
234
237
  "test/rails_root/db/migrate/20090517040220_create_uploads.rb",
235
238
  "test/rails_root/db/migrate/20090602041838_create_users.rb",
236
- "test/rails_root/db/schema.rb",
237
239
  "test/rails_root/features/step_definitions/webrat_steps.rb",
238
240
  "test/rails_root/features/support/env.rb",
239
241
  "test/rails_root/public/dispatch.rb",
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.19
4
+ version: 0.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Ball
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-08-08 00:00:00 -06:00
13
+ date: 2009-08-12 00:00:00 -06:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -280,7 +280,6 @@ test_files:
280
280
  - test/rails_root/config/routes.rb
281
281
  - test/rails_root/db/migrate/20090517040220_create_uploads.rb
282
282
  - test/rails_root/db/migrate/20090602041838_create_users.rb
283
- - test/rails_root/db/schema.rb
284
283
  - test/rails_root/features/step_definitions/webrat_steps.rb
285
284
  - test/rails_root/features/support/env.rb
286
285
  - test/rails_root/public/dispatch.rb