uswds-rails 1.4.4.1 → 1.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -0
  3. data/.rubocop +0 -1
  4. data/.ruby-version +1 -1
  5. data/.travis.yml +7 -4
  6. data/CONTRIBUTING.md +3 -3
  7. data/README.md +8 -8
  8. data/app/assets/stylesheets/uswds/uswds.scss +1 -1
  9. data/lib/uswds/rails/version.rb +1 -1
  10. data/uswds-rails.gemspec +1 -1
  11. data/vendor/assets/images/uswds/angle-arrow-down-hover.png +0 -0
  12. data/vendor/assets/images/uswds/angle-arrow-down-primary-hover.png +0 -0
  13. data/vendor/assets/images/uswds/angle-arrow-down-primary.png +0 -0
  14. data/vendor/assets/images/uswds/angle-arrow-down.png +0 -0
  15. data/vendor/assets/images/uswds/angle-arrow-up-primary-hover.png +0 -0
  16. data/vendor/assets/images/uswds/angle-arrow-up-primary.png +0 -0
  17. data/vendor/assets/images/uswds/arrow-both.png +0 -0
  18. data/vendor/assets/images/uswds/circle-124.png +0 -0
  19. data/vendor/assets/images/uswds/close-primary.png +0 -0
  20. data/vendor/assets/images/uswds/close.png +0 -0
  21. data/vendor/assets/images/uswds/external-link-alt-hover.png +0 -0
  22. data/vendor/assets/images/uswds/external-link-alt.png +0 -0
  23. data/vendor/assets/images/uswds/external-link-hover.png +0 -0
  24. data/vendor/assets/images/uswds/external-link.png +0 -0
  25. data/vendor/assets/images/uswds/favicons/favicon-114.png +0 -0
  26. data/vendor/assets/images/uswds/favicons/favicon-40.png +0 -0
  27. data/vendor/assets/images/uswds/favicons/favicon-57.png +0 -0
  28. data/vendor/assets/images/uswds/favicons/favicon-72.png +0 -0
  29. data/vendor/assets/images/uswds/hero.png +0 -0
  30. data/vendor/assets/images/uswds/minus-alt.png +0 -0
  31. data/vendor/assets/images/uswds/plus-alt.png +0 -0
  32. data/vendor/assets/images/uswds/search-alt.png +0 -0
  33. data/vendor/assets/images/uswds/search-primary.png +0 -0
  34. data/vendor/assets/images/uswds/social-icons/png/facebook25.png +0 -0
  35. data/vendor/assets/images/uswds/social-icons/png/rss25.png +0 -0
  36. data/vendor/assets/images/uswds/social-icons/png/twitter16.png +0 -0
  37. data/vendor/assets/images/uswds/social-icons/png/youtube15.png +0 -0
  38. data/vendor/assets/javascripts/uswds/uswds.js +0 -0
  39. metadata +5 -6
  40. data/.codeclimate.yml +0 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58568a9684fc1f00b1fc48f0fbf55bec74446bb31a48ec6a4196c3576cc9836e
4
- data.tar.gz: 7751a7f5b8aabc15196aefbdc0336e56247cf067e7758e75c104e4904fa0c738
3
+ metadata.gz: d5468b7319eb01d4613eba0b3fefa3e9af7975aeb80383e03a16db041f8140d9
4
+ data.tar.gz: aaeef567889e37bc93eeefed439058e2de117a0634ef420dbb237125b9aa410a
5
5
  SHA512:
6
- metadata.gz: 598d831ce0fd87c7179653a3a946009b66c938c5115721a59c8143c5c4576f1f6896ffd96ca644c1f700c59d18b35f6f35801e974ef4a9c04f448f7d33f9e575
7
- data.tar.gz: b8f02410c5425299729bc19221d153bd72de4f3b009042f99f5146011754cc6c701c03e445e726b4893a406d41f5166da60757619bfb9e4cb9835a21b58a6764
6
+ metadata.gz: f7c057dcf7f70f639b8fc2e7759093cfbd23abe3749645117eb53ec67db174953f6b4ca90f08f1d77cea3304cbb73174ff61bb0210fb2ee9c8bbe3af6d356024
7
+ data.tar.gz: e7072ad1b53f7b539b56888406cd8086e2ab41e442f64d5edb3099584bc990ab7c7f7c2e09be7496dadb8102967a3daf6b9b02ce32acc60a1711a98ed81b36ae
data/.rspec CHANGED
@@ -1,3 +1,4 @@
1
1
  --color
