bourbon 7.2.0 → 7.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
  SHA256:
3
- metadata.gz: 9643a51902ac7ed19eb9ec07b9b4ce3edf9930dd8c9bf0614f0aa26015f5fc67
4
- data.tar.gz: e062e0e0e72a55e3f707e6cb4aaa8e584a5b2e2db6673da4b95702ef4eeb34f4
3
+ metadata.gz: e8b1bb739922d66275ca7d386952f6225db7ac7bbb382cf107d55c4517478d35
4
+ data.tar.gz: e111c742294460bf8bf934fe40c3a2e80d1a1a7ac0a7bb9d35d932823c54fe11
5
5
  SHA512:
6
- metadata.gz: 3ff945a5d401efaaab35635c245e823b2085424adbcb8bddc23fb574d56fdc43af50f29f895c48774f99547c084c5e43ce4f9a8b4abcc4072adc32ea97cd2582
7
- data.tar.gz: 25770a307ff47b90edf8a223c7601fd819917657104ddefc45fdc0f1ac0678f89fb97b25415569e8f962d90abbfc40eebfcfcc5ec58ca73f05a152d847632869
6
+ metadata.gz: 864c62b0d5a67b196ddaef3b5f4f5d6892ce84de42bb563071a27170ced0c452938426ceb1293b34ca6d926240fedd82dd784c5c848a7641d93c59cffb2fc50c
7
+ data.tar.gz: a002231748d4a66b84b5d3dd5a67f0068c23fc1982ef7a44929312a1c11a8566b5e1f521dc4203f8c6a88c117e216eacf8ab057d0a608c31842954defaa50943
data/.circleci/config.yml CHANGED
@@ -1,8 +1,17 @@
1
- version: 2
1
+ version: 2.1
2
+
3
+ orbs:
4
+ # orbs are basically bundles of pre-written build scripts that work for common cases
5
+ # https://github.com/CircleCI-Public/ruby-orb
6
+ ruby: circleci/ruby@1.1
7
+
2
8
  jobs:
3
- build:
9
+ test:
10
+ parameters:
11
+ ruby-version:
12
+ type: string
4
13
  docker:
5
- - image: circleci/ruby:2.6.5-node
14
+ - image: cimg/ruby:<< parameters.ruby-version >>-node
6
15
  steps:
7
16
  - checkout
8
17
  - restore_cache:
@@ -22,3 +31,12 @@ jobs:
22
31
  - run:
23
32
  name: Parse SassDoc comments
24
33
  command: npm run sassdoc
34
+ workflows:
35
+ build_and_test:
36
+ jobs:
37
+ - test:
38
+ matrix:
39
+ parameters:
40
+ # https://github.com/CircleCI-Public/cimg-ruby
41
+ # only supports the last three ruby versions
42
+ ruby-version: ["2.7", "3.0", "3.1", "3.2"]
data/CHANGELOG.md CHANGED
@@ -3,6 +3,11 @@
3
3
  All notable changes to this project will be documented in this file. This
4
4
  project adheres to [Semantic Versioning](http://semver.org).
5
5
 
6
+ ## [7.3.0] - 2023-01-20
7
+
8
+ ## Changed
9
+ - Update initializers so they only include assets for >=Rails 5. [https://github.com/thoughtbot/bourbon/pull/1109/](https://github.com/thoughtbot/bourbon/pull/1109/files)
10
+
6
11
  ## [7.2.0] - 2022-02-22
7
12
 
8
13
  ### Changed
data/core/_bourbon.scss CHANGED
@@ -1,4 +1,4 @@
1
- // Bourbon 7.2.0
1
+ // Bourbon 7.3.0
2
2
  // https://www.bourbon.io/
3
3
  // Copyright 2011-2020 thoughtbot, inc.
4
4
  // MIT License
@@ -1,3 +1,3 @@
1
1
  module Bourbon
2
- VERSION = "7.2.0"
2
+ VERSION = "7.3.0".freeze
3
3
  end
data/lib/bourbon.rb CHANGED
@@ -3,7 +3,9 @@ require "bourbon/generator"
3
3
  module Bourbon
4
4
  if defined?(Rails) && defined?(Rails::Engine)
5
5
  class Engine < ::Rails::Engine
6
- config.assets.paths << File.expand_path("../core", __dir__)
6
+ initializer "bourbon.paths", group: :all do |app|
7
+ app.config.assets.paths << File.expand_path("../core", __dir__)
8
+ end
7
9
  end
8
10
  else
9
11
  begin
data/package.json CHANGED
@@ -37,5 +37,5 @@
37
37
  "stylelint": "npx stylelint 'core/**/*.scss'",
38
38
  "test": "bundle exec rake"
39
39
  },
40
- "version": "7.2.0"
40
+ "version": "7.3.0"
41
41
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bourbon
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.0
4
+ version: 7.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Reuter
@@ -17,7 +17,7 @@ authors:
17
17
  autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
- date: 2022-02-22 00:00:00.000000000 Z
20
+ date: 2023-01-23 00:00:00.000000000 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: aruba
@@ -133,7 +133,6 @@ files:
133
133
  - ".hound.yml"
134
134
  - ".npmignore"
135
135
  - ".stylelintrc.json"
136
- - ".tool-versions"
137
136
  - CHANGELOG.md
138
137
  - CODE_OF_CONDUCT.md
139
138
  - CONTRIBUTING.md
@@ -307,7 +306,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
307
306
  - !ruby/object:Gem::Version
308
307
  version: '0'
309
308
  requirements: []
310
- rubygems_version: 3.0.3
309
+ rubygems_version: 3.2.15
311
310
  signing_key:
312
311
  specification_version: 4
313
312
  summary: A lightweight Sass tool set.
data/.tool-versions DELETED
@@ -1,2 +0,0 @@
1
- ruby 2.6.5
2
- nodejs 12.16.1