bbc-a11y 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d59c94f740e8990fafb8ae7201c7096cd91ccef9
4
- data.tar.gz: 57e5a3f69ce2e509ce61d765edda3c2b1df5893f
3
+ metadata.gz: dfeaf49df92e094fad3709b867e2f1fe4f5a8652
4
+ data.tar.gz: de64a803a837c79d6b33cb2228fec488a7578b48
5
5
  SHA512:
6
- metadata.gz: 135ffcf60d5e6a159d0ddb987e0c939e6dfbdd41215f75e3887aad71bcf6a91f17d6f637f6299799434a5464d21fd8e61c44f183df6ab90fe45fc7936d657d8c
7
- data.tar.gz: cec1529c7021ee79faec561281dabcfd0cf77fd1f16ea9c92530922aaaf93cefb16b914cafb5a70f8870439bf3d3c21f653828941c9bb5ae9d398bf460487418
6
+ metadata.gz: b77a23b78c6e7596777c9bf952712956104ea21314b473728e4f68ac9b6391cf0b1159d4151906225d39e81a772242e71b17298b64d6e924b2909fe9c72c358d
7
+ data.tar.gz: 3ec7a9807cfe0208e73ccc51e100daf1c0ee2369932bdcc16bfe35e253ef4779fbf9f50027c518a55cf33bb4e59c15e0a3173bbe1cd2937bd0bbe1d7f15a1304
@@ -0,0 +1,48 @@
1
+ <!-- These sections are meant as guidance for you, to help you give the kind of information we'll need to help with your issue. If a section doesn't seem to fit, just skip it.
2
+
3
+ In general: Please provide as much information as you can to help us solving your problem -->
4
+
5
+ ## Summary
6
+
7
+ <!--- Provide a general summary description of the issue -->
8
+
9
+ ## Expected Behavior
10
+
11
+ <!--- If you're describing a bug, tell us what should happen -->
12
+ <!--- If you're suggesting a change/improvement, tell us how it should work -->
13
+ <!--- Feel free to use Given / Then / Then if that helps, but please add some plain-language context too -->
14
+
15
+ ## Current Behavior
16
+
17
+ <!--- If describing a bug, tell us what happens instead of the expected behavior -->
18
+ <!--- If suggesting a change/improvement, explain the difference from current behavior -->
19
+
20
+ <!--- If you have got some output place it in the code block below. Otherwise remove it. -->
21
+ ~~~
22
+ ~~~
23
+
24
+ ## Possible Solution
25
+
26
+ <!--- Not obligatory, but suggest a fix/reason for the bug, -->
27
+ <!--- or ideas how to implement the addition or change -->
28
+
29
+ ## Steps to Reproduce (for bugs)
30
+
31
+ <!--- Provide a link to a live example, or an unambiguous set of steps to -->
32
+ <!--- reproduce this bug. Include code to reproduce, if relevant -->
33
+ 1.
34
+ 2.
35
+ 3.
36
+ 4.
37
+
38
+ ## Context & Motivation
39
+
40
+ <!--- How has this issue affected you? What are you trying to accomplish? -->
41
+ <!--- Providing context helps us come up with a solution that is most useful in the real world -->
42
+
43
+ ## Your Environment
44
+
45
+ <!--- If you're reporting a bug, include as many relevant details about the environment you experienced the bug in -->
46
+ * Version used:
47
+ * Operating System and version:
48
+ * Link to your project:
@@ -0,0 +1,39 @@
1
+ <!-- These sections are meant as guidance for you. If something doesn't fit, you can just skip it. -->
2
+
3
+ ## Summary
4
+
5
+ <!--- Provide a general summary description of your changes -->
6
+
7
+ ## Details
8
+
9
+ <!--- Describe your changes in detail -->
10
+
11
+ ## Motivation and Context
12
+
13
+ <!--- Why is this change required? What problem does it solve? -->
14
+ <!--- If it fixes an open issue, please link to the issue here. -->
15
+
16
+ ## How Has This Been Tested?
17
+
18
+ <!--- Please add tests for changes to the code, otherwise we probably won't merge it -->
19
+
20
+ <!--- Please describe in detail how you tested your changes. -->
21
+ <!--- Include details of your testing environment, tests ran to see how -->
22
+ <!--- your change affects other areas of the code, etc. -->
23
+
24
+ ## Screenshots (if appropriate):
25
+
26
+ ## Types of changes
27
+
28
+ <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
29
+ - [ ] Bug fix (non-breaking change which fixes an issue)
30
+ - [ ] New feature (non-breaking change which adds functionality)
31
+ - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
32
+
33
+ ## Checklist:
34
+
35
+ <!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
36
+ <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
37
+ - [ ] I've added tests for my code
38
+ - [ ] My change requires a change to the documentation.
39
+ - [ ] I have updated the documentation accordingly.
@@ -1,6 +1,4 @@
1
1
  language: ruby
2
- rvm:
3
- 2.2
4
2
  before_script:
5
3
  - npm install
6
4
  - export PATH=$PWD/node_modules/.bin:$PATH
@@ -17,7 +17,9 @@ then:
17
17
 
18
18
  Create or amend your your project's `Gemfile` to include this line:
19
19
 
20
- gem 'bbc-a11y`
20
+ gem 'bbc-a11y'
21
+
22
+ source 'https://rubygems.org'
21
23
 
22
24
  Now install the gem:
23
25
 
@@ -1,8 +1,9 @@
1
1
  require 'bbc/a11y/javascript'
2
2
  require 'phantomjs/poltergeist'
3
+ require 'phantomjs'
3
4
 
4
5
  Capybara.register_driver :poltergeist do |app|
5
- Capybara::Poltergeist::Driver.new(app, js_errors: false)
6
+ Capybara::Poltergeist::Driver.new(app, js_errors: false, :phantomjs => Phantomjs.path)
6
7
  end
7
8
 
8
9
  Capybara.default_driver = :poltergeist
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.3.0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bbc-a11y
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wynne
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-04-29 00:00:00.000000000 Z
13
+ date: 2016-11-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: capybara
@@ -132,6 +132,8 @@ executables:
132
132
  extensions: []
133
133
  extra_rdoc_files: []
134
134
  files:
135
+ - ".github/ISSUE_TEMPLATE.md"
136
+ - ".github/PULL_REQUEST_TEMPLATE.md"
135
137
  - ".rspec"
136
138
  - ".ruby-version"
137
139
  - ".travis.yml"
@@ -242,7 +244,7 @@ rubyforge_project:
242
244
  rubygems_version: 2.4.5.1
243
245
  signing_key:
244
246
  specification_version: 4
245
- summary: bbc-a11y-0.2.0
247
+ summary: bbc-a11y-0.3.0
246
248
  test_files:
247
249
  - features/README.md
248
250
  - features/check_standards/01_core_purpose.feature