twbs_sass_rails 7.2.0 → 8.0.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: 03d854c2e440bb4f902fdb1a7884fcce36e447fe14c99afb8bb025399a29f076
4
- data.tar.gz: 3b776e42bfe01a58649fd062183d7025d5b932024b92076ce59be6a10c8d547e
3
+ metadata.gz: 72d9c5e092fdd40cae228bc1744b7c47cc02aa47b67d9c0e609075ecbd6358e5
4
+ data.tar.gz: 01d12560a01f1998dc117388c20cffd2570874d08d3b2a8b3b03f6adf3b4a460
5
5
  SHA512:
6
- metadata.gz: 0003dad904c618b02056f51342713d81fb1029c19c891d40e79f26c5041530ce58c9b0e91e2c55b9d1e660cd47340b68083f45082d5a45982b13ba6f10cd33e3
7
- data.tar.gz: a74867a1422200139c7138ced4b7b988d0eaa7de6f084a186ca390bde25096dfae9e6f7434ad2d38b048d5374b96ef1e68ae0f57d93427e28c4853c5361c79c0
6
+ metadata.gz: 1e7631cb590d2a3882389fee7400291330724bc40ef4f8de12ec349919db1a6281fa9a787356b5bfa158e0b6bb9a9fd6788dca34c0403f55c22be5559f1c0e5d
7
+ data.tar.gz: bd5b23df944961fdf551572a799d631d9d6174a7ed268148f4a37aa7ad2b817b7f2b101398a9b33e7598a952bc34ca67271d380c6fcb0f08d110e38d53ec8132
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 8.0.0
4
+
5
+ * Drop Ruby 2.2 and 2.3 compatibility
6
+ * Add deprecation notice in the readme
7
+ * Use sass-rails 6.0 and sassc 2.1.0.pre3
8
+ * Test against Rails 6
9
+ * Update dependencies
10
+
3
11
  ## 7.2.0
4
12
 
5
13
  * Add Rails 6.0 compatibility
data/LICENSE CHANGED
@@ -1,17 +1,17 @@
1
1
  BSD 2-Clause License
2
2
 
3
- Copyright (c) 2018, diowa
3
+ Copyright (c) 2019, diowa
4
4
  All rights reserved.
5
5
 
6
6
  Redistribution and use in source and binary forms, with or without
7
7
  modification, are permitted provided that the following conditions are met:
8
8
 
9
- * Redistributions of source code must retain the above copyright notice, this
10
- list of conditions and the following disclaimer.
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
11
 
12
- * Redistributions in binary form must reproduce the above copyright notice,
13
- this list of conditions and the following disclaimer in the documentation
14
- and/or other materials provided with the distribution.
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
15
 
16
16
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
17
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
data/README.md CHANGED
@@ -1,18 +1,23 @@
1
1
  # Twbs Sass Rails