2
2
  --format progress
3
+ --order random
3
4
  --require rails_helper
data/.rubocop CHANGED
@@ -1,5 +1,4 @@
1
1
  --display-cop-names
2
2
  --display-style-guide
3
3
  --extra-details
4
- --force-exclusion
5
4
  --parallel
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.4.2
1
+ 2.5.0
data/.travis.yml CHANGED
@@ -1,9 +1,10 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  rvm:
4
- - 2.2.8
5
- - 2.3.5
6
- - 2.4.2
4
+ - 2.2.9
5
+ - 2.3.6
6
+ - 2.4.3
7
+ - 2.5.0
7
8
  before_install:
8
9
  - gem update --system
9
10
  - gem update bundler
@@ -15,4 +16,6 @@ after_success:
15
16
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
16
17
  notifications:
17
18
  email: false
18
- slack: sixtwothree:yATLmjTW15443qR7jbCWr3RO
19
+ slack:
20
+ rooms:
21
+ secure: PGS4rdJ+83rywBT5qj50VjwiEr4hO7QYV5cH8X50SnKoGuYIIpwF0fpInNjfFOMrAtg8vn8LIRVlfOGpSY/QZ5edMLX/dPkyhQcQrdekD1vQxwEVV6qZpRBQmnpVLX0hrkg9aeSA+qwUOMqbMfQOptLrLjEepBAG3Hmub9zvNz6droPxSnlYmD4kB3ZaFTVBnVIXglrYQtJFWLwEgn9AfVUOIVMkzY1IvxlNLajwe6I1qqs2PkpVNsT3kM5TWsoSyeMS4KH1r7a5kx+tN+YdZnqTNs8rK8pVGJs0Tgpq6J3dfYnJVLCclO3NI3fUpc8AXFB0lrn+YCL8BKTIgfV7Za10KKkWtlXLCD53b1jwSWSqfANNg+pJeZEjVjziq/iCbr0+QbyZ1P+h13edimUKsZwLW9yYoG5J3W5Cvlk7gxiICDcDUKEEQqbn1kWpq+pWa0MbT1azs2NtWemQDbp8bCkHiNicev/xWrgIKAipV/fIJYQh9okrPR3RleTDOdSeR1uWsKzAnRWpACrG4xT8igmw5bBefmbzSyNF9LqQmR1mMGxgaNNbYVyoa+PHiJmHuD5fUxS9CoN8VGRQvo3bI/xASO5V49GZNJ8VyOM4ifZfqRddnWrSFht1SsqfHjF92209oY0z3uJkdFkjREQbvMlctBzRencHSmieL6jF2r4=
data/CONTRIBUTING.md CHANGED
@@ -16,9 +16,9 @@ There are several ways in which you can help improve this project:
16
16
 
17
17
  ## Getting Started
18
18
 
