Skip to content

Commit

Permalink
Respect double-quoted string style
Browse files Browse the repository at this point in the history
  • Loading branch information
eddloschi committed Mar 19, 2015
1 parent 3a44744 commit 886bd05
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Gemfile
@@ -1,6 +1,6 @@
source 'https://rubygems.org'
source "https://rubygems.org"

gem 'coveralls', require: false
gem "coveralls", require: false

# Specify your gem's dependencies in mongoid-giza.gemspec
gemspec
15 changes: 8 additions & 7 deletions mongoid-giza.gemspec
@@ -1,21 +1,22 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mongoid/giza/version'
require "mongoid/giza/version"

Gem::Specification.new do |spec|
spec.name = "mongoid-giza"
spec.version = Mongoid::Giza::VERSION
spec.authors = ["Maurício Batista"]
spec.email = ["eddloschi@gmail.com"]
spec.description = %q{Mongoid layer for the Sphinx fulltext search server that supports block fields and dynamic indexes}
spec.summary = %q{Mongoid layer for the Sphinx fulltext search server}
spec.description = "Mongoid layer for the Sphinx fulltext search server " \
"that supports block fields and dynamic indexes"
spec.summary = %(Mongoid layer for the Sphinx fulltext search server)
spec.homepage = "https://github.com/yadevteam/mongoid-giza"
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.files = `git ls-files`.split($RS)
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
spec.test_files = spec.files.grep(/^(test|spec|features)\//)
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.3"
Expand Down

0 comments on commit 886bd05

Please sign in to comment.