Skip to content

Commit

Permalink
[skip] Used double-quotes (1m)
Browse files Browse the repository at this point in the history
  • Loading branch information
boblail committed Oct 17, 2016
1 parent a44413d commit 21f442d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bin/pericope
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby

$:.unshift File.expand_path("../../lib", __FILE__)
require 'pericope/cli'
require "pericope/cli"

command = ARGV.shift
arguments = ARGV
Expand Down
2 changes: 1 addition & 1 deletion lib/pericope.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# encoding: UTF-8

require 'pericope/version'
require "pericope/version"

class Pericope
attr_reader :book,
Expand Down
4 changes: 2 additions & 2 deletions lib/pericope/cli.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require 'pericope'
require 'cli/base'
require "pericope"
require "cli/base"

class Pericope
class CLI
Expand Down
8 changes: 4 additions & 4 deletions pericope.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'pericope/version'
require "pericope/version"

Gem::Specification.new do |s|
s.name = "pericope"
Expand All @@ -15,9 +15,9 @@ Gem::Specification.new do |s|
s.description = "It recognizes common abbreviations and misspellings for names of the books of the Bible and a variety of ways of denoting ranges of chapters and verses. It can parse pericopes singly or out of a block of text. It's useful for comparing two pericopes for intersection and normalizing them into a well-formatted string."

s.files = Dir.glob("{bin,data,lib}/**/*") + %w(README.mdown)
s.executables = ['pericope']
s.default_executable = 'pericope'
s.require_path = 'lib'
s.executables = ["pericope"]
s.default_executable = "pericope"
s.require_path = "lib"

s.add_dependency "activesupport"

Expand Down
2 changes: 1 addition & 1 deletion test/pericope_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def test_pericope_substitution


at_exit do
require 'benchmark'
require "benchmark"

example = "Paul, rom. 12:1-4, Romans 9:7, 11, Election, Theology of Glory, Theology of the Cross, 1 Cor 15, Resurrection"

Expand Down

0 comments on commit 21f442d

Please sign in to comment.