Skip to content

Commit

Permalink
[CLEANUP] Use single quotes for strings in the gemspec file
Browse files Browse the repository at this point in the history
Closes #12
  • Loading branch information
oliverklee committed Jan 5, 2015
1 parent bf1b937 commit 66ea14f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions page_title_helper.gemspec
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "page_title_helper/version"
$:.push File.expand_path('../lib', __FILE__)
require 'page_title_helper/version'

Gem::Specification.new do |s|
s.name = "page_title_helper"
s.name = 'page_title_helper'
s.version = PageTitleHelper::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "Simple, internationalized and DRY page titles and headings for Rails."
s.description = "Simple, internationalized and DRY page titles and headings for rails."
s.summary = 'Simple, internationalized and DRY page titles and headings for Rails.'
s.description = 'Simple, internationalized and DRY page titles and headings for Rails.'

s.required_ruby_version = ">= 1.9.3"
s.required_rubygems_version = ">= 1.3.6"
s.required_ruby_version = '>= 1.9.3'
s.required_rubygems_version = '>= 1.3.6'

s.authors = ["Lukas Westermann"]
s.email = ["lukas.westermann@gmail.com"]
s.homepage = "http://github.com/lwe/page_title_helper"
s.authors = ['Lukas Westermann']
s.email = ['lukas.westermann@gmail.com']
s.homepage = 'http://github.com/lwe/page_title_helper'

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand Down

0 comments on commit 66ea14f

Please sign in to comment.