jviney / acts_as_taggable_on_steroids

Tagging for Ruby on Rails

This URL has Read+Write access

acts_as_taggable_on_steroids / acts_as_taggable_on_steroids.gemspec
100644 55 lines (54 sloc) 1.947 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Gem::Specification.new do |s|
  s.name = "acts_as_taggable_on_steroids"
  s.version = "1.1"
  s.date = "2009-06-11"
  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."
  s.email = "jonathan.viney@gmail.com"
  s.homepage = "http://github.com/jviney/acts_as_taggable_on_steroids"
  s.description = "Rails plugin that is based on acts_as_taggable by DHH but includes extras such as tests, smarter tag assignment, and tag cloud calculations."
  s.has_rdoc = true
  s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
  s.rubyforge_project = "acts_as_taggable_on_steroids"
  s.authors = "Jonathan Viney"
  s.files = [
    "acts_as_taggable_on_steroids.gemspec",
    "CHANGELOG",
    "generators/acts_as_taggable_migration",
    "generators/acts_as_taggable_migration/acts_as_taggable_migration_generator.rb",
    "generators/acts_as_taggable_migration/templates",
    "generators/acts_as_taggable_migration/templates/migration.rb",
    "init.rb",
    "lib/acts_as_taggable.rb",
    "lib/tag.rb",
    "lib/tag_list.rb",
    "lib/tagging.rb",
    "lib/tags_helper.rb",
    "MIT-LICENSE",
    "Rakefile",
    "README",
    ]
  s.test_files = [
    "test/abstract_unit.rb",
    "test/acts_as_taggable_test.rb",
    "test/database.yml",
    "test/fixtures",
    "test/fixtures/magazine.rb",
    "test/fixtures/magazines.yml",
    "test/fixtures/photo.rb",
    "test/fixtures/photos.yml",
    "test/fixtures/post.rb",
    "test/fixtures/posts.yml",
    "test/fixtures/special_post.rb",
    "test/fixtures/subscription.rb",
    "test/fixtures/subscriptions.yml",
    "test/fixtures/taggings.yml",
    "test/fixtures/tags.yml",
    "test/fixtures/user.rb",
    "test/fixtures/users.yml",
    "test/schema.rb",
    "test/tag_list_test.rb",
    "test/tag_test.rb",
    "test/tagging_test.rb",
    "test/tags_helper_test.rb"
    ]
end