aboutsummaryrefslogtreecommitdiffstats
path: root/refinerycms-blog.gemspec
blob: af2831f442fa3b6bfed1289701a50f97cf2b7183 (plain) (blame)
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
56
57
58
59
60
61
62
63
64
Gem::Specification.new do |s|
  s.name              = %q{refinerycms-blog}
  s.version           = %q{0.9.8}
  s.description       = %q{A really straightforward open source Ruby on Rails blog engine designed for integration with RefineryCMS.}
  s.date              = %q{2010-08-09}
  s.summary           = %q{Ruby on Rails blogging engine for RefineryCMS.}
  s.email             = %q{info@refinerycms.com}
  s.homepage          = %q{http://refinerycms.com}
  s.authors           = %w(Resolve\ Digital Neoteric\ Design)
  s.require_paths     = %w(lib)

  s.files             = %w(
    app
    app/controllers
    app/controllers/admin
    app/controllers/admin/blog
    app/controllers/admin/blog/categories_controller.rb
    app/controllers/admin/blog/comments_controller.rb
    app/controllers/admin/blog/posts_controller.rb
    app/controllers/admin/blog/settings_controller.rb
    app/controllers/blog_posts_controller.rb
    app/helpers
    app/models
    app/models/blog_category.rb
    app/models/blog_comment.rb
    app/models/blog_post.rb
    app/views
    app/views/admin
    app/views/admin/blog
    app/views/admin/blog/_submenu.html.erb
    app/views/admin/blog/categories
    app/views/admin/blog/comments
    app/views/admin/blog/comments/index.html.erb
    app/views/admin/blog/posts
    app/views/admin/blog/posts/_form.html.erb
    app/views/admin/blog/posts/_post.html.erb
    app/views/admin/blog/posts/_sortable_list.html.erb
    app/views/admin/blog/posts/edit.html.erb
    app/views/admin/blog/posts/index.html.erb
    app/views/admin/blog/posts/new.html.erb
    app/views/blog_posts
    app/views/blog_posts/index.html.erb
    app/views/blog_posts/show.html.erb
    config
    config/locales
    config/locales/en.yml
    config/locales/nb.yml
    config/locales/nl.yml
    config/routes.rb
    generators
    generators/refinery_blog
    generators/refinery_blog/refinery_blog_generator.rb
    generators/refinery_blog/templates
    generators/refinery_blog/templates/migration.rb
    generators/refinery_blog/templates/seed.rb
    lib
    lib/gemspec.rb
    lib/refinerycms-blog.rb
    rails
    rails/init.rb
    readme.md
  )
  
end