Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove bundler-audit from codeclimate config #32

Merged
merged 1 commit into from
Oct 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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