2
- [![Gem Version](https://badge.fury.io/rb/twbs_sass_rails.svg)](http://badge.fury.io/rb/twbs_sass_rails)
2
+ [![Gem Version](https://badge.fury.io/rb/twbs_sass_rails.svg)](https://badge.fury.io/rb/twbs_sass_rails)
3
3
  [![Build Status](https://secure.travis-ci.org/diowa/twbs_sass_rails.svg?branch=master)](https://travis-ci.org/diowa/twbs_sass_rails)
4
4
  [![Code Climate](https://codeclimate.com/github/diowa/twbs_sass_rails/badges/gpa.svg)](https://codeclimate.com/github/diowa/twbs_sass_rails)
5
5
  [![Coverage Status](https://coveralls.io/repos/github/diowa/twbs_sass_rails/badge.svg?branch=master)](https://coveralls.io/github/diowa/twbs_sass_rails?branch=master)
6
6
 
7
- An opinionated gem which brings [Bootstrap for Sass 3.4.0](https://getbootstrap.com/docs/3.4/), [Font Awesome 4.7.0](https://fontawesome.com/v4.7.0/) and [Respond.js](https://github.com/scottjehl/Respond) assets into your Rails application.
7
+ An opinionated gem which brings [Bootstrap for Sass 3.4.1](https://getbootstrap.com/docs/3.4/), [Font Awesome 4.7.0](https://fontawesome.com/v4.7.0/) and [Respond.js](https://github.com/scottjehl/Respond) assets into your Rails application.
8
8
 
9
9
 
10
+ ## Deprecated
11
+
12
+ We need this gem for some old projects that require Bootstrap 3.
13
+
14
+ In our new development stack, we are loading Bootstrap and Font Awesome via yarn.
10
15
 
11
16
  ## Quick start
12
17
 
13
18
  Add the gem to your Gemfile
14
19
  ```rb
15
- gem 'twbs_sass_rails'
20
+ gem 'twbs_sass_rails', '~> 7.2'
16
21
  ```
17
22
 
18
23
  Run the generator
@@ -23,7 +28,7 @@ $ rails g twbs_sass_rails:install
23
28
 
24
29
  #### Rails 5.1.x
25
30
 
26
- Rails 5.1 [drops jQuery as a default dependency](http://weblog.rubyonrails.org/2017/2/23/Rails-5-1-beta1/).
31
+ Rails 5.1 [drops jQuery as a default dependency](https://weblog.rubyonrails.org/2017/2/23/Rails-5-1-beta1/).
27
32
 
28
33
  If you need the JavaScript part of Bootstrap, add to your Gemfile
29
34
 
@@ -131,7 +136,7 @@ Please read through our [contributing guidelines](CONTRIBUTING.md). Included are
131
136
 
132
137
  More over, if your pull request contains patches or features, you must include relevant unit tests.
133
138
 
134
- Editor preferences are available in the [editor config](.editorconfig) for easy use in common text editors. Read more and download plugins at <http://editorconfig.org>.
139
+ Editor preferences are available in the [editor config](.editorconfig) for easy use in common text editors. Read more and download plugins at <https://editorconfig.org/>.
135
140
 
136
141
 
137
142
 
@@ -149,7 +154,7 @@ And constructed with the following guidelines:
149
154
  * New additions without breaking backward compatibility bumps the minor (and resets the patch)
150
155
  * Bug fixes and misc changes bumps the patch
151
156
 
152
- For more information on SemVer, please visit [http://semver.org/](http://semver.org/).
157
+ For more information on SemVer, please visit [https://semver.org/](https://semver.org/).
153
158
 
154
159
 
155
160
 
@@ -169,7 +174,7 @@ For more information on SemVer, please visit [http://semver.org/](http://semver.
169
174
 
170
175
  ## Copyright and license
171
176
 
172
- Copyright 2018 diowa under [the BSD 2-Clause license](LICENSE).
177
+ Copyright 2019 diowa under [the BSD 2-Clause license](LICENSE).
173
178
 
174
179
  bootstrap-sass is licensed under the MIT License
175
180
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TwbsSassRails
4
- VERSION = '7.2.0'.freeze
4
+ VERSION = '8.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twbs_sass_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.0
4
+ version: 8.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - diowa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-01 00:00:00.000000000 Z
11
+ date: 2019-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: autoprefixer-rails
@@ -50,14 +50,28 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '5.0'
53
+ version: '6.0'
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '5.0'
60
+ version: '6.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: sassc
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 2.1.0.pre3
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 2.1.0.pre3
61
75
  - !ruby/object:Gem::Dependency
62
76
  name: appraisal
63
77
  requirement: !ruby/object:Gem::Requirement
@@ -98,14 +112,14 @@ dependencies:
98
112
  requirements:
99
113
  - - "~>"
100
114
  - !ruby/object:Gem::Version
101
- version: 0.12.0
115
+ version: 0.13.2
102
116
  type: :development
103
117
  prerelease: false
104
118
  version_requirements: !ruby/object:Gem::Requirement
105
119
  requirements:
106
120
  - - "~>"
107
121
  - !ruby/object:Gem::Version
108
- version: 0.12.0
122
+ version: 0.13.2
109
123
  - !ruby/object:Gem::Dependency
110
124
  name: minitest
111
125
  requirement: !ruby/object:Gem::Requirement
@@ -140,56 +154,70 @@ dependencies:
140
154
  requirements:
141
155
  - - "~>"
142
156
  - !ruby/object:Gem::Version
143
- version: 0.68.1
157
+ version: 0.74.0
144
158
  type: :development
145
159
  prerelease: false
146
160
  version_requirements: !ruby/object:Gem::Requirement
147
161
  requirements:
148
162
  - - "~>"
149
163
  - !ruby/object:Gem::Version
150
- version: 0.68.1
164
+ version: 0.74.0
151
165
  - !ruby/object:Gem::Dependency
152
166
  name: rubocop-performance
153
167
  requirement: !ruby/object:Gem::Requirement
154
168
  requirements:
155
169
  - - "~>"
156
170
  - !ruby/object:Gem::Version
157
- version: '1.1'
171
+ version: '1.4'
158
172
  type: :development
159
173
  prerelease: false
160
174
  version_requirements: !ruby/object:Gem::Requirement
161
175
  requirements:
162
176
  - - "~>"
163
177
  - !ruby/object:Gem::Version
164
- version: '1.1'
178
+ version: '1.4'
179
+ - !ruby/object:Gem::Dependency
180
+ name: rubocop-rails
181
+ requirement: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - "~>"
184
+ - !ruby/object:Gem::Version
185
+ version: '2.3'
186
+ type: :development
187
+ prerelease: false
188
+ version_requirements: !ruby/object:Gem::Requirement
189
+ requirements:
190
+ - - "~>"
191
+ - !ruby/object:Gem::Version
192
+ version: '2.3'
165
193
  - !ruby/object:Gem::Dependency
166
194
  name: scss_lint
167
195
  requirement: !ruby/object:Gem::Requirement
168
196
  requirements:
169
197
  - - "~>"
170
198
  - !ruby/object:Gem::Version
171
- version: 0.57.1
199
+ version: 0.58.0
172
200
  type: :development
173
201
  prerelease: false
174
202
  version_requirements: !ruby/object:Gem::Requirement
175
203
  requirements:
176
204
  - - "~>"
177
205
  - !ruby/object:Gem::Version
178
- version: 0.57.1
206
+ version: 0.58.0
179
207
  - !ruby/object:Gem::Dependency
180
208
  name: simplecov
181
209
  requirement: !ruby/object:Gem::Requirement
182
210
  requirements:
183
211
  - - "~>"
184
212
  - !ruby/object:Gem::Version
185
- version: 0.16.1
213
+ version: 0.17.0
186
214
  type: :development
187
215
  prerelease: false
188
216
  version_requirements: !ruby/object:Gem::Requirement
189
217
  requirements:
190
218
  - - "~>"
191
219
  - !ruby/object:Gem::Version
192
- version: 0.16.1
220
+ version: 0.17.0
193
221
  - !ruby/object:Gem::Dependency
194
222
  name: uglifier
195
223
  requirement: !ruby/object:Gem::Requirement
@@ -342,9 +370,9 @@ require_paths:
342
370
  - lib
343
371
  required_ruby_version: !ruby/object:Gem::Requirement
344
372
  requirements:
345
- - - ">="
373
+ - - "~>"
346
374
  - !ruby/object:Gem::Version
347
- version: '0'
375
+ version: '2.4'
348
376
  required_rubygems_version: !ruby/object:Gem::Requirement
349
377
  requirements:
350
378
  - - ">="