bourbon 7.2.0 → 7.3.0
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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +21 -3
- data/CHANGELOG.md +5 -0
- data/core/_bourbon.scss +1 -1
- data/lib/bourbon/version.rb +1 -1
- data/lib/bourbon.rb +3 -1
- data/package.json +1 -1
- metadata +3 -4
- data/.tool-versions +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8b1bb739922d66275ca7d386952f6225db7ac7bbb382cf107d55c4517478d35
|
4
|
+
data.tar.gz: e111c742294460bf8bf934fe40c3a2e80d1a1a7ac0a7bb9d35d932823c54fe11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
9
|
+
test:
|
10
|
+
parameters:
|
11
|
+
ruby-version:
|
12
|
+
type: string
|
4
13
|
docker:
|
5
|
-
- image:
|
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
data/lib/bourbon/version.rb
CHANGED
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
|
-
|
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
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.
|
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:
|
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.
|
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