Skip to content

Commit

Permalink
Merge pull request #32 from EnvironmentAgency/fix/codeclimate-config
Browse files Browse the repository at this point in the history
Remove bundler-audit from codeclimate config
  • Loading branch information
Cruikshanks authored Oct 5, 2016
2 parents 8ddd09d + 289af52 commit cb1d299
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 14 deletions.
2 changes: 0 additions & 2 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
engines:
bundler-audit:
enabled: true
duplication:
enabled: true
config:
Expand Down
5 changes: 5 additions & 0 deletions lib/quke/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ def initialize
@data = load_data
end

# Returns the value set for +features_folder+.
#
# This will be passed to Cucumber by Quke when it executes the tests. It
# tells Cucumber where the main features folder which contains the tests is
# located. If not set in the +.config.yml+ file it defaults to 'features'.
def features_folder
@data['features_folder']
end
Expand Down
2 changes: 1 addition & 1 deletion lib/quke/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Quke #:nodoc:
VERSION = '0.2.0'.freeze
VERSION = '0.2.1'.freeze
end
13 changes: 2 additions & 11 deletions quke.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,8 @@ Gem::Specification.new do |spec|
spec.authors = ['Alan Cruikshanks']
spec.email = ['[email protected]']

spec.summary = 'A gem to simplify creating acceptance tests using /
Cucumber'
spec.description = 'Quke tries to simplify the process of writing and /
running acceptance tests by setting up Cucumber for /
you. /
It handles the config to allow you to run your tests /
in Firefox and Chrome, or the headless browser /
PhantomJS. It also has out of the box setup for /
using Browserstack automate. /
This leaves you to focus on just your features and
/ steps.'
spec.summary = 'A gem to simplify creating acceptance tests using Cucumber'
spec.description = 'Quke tries to simplify the process of writing and running acceptance tests by setting up Cucumber for you. It handles the config to allow you to run your tests in Firefox and Chrome, or the headless browser PhantomJS. It also has out of the box setup for using Browserstack automate. This leaves you to focus on just your features and steps.'
spec.homepage = 'https://github.com/environmentagency/quke'
spec.license = 'Nonstandard'

Expand Down

0 comments on commit cb1d299

Please sign in to comment.