Skip to content

Commit

Permalink
Regenerate gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
ugisozols committed May 10, 2011
1 parent f895242 commit 104ea3f
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 54 deletions.
3 changes: 0 additions & 3 deletions lib/gemspec.rb
Expand Up @@ -23,9 +23,6 @@
s.files = [
'#{files.join("',\n '")}'
]
#{"s.test_files = [
'#{Dir.glob("test/**/*.rb").join("',\n '")}'
]" if File.directory?("test")}
end
EOF

Expand Down
95 changes: 44 additions & 51 deletions refinerycms-news.gemspec
Expand Up @@ -2,7 +2,7 @@ Gem::Specification.new do |s|
s.name = %q{refinerycms-news}
s.version = %q{1.1.0}
s.description = %q{A really straightforward open source Ruby on Rails news engine designed for integration with RefineryCMS.}
s.date = %q{2011-04-07}
s.date = %q{2011-05-10}
s.summary = %q{Ruby on Rails news engine for RefineryCMS.}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
Expand All @@ -12,6 +12,40 @@ Gem::Specification.new do |s|
s.add_dependency 'refinerycms-core', '~> 0.9.9.15'

s.files = [
'readme.md',
'db',
'db/migrate',
'db/migrate/5_add_expiration_date_to_news_items.rb',
'db/migrate/2_add_external_url_to_news_items.rb',
'db/migrate/1_create_news_items.rb',
'db/migrate/3_translate_news_items.rb',
'db/migrate/4_add_image_id_to_news_items.rb',
'db/seeds',
'db/seeds/refinerycms_news.rb',
'config',
'config/locales',
'config/locales/pt-BR.yml',
'config/locales/nl.yml',
'config/locales/fr.yml',
'config/locales/cs.yml',
'config/locales/it.yml',
'config/locales/de.yml',
'config/locales/es-MX.yml',
'config/locales/sl.yml',
'config/locales/sk.yml',
'config/locales/lv.yml',
'config/locales/nb.yml',
'config/locales/ru.yml',
'config/locales/en.yml',
'config/locales/es.yml',
'config/routes.rb',
'license.md',
'lib',
'lib/refinerycms-news.rb',
'lib/generators',
'lib/generators/refinerycms_news_generator.rb',
'lib/gemspec.rb',
'lib/news.rb',
'app',
'app/controllers',
'app/controllers/admin',
Expand All @@ -22,68 +56,27 @@ Gem::Specification.new do |s|
'app/views',
'app/views/admin',
'app/views/admin/news_items',
'app/views/admin/news_items/_form.html.erb',
'app/views/admin/news_items/_locale_picker.html.erb',
'app/views/admin/news_items/_news_item.html.erb',
'app/views/admin/news_items/edit.html.erb',
'app/views/admin/news_items/index.html.erb',
'app/views/admin/news_items/_form.html.erb',
'app/views/admin/news_items/_locale_picker.html.erb',
'app/views/admin/news_items/new.html.erb',
'app/views/admin/news_items/edit.html.erb',
'app/views/news_items',
'app/views/news_items/_recent_posts.html.erb',
'app/views/news_items/index.html.erb',
'app/views/news_items/index.rss.builder',
'app/views/news_items/show.html.erb',
'config',
'config/locales',
'config/locales/cs.yml',
'config/locales/de.yml',
'config/locales/en.yml',
'config/locales/es-MX.yml',
'config/locales/es.yml',
'config/locales/fr.yml',
'config/locales/it.yml',
'config/locales/lv.yml',
'config/locales/nb.yml',
'config/locales/nl.yml',
'config/locales/pt-BR.yml',
'config/locales/ru.yml',
'config/locales/sk.yml',
'config/locales/sl.yml',
'config/routes.rb',
'db',
'db/migrate',
'db/migrate/1_create_news_items.rb',
'db/migrate/2_add_external_url_to_news_items.rb',
'db/migrate/3_translate_news_items.rb',
'db/migrate/4_add_image_id_to_news_items.rb',
'db/seeds',
'db/seeds/refinerycms_news.rb',
'app/views/news_items/index.rss.builder',
'spec',
'spec/models',
'spec/models/news_item_spec.rb',
'features',
'features/manage_news_items.feature',
'features/step_definitions',
'features/step_definitions/news_steps.rb',
'features/visit_news_items.feature',
'features/support',
'features/support/factories.rb',
'features/support/paths.rb',
'features/visit_news_items.feature',
'lib',
'lib/gemspec.rb',
'lib/generators',
'lib/generators/refinerycms_news_generator.rb',
'lib/news.rb',
'lib/refinerycms-news.rb',
'license.md',
'readme.md',
'spec',
'spec/models',
'spec/models/news_item_spec.rb',
'test',
'test/fixtures',
'test/fixtures/news_items.yml',
'test/unit',
'test/unit/news_items_test.rb'
]
s.test_files = [
'test/unit/news_items_test.rb'
'features/support/paths.rb'
]
end

0 comments on commit 104ea3f

Please sign in to comment.