railsgarden-has_draft 0.1.0 → 0.1.1

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
@@ -24,7 +24,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
24
24
  end
25
25
 
26
26
 
27
- Echoe.new('has_draft', '0.1.0') do |p|
27
+ Echoe.new('has_draft', '0.1.1') do |p|
28
28
  p.description = "Allows for your ActiveRecord models to have drafts which are stored in a separate duplicate table."
29
29
  p.url = "http://github.com/railsgarden/has_draft"
30
30
  p.author = "Ben Hughes"
@@ -2,15 +2,15 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{has_draft}
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Ben Hughes"]
9
- s.date = %q{2009-01-16}
9
+ s.date = %q{2009-03-09}
10
10
  s.description = %q{Allows for your ActiveRecord models to have drafts which are stored in a separate duplicate table.}
11
11
  s.email = %q{ben@railsgarden.com}
12
12
  s.extra_rdoc_files = ["CHANGELOG", "lib/has_draft.rb", "README.rdoc", "tasks/has_draft_tasks.rake"]
13
- s.files = ["CHANGELOG", "has_draft_plugin.sqlite3", "init.rb", "install.rb", "lib/has_draft.rb", "Manifest", "MIT-LICENSE", "Rakefile", "README.rdoc", "tasks/has_draft_tasks.rake", "test/config/database.yml", "test/fixtures/article_drafts.yml", "test/fixtures/articles.yml", "test/has_draft_test.rb", "test/models/article.rb", "test/schema.rb", "test/test_helper.rb", "uninstall.rb", "has_draft.gemspec"]
13
+ s.files = ["CHANGELOG", "has_draft.gemspec", "init.rb", "install.rb", "lib/has_draft.rb", "MIT-LICENSE", "Rakefile", "README.rdoc", "tasks/has_draft_tasks.rake", "test/config/database.yml", "test/fixtures/article_drafts.yml", "test/fixtures/articles.yml", "test/has_draft_test.rb", "test/models/article.rb", "test/schema.rb", "test/test_helper.rb", "uninstall.rb", "Manifest"]
14
14
  s.has_rdoc = true
15
15
  s.homepage = %q{http://github.com/railsgarden/has_draft}
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Has_draft", "--main", "README.rdoc"]
data/init.rb CHANGED
@@ -1,3 +1 @@
1
- require 'has_draft'
2
-
3
- ActiveRecord::Base.send(:include, Rubiety::HasDraft)
1
+ require 'has_draft'
@@ -117,4 +117,6 @@ module Rubiety
117
117
  end
118
118
  end
119
119
  end
120
- end
120
+ end
121
+
122
+ ActiveRecord::Base.send(:include, Rubiety::HasDraft)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railsgarden-has_draft
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Hughes
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-01-16 00:00:00 -08:00
12
+ date: 2009-03-09 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -26,11 +26,10 @@ extra_rdoc_files:
26
26
  - tasks/has_draft_tasks.rake
27
27
  files:
28
28
  - CHANGELOG
29
- - has_draft_plugin.sqlite3
29
+ - has_draft.gemspec
30
30
  - init.rb
31
31
  - install.rb
32
32
  - lib/has_draft.rb
33
- - Manifest
34
33
  - MIT-LICENSE
35
34
  - Rakefile
36
35
  - README.rdoc
@@ -43,7 +42,7 @@ files:
43
42
  - test/schema.rb
44
43
  - test/test_helper.rb
45
44
  - uninstall.rb
46
- - has_draft.gemspec
45
+ - Manifest
47
46
  has_rdoc: true
48
47
  homepage: http://github.com/railsgarden/has_draft
49
48
  post_install_message:
data/Manifest DELETED
@@ -1,18 +0,0 @@
1
- CHANGELOG
2
- has_draft_plugin.sqlite3
3
- init.rb
4
- install.rb
5
- lib/has_draft.rb
6
- Manifest
7
- MIT-LICENSE
8
- Rakefile
9
- README.rdoc
10
- tasks/has_draft_tasks.rake
11
- test/config/database.yml
12
- test/fixtures/article_drafts.yml
13
- test/fixtures/articles.yml
14
- test/has_draft_test.rb
15
- test/models/article.rb
16
- test/schema.rb
17
- test/test_helper.rb
18
- uninstall.rb