Skip to content

Commit

Permalink
Fix badly encoded characters after a skype paste and generate a gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Jul 20, 2010
1 parent 7958897 commit c0a7cbd
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/gemspec.rb
Expand Up @@ -3,7 +3,7 @@
version = Refinery::Podcast.version
raise "Could not get version so gemspec can not be built" if version.nil?
files = Dir.glob("**/*").flatten.reject do |file|
 file =~ /\.gem(spec)?$/
file =~ /\.gem(spec)?$/
end

gemspec = <<EOF
Expand All @@ -15,7 +15,7 @@
s.summary = %q{Ruby on Rails podcast plugin for RefineryCMS.}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.authors = %w(Resolve\\ Digital)
s.authors = %w(David\\ Jones)
s.require_paths = %w(lib)
s.files = [
Expand Down
52 changes: 52 additions & 0 deletions refinerycms-podcast.gemspec
@@ -0,0 +1,52 @@
Gem::Specification.new do |s|
s.name = %q{refinerycms-podcast}
s.version = %q{0.5}
s.description = %q{Plugin for Refinery CMS to manage and publish podcasts to iTunes}
s.date = %q{2010-07-20}
s.summary = %q{Ruby on Rails podcast plugin for RefineryCMS.}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.authors = %w(David\ Jones)
s.require_paths = %w(lib)

s.files = [
'app',
'app/controllers',
'app/controllers/admin',
'app/controllers/admin/podcasts_controller.rb',
'app/controllers/podcasts_controller.rb',
'app/models',
'app/models/podcast.rb',
'app/views',
'app/views/admin',
'app/views/admin/podcasts',
'app/views/admin/podcasts/_form.html.erb',
'app/views/admin/podcasts/_podcast.html.erb',
'app/views/admin/podcasts/edit.html.erb',
'app/views/admin/podcasts/index.html.erb',
'app/views/admin/podcasts/new.html.erb',
'app/views/podcasts',
'app/views/podcasts/index.rss.builder',
'config',
'config/locales',
'config/locales/en.yml',
'config/locales/nl.yml',
'config/routes.rb',
'generators',
'generators/podcast',
'generators/podcast/podcast_generator.rb',
'generators/podcast/templates',
'generators/podcast/templates/migration.rb',
'lib',
'lib/gemspec.rb',
'lib/refinery',
'lib/refinery/podcast.rb',
'lib/tasks',
'lib/tasks/podcast.rake',
'license.md',
'rails',
'rails/init.rb',
'readme.md'
]

end

0 comments on commit c0a7cbd

Please sign in to comment.