Skip to content

Commit

Permalink
reformatted to use single quotes where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoody committed Apr 16, 2014
1 parent 66f1e1e commit 55afaaa
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions calabash-cucumber/calabash-cucumber.gemspec
@@ -1,33 +1,33 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "calabash-cucumber/version"
$:.push File.expand_path('../lib', __FILE__)
require 'calabash-cucumber/version'

Gem::Specification.new do |s|
s.name = "calabash-cucumber"
s.name = 'calabash-cucumber'
s.version = Calabash::Cucumber::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Karl Krukow"]
s.email = ["karl@lesspainful.com"]
s.homepage = "http://calaba.sh"
s.authors = ['Karl Krukow']
s.email = ['karl@lesspainful.com']
s.homepage = 'http://calaba.sh'
s.summary = %q{Client for calabash-ios-server for automated functional testing on iOS}
s.description = %q{calabash-cucumber drives tests for native iOS apps. You must link your app with calabash-ios-server framework to execute tests.}
s.files = `git ls-files`.split("\n").concat(["staticlib/calabash.framework.zip"])
s.files = `git ls-files`.split("\n").concat(['staticlib/calabash.framework.zip'])
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = "calabash-ios"
s.require_paths = ["lib"]
s.executables = 'calabash-ios'
s.require_paths = ['lib']

s.add_dependency( "cucumber", "~> 1.3.0" )
s.add_dependency( "calabash-common", "~> 0.0.1" )
s.add_dependency( "json" )
s.add_dependency( 'edn')
s.add_dependency( "CFPropertyList" )
s.add_dependency( "sim_launcher", "~> 0.4.9")
s.add_dependency( "slowhandcuke" )
s.add_dependency( "geocoder", "~>1.1.8")
s.add_dependency( "httpclient","~> 2.3.3")
s.add_dependency( "bundler", "~> 1.1")
s.add_dependency( "run_loop", "~> 0.2.0" )
s.add_dependency( "awesome_print")
s.add_dependency( "xamarin-test-cloud", "~> 0.9.27")
s.add_dependency('cucumber', '~> 1.3.0')
s.add_dependency('calabash-common', '~> 0.0.1')
s.add_dependency('json')
s.add_dependency('edn')
s.add_dependency('CFPropertyList')
s.add_dependency('sim_launcher', '~> 0.4.9')
s.add_dependency('slowhandcuke')
s.add_dependency('geocoder', '~>1.1.8')
s.add_dependency('httpclient', '~> 2.3.3')
s.add_dependency('bundler', '~> 1.1')
s.add_dependency('run_loop', '~> 0.2.0')
s.add_dependency('awesome_print')
s.add_dependency('xamarin-test-cloud', '~> 0.9.27')

end

0 comments on commit 55afaaa

Please sign in to comment.