19
- uswds-rails is written in [Ruby](https://www.ruby-lang.org/en/) (version 2.4.2) and development dependencies are managed using the [Bundler](http://bundler.io/) gem. [Travis CI builds](https://travis-ci.org/jgarber623/uswds-rails) use Ruby 2.2.8, 2.3.5, and 2.4.2.
19
+ uswds-rails is written in [Ruby](https://www.ruby-lang.org/en/) (version 2.5.0) and development dependencies are managed using the [Bundler](http://bundler.io/) gem. [Travis CI builds](https://travis-ci.org/jgarber623/uswds-rails) use Ruby 2.2.9, 2.3.6, 2.4.3, and 2.5.0.
20
20
 
21
- I manage Ruby versions with [rbenv](https://github.com/rbenv/rbenv). I'd recommend you do the same or use a similar Ruby version manager ([chruby](https://github.com/postmodern/chruby/) or [RVM](https://rvm.io/) come to mind). Once you've installed Ruby 2.4.2 using your method of choice, install the project's gems by running:
21
+ I manage Ruby versions with [rbenv](https://github.com/rbenv/rbenv). I'd recommend you do the same or use a similar Ruby version manager ([chruby](https://github.com/postmodern/chruby/) or [RVM](https://rvm.io/) come to mind). Once you've installed Ruby 2.5.0 using your method of choice, install the project's gems by running:
22
22
 
23
23
  ```sh
24
24
  bundle install
@@ -33,7 +33,7 @@ bundle install
33
33
  1. Create a feature branch for the code changes you're looking to make: `git checkout -b your-descriptive-branch-name origin/master`.
34
34
  1. _Write some code!_
35
35
  1. Build (`bundle exec rake build`) and install (`bundle exec rake install`) your updated code.
36
- 1. If your changes would benefit from testing, add the necessary tests and verify everything passes by running `bin/rake spec`.
36
+ 1. If your changes would benefit from testing, add the necessary tests and verify everything passes by running `bundle exec rake spec`.
37
37
  1. Commit your changes: `git commit -am 'Add some new feature or fix some issue'`. _(See [this excellent article](https://chris.beams.io/posts/git-commit/) for tips on writing useful Git commit messages.)_
38
38
  1. Push the branch to your fork: `git push -u origin your-descriptive-branch-name`.
39
39
  1. Create a new pull request and we'll review your changes.
data/README.md CHANGED
@@ -2,24 +2,24 @@
2
2
 
3
3
  A Ruby gem for integrating the [U.S. Web Design Standards](https://github.com/18F/web-design-standards) into a [Ruby on Rails](http://rubyonrails.org) application.
4
4
 
5
- [![Gem Version](https://img.shields.io/gem/v/uswds-rails.svg?label=gem%20version)](https://rubygems.org/gems/uswds-rails)
6
- [![Downloads](https://img.shields.io/gem/dt/uswds-rails.svg)](https://rubygems.org/gems/uswds-rails)
7
- [![Build Status](https://img.shields.io/travis/jgarber623/uswds-rails/master.svg?label=build%20status)](https://travis-ci.org/jgarber623/uswds-rails)
8
- [![Code Climate](https://img.shields.io/codeclimate/github/jgarber623/uswds-rails.svg)](https://codeclimate.com/github/jgarber623/uswds-rails)
9
- [![Coverage](https://img.shields.io/codeclimate/coverage/github/jgarber623/uswds-rails.svg)](https://codeclimate.com/github/jgarber623/uswds-rails/coverage)
5
+ [![Gem](https://img.shields.io/gem/v/uswds-rails.svg?style=for-the-badge)](https://rubygems.org/gems/uswds-rails)
6
+ [![Downloads](https://img.shields.io/gem/dt/uswds-rails.svg?style=for-the-badge)](https://rubygems.org/gems/uswds-rails)
7
+ [![Build](https://img.shields.io/travis/jgarber623/uswds-rails/master.svg?style=for-the-badge)](https://travis-ci.org/jgarber623/uswds-rails)
8
+ [![Maintainability](https://img.shields.io/codeclimate/maintainability/jgarber623/uswds-rails.svg?style=for-the-badge)](https://codeclimate.com/github/jgarber623/uswds-rails)
9
+ [![Coverage](https://img.shields.io/codeclimate/c/jgarber623/uswds-rails.svg?style=for-the-badge)](https://codeclimate.com/github/jgarber623/uswds-rails/code)
10
10
 
11
11
  ## Getting Started
12
12
 
13
- Before installing and using uswds-rails, you'll want to have Ruby 2.2.8 (or newer) installed on your computer. There are plenty of ways to go about this, but my preference is [rbenv](https://github.com/sstephenson/rbenv). If you're developing on a Mac and using [Homebrew](http://brew.sh/), installing rbenv is [super easy](https://github.com/sstephenson/rbenv#homebrew-on-mac-os-x).
13
+ Before installing and using uswds-rails, you'll want to have Ruby 2.2.9 (or newer) installed on your computer. There are plenty of ways to go about this, but my preference is [rbenv](https://github.com/sstephenson/rbenv). If you're developing on a Mac and using [Homebrew](http://brew.sh/), installing rbenv is [super easy](https://github.com/sstephenson/rbenv#homebrew-on-mac-os-x).
14
14
 
15
- uswds-rails _might_ work with other versions of Ruby, but it's developed in 2.4.2 and automatically tested against 2.2.8 and 2.3.5 by [Travis CI](https://travis-ci.org/jgarber623/uswds-rails).
15
+ uswds-rails _might_ work with other versions of Ruby, but it's developed in 2.5.0 and automatically tested against 2.2.9, 2.3.6, 2.4.3, and 2.5.0 by [Travis CI](https://travis-ci.org/jgarber623/uswds-rails).
16
16
 
17
17
  ## Installation
18
18
 
19
19
  Add uswds-rails to your Ruby on Rails project's Gemfile:
20
20
 
21
21
  ```rb
22
- ruby '2.4.2'
22
+ ruby '2.5.0'
23
23
 
24
24
  source 'https://rubygems.org'
25
25
  source 'https://rails-assets.org'
@@ -1,4 +1,4 @@
1
- /*! uswds 1.4.4.1 */
1
+ /*! uswds 1.4.5 */
2
2
 
3
3
  // Relative font and image file paths
4
4
  $font-path: 'uswds';
@@ -1,5 +1,5 @@
1
1
  module Uswds
2
2
  module Rails
3
- VERSION = '1.4.4.1'.freeze
3
+ VERSION = '1.4.5'.freeze
4
4
  end
5
5
  end
data/uswds-rails.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'uswds/rails/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.required_ruby_version = ['>= 2.2.7', '< 2.5']
7
+ spec.required_ruby_version = ['>= 2.2.9', '< 2.6']
8
8
 
9
9
  spec.name = 'uswds-rails'
10
10
  spec.version = Uswds::Rails::VERSION
Binary file
Binary file
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uswds-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.4.1
4
+ version: 1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-20 00:00:00.000000000 Z
11
+ date: 2018-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -195,7 +195,6 @@ executables: []
195
195
  extensions: []
196
196
  extra_rdoc_files: []
197
197
  files:
198
- - ".codeclimate.yml"
199
198
  - ".editorconfig"
200
199
  - ".gitignore"
201
200
  - ".rspec"
@@ -378,10 +377,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
378
377
  requirements:
379
378
  - - ">="
380
379
  - !ruby/object:Gem::Version
381
- version: 2.2.7
380
+ version: 2.2.9
382
381
  - - "<"
383
382
  - !ruby/object:Gem::Version
384
- version: '2.5'
383
+ version: '2.6'
385
384
  required_rubygems_version: !ruby/object:Gem::Requirement
386
385
  requirements:
387
386
  - - ">="
@@ -389,7 +388,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
389
388
  version: '0'
390
389
  requirements: []
391
390
  rubyforge_project:
392
- rubygems_version: 2.7.2
391
+ rubygems_version: 2.7.4
393
392
  signing_key:
394
393
  specification_version: 4
395
394
  summary: Integrate the U.S. Web Design Standards into a Ruby on Rails application.
data/.codeclimate.yml DELETED
@@ -1,18 +0,0 @@
1
- ---
2
- engines:
3
- duplication:
4
- enabled: true
5
- config:
6
- languages:
7
- - ruby
8
- fixme:
9
- enabled: true
10
- rubocop:
11
- enabled: true
12
- channel: rubocop-0-51
13
- ratings:
14
- paths:
15
- - lib/
16
- exclude_paths:
17
- - spec/
18
- - vendor/