bjeanes / acts_as_taggable_redux forked from geemus/acts_as_taggable_redux

Allows for user owned tags to be added to multiple classes, and makes tags easier to work with.

This URL has Read+Write access

acts_as_taggable_redux / acts_as_taggable_redux.gemspec
100644 45 lines (41 sloc) 1.48 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
Gem::Specification.new do |s|
  s.name = 'acts_as_taggable_redux'
  s.version = '0.0.1'
  s.date = '2008-12-06'
 
  s.summary = 'Allows for user owned tags to be added to multiple classes, and makes tags easier to work with.'
  s.description = 'Allows for user owned tags to be added to multiple classes, and makes tags easier to work with.'
 
  s.authors = ['Wesley Beary']
  s.email = 'monki@geemus.com'
  s.homepage = 'http://github.com/monki/acts_as_taggable_redux'
 
  s.has_rdoc = false
  s.files = [
    'generators/acts_as_taggable_tables/templates/migration.rb',
    'generators/acts_as_taggable_tables/acts_as_taggable_tables_generator.rb',
    'generators/acts_as_taggable_stylesheet/templates/acts_as_taggable_stylesheet.css',
    'generators/acts_as_taggable_stylesheet/acts_as_taggable_stylesheet_generator.rb',
    'init.rb',
    'lib/acts_as_taggable.rb',
    'lib/acts_as_tagger.rb',
    'lib/acts_as_taggable_helper.rb',
    'lib/acts_as_taggable_redux.rb',
    'lib/tag.rb',
    'lib/tagging.rb',
    'MIT-LICENSE',
    'Rakefile',
    'README',
    'tasks/acts_as_taggable_tasks.rake'
    'test/tagging_test.rb',
    'test/debug.log',
    'test/test_helper.rb',
    'test/fixtures/users.yml',
    'test/fixtures/tags.yml',
    'test/fixtures/things.yml',
    'test/fixtures/thing.rb',
    'test/fixtures/taggings.yml',
    'test/fixtures/user.rb',
    'test/acts_as_taggable_test.rb',
    'test/tag_test.rb',
    'test/database.yml',
    'test/schema.rb'
  ]
end