acts_as_taggable_on_steroids 1.1 → 1.2

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.
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "acts_as_taggable_on_steroids"
3
- s.version = "1.1"
4
- s.date = "2009-06-11"
3
+ s.version = "1.2"
4
+ s.date = "2010-01-01"
5
5
  s.summary = "Rails plugin that is based on acts_as_taggable by DHH but includes extras such as tests, smarter tag assignment, and tag cloud calculations."
6
6
  s.email = "jonathan.viney@gmail.com"
7
7
  s.homepage = "http://github.com/jviney/acts_as_taggable_on_steroids"
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
19
19
  "generators/acts_as_taggable_migration/templates/migration.rb",
20
20
  "init.rb",
21
21
  "lib/acts_as_taggable.rb",
22
+ "lib/acts_as_taggable_on_steroids.rb",
22
23
  "lib/tag.rb",
23
24
  "lib/tag_list.rb",
24
25
  "lib/tagging.rb",
@@ -27,7 +28,7 @@ Gem::Specification.new do |s|
27
28
  "Rakefile",
28
29
  "README",
29
30
  ]
30
- s.test_files = [
31
+ s.test_files = [
31
32
  "test/abstract_unit.rb",
32
33
  "test/acts_as_taggable_test.rb",
33
34
  "test/database.yml",
@@ -0,0 +1 @@
1
+ load File.join(File.dirname(__FILE__), 'acts_as_taggable.rb')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_taggable_on_steroids
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.1"
4
+ version: "1.2"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Viney
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-11 00:00:00 -06:00
12
+ date: 2010-01-01 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -28,6 +28,7 @@ files:
28
28
  - generators/acts_as_taggable_migration/templates/migration.rb
29
29
  - init.rb
30
30
  - lib/acts_as_taggable.rb
31
+ - lib/acts_as_taggable_on_steroids.rb
31
32
  - lib/tag.rb
32
33
  - lib/tag_list.rb
33
34
  - lib/tagging.rb