disguise 0.3.6 → 0.3.7

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
@@ -22,35 +22,11 @@ begin
22
22
  test/*
23
23
  lib/**/* )
24
24
  end
25
- rescue LoadError
26
- puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
27
- end
28
-
29
- # rubyforge tasks
30
- begin
31
- require 'rake/contrib/sshpublisher'
32
- namespace :rubyforge do
33
-
34
- desc "Release gem and RDoc documentation to RubyForge"
35
- task :release => ["rubyforge:release:gem", "rubyforge:release:docs"]
36
-
37
- namespace :release do
38
- desc "Publish RDoc to RubyForge."
39
- task :docs => [:rdoc] do
40
- config = YAML.load(
41
- File.read(File.expand_path('~/.rubyforge/user-config.yml'))
42
- )
43
-
44
- host = "#{config['username']}@rubyforge.org"
45
- remote_dir = "/var/www/gforge-projects/disguise/"
46
- local_dir = 'rdoc'
47
-
48
- Rake::SshDirPublisher.new(host, remote_dir, local_dir).upload
49
- end
50
- end
25
+ Jeweler::RubyforgeTasks.new do |rubyforge|
26
+ rubyforge.doc_task = "rdoc"
51
27
  end
52
28
  rescue LoadError
53
- puts "Rake SshDirPublisher is unavailable or your rubyforge environment is not configured."
29
+ puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
54
30
  end
55
31
 
56
32
  desc 'Test the disguise gem.'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.6
1
+ 0.3.7
data/disguise.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{disguise}
5
- s.version = "0.3.6"
8
+ s.version = "0.3.7"
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"]
9
- s.date = %q{2009-08-08}
12
+ s.date = %q{2009-08-12}
10
13
  s.description = %q{Add themes to your Rails application to easily change the view layer and impress everyone you know}
11
14
  s.email = %q{justinball@gmail.com}
12
15
  s.extra_rdoc_files = [
@@ -266,7 +269,6 @@ Gem::Specification.new do |s|
266
269
  "test/rails_root/db/migrate/20090530170040_create_themes.rb",
267
270
  "test/rails_root/db/migrate/20090602041838_create_users.rb",
268
271
  "test/rails_root/db/migrate/20090606153236_create_domain_themes.rb",
269
- "test/rails_root/db/schema.rb",
270
272
  "test/rails_root/features/step_definitions/webrat_steps.rb",
271
273
  "test/rails_root/features/support/env.rb",
272
274
  "test/rails_root/public/dispatch.rb",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: disguise
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Ball
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-08 00:00:00 -06:00
12
+ date: 2009-08-12 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -234,7 +234,6 @@ test_files:
234
234
  - test/rails_root/db/migrate/20090530170040_create_themes.rb
235
235
  - test/rails_root/db/migrate/20090602041838_create_users.rb
236
236
  - test/rails_root/db/migrate/20090606153236_create_domain_themes.rb
237
- - test/rails_root/db/schema.rb
238
237
  - test/rails_root/features/step_definitions/webrat_steps.rb
239
238
  - test/rails_root/features/support/env.rb
240
239
  - test/rails_root/public/dispatch.rb
@@ -1,31 +0,0 @@
1
- # This file is auto-generated from the current state of the database. Instead of editing this file,
2
- # please use the migrations feature of Active Record to incrementally modify your database, and
3
- # then regenerate this schema definition.
4
- #
5
- # Note that this schema.rb definition is the authoritative source for your database schema. If you need
6
- # to create the application database on another system, you should be using db:schema:load, not running
7
- # all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
8
- # you'll amass, the slower it'll run and the greater likelihood for issues).
9
- #
10
- # It's strongly recommended to check this file into your version control system.
11
-
12
- ActiveRecord::Schema.define(:version => 20090606153236) do
13
-
14
- create_table "domain_themes", :force => true do |t|
15
- t.string "uri"
16
- t.string "name"
17
- end
18
-
19
- add_index "domain_themes", ["uri"], :name => "index_domain_themes_on_uri"
20
-
21
- create_table "themes", :force => true do |t|
22
- t.string "name"
23
- end
24
-
25
- create_table "users", :force => true do |t|
26
- t.string "name"
27
- t.datetime "created_at"
28
- t.datetime "updated_at"
29
- end
30
-
31
- end