muck-contents 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{muck-contents}
8
- s.version = "0.1.3"
8
+ s.version = "0.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Ball"]
12
- s.date = %q{2009-08-13}
12
+ s.date = %q{2009-09-10}
13
13
  s.email = %q{justinball@gmail.com}
14
14
  s.extra_rdoc_files = [
15
15
  "README.rdoc"
@@ -33,7 +33,6 @@ Gem::Specification.new do |s|
33
33
  "config/muck_contents_routes.rb",
34
34
  "db/migrate/20090703055724_add_contents.rb",
35
35
  "db/migrate/20090806230610_add_layout_to_contents.rb",
36
- "db/migrate/20090808005918_add_scope_index_to_slugs.rb",
37
36
  "db/migrate/20090808175401_add_contents_comment_counter_cache.rb",
38
37
  "lib/action_controller/acts/muck_content_handler.rb",
39
38
  "lib/active_record/acts/muck_content.rb",
@@ -585,12 +584,11 @@ Gem::Specification.new do |s|
585
584
  "test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb",
586
585
  "test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb"
587
586
  ]
588
- s.has_rdoc = true
589
587
  s.homepage = %q{http://github.com/jbasdf/muck_contents}
590
588
  s.rdoc_options = ["--charset=UTF-8"]
591
589
  s.require_paths = ["lib"]
592
590
  s.rubyforge_project = %q{muck-contents}
593
- s.rubygems_version = %q{1.3.1}
591
+ s.rubygems_version = %q{1.3.5}
594
592
  s.summary = %q{Add content to your muck based project}
595
593
  s.test_files = [
596
594
  "test/rails_root/app/controllers/application_controller.rb",
@@ -655,7 +653,7 @@ Gem::Specification.new do |s|
655
653
 
656
654
  if s.respond_to? :specification_version then
657
655
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
658
- s.specification_version = 2
656
+ s.specification_version = 3
659
657
 
660
658
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
661
659
  s.add_runtime_dependency(%q<muck-engine>, [">= 0"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muck-contents
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
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-13 00:00:00 -06:00
12
+ date: 2009-09-10 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -109,7 +109,6 @@ files:
109
109
  - config/muck_contents_routes.rb
110
110
  - db/migrate/20090703055724_add_contents.rb
111
111
  - db/migrate/20090806230610_add_layout_to_contents.rb
112
- - db/migrate/20090808005918_add_scope_index_to_slugs.rb
113
112
  - db/migrate/20090808175401_add_contents_comment_counter_cache.rb
114
113
  - lib/action_controller/acts/muck_content_handler.rb
115
114
  - lib/active_record/acts/muck_content.rb
@@ -662,6 +661,8 @@ files:
662
661
  - test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb
663
662
  has_rdoc: true
664
663
  homepage: http://github.com/jbasdf/muck_contents
664
+ licenses: []
665
+
665
666
  post_install_message:
666
667
  rdoc_options:
667
668
  - --charset=UTF-8
@@ -682,9 +683,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
682
683
  requirements: []
683
684
 
684
685
  rubyforge_project: muck-contents
685
- rubygems_version: 1.3.1
686
+ rubygems_version: 1.3.5
686
687
  signing_key:
687
- specification_version: 2
688
+ specification_version: 3
688
689
  summary: Add content to your muck based project
689
690
  test_files:
690
691
  - test/rails_root/app/controllers/application_controller.rb
@@ -1,9 +0,0 @@
1
- class AddScopeIndexToSlugs < ActiveRecord::Migration
2
- def self.up
3
- add_index :slugs, :scope
4
- end
5
-
6
- def self.down
7
- remove_index :slugs, :scope
8
- end
9
- end