tailwindcss-rails 2.0.10 → 2.0.11

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a25b2537200bac23599800553558430c3e24e716d61bcd94b7d0a605d5a63a18
4
- data.tar.gz: 152e0367e0c790a34ed81cbf208d50b9ab1895547155e1d34eb5f90e46392eb7
3
+ metadata.gz: 335ea7d4bb37f05b74d9a7a2430b020aa74b770dc3b2d5c54a8839805feb6c74
4
+ data.tar.gz: d4dcc0318d21d417b193919804b2074d07d6b8686b5b643dbc58d49b4428f432
5
5
  SHA512:
6
- metadata.gz: c3f1d4cb6a98dedb0d5e5827f2304335efc039998c7b73a933948b3e331aff498980411489ac44b5df01bb3428774acd62c5b568462717d762566b581df5cf7f
7
- data.tar.gz: 970f4f261b9606df29fd818c8a578fbd44f6be0e81238d32f30d123a11a4a9184bbdb6654541ce6fb70b05152925176f28a5fde54ac0eec6096e882d58068167
6
+ metadata.gz: 7a53f1f9bf1c022233c8bed2f1d604abc3db77a11508dd9cd2aa82a087b8396b4bd19ccee61a8d322c865fd6dc6146944afd18094c3a4879ce95a4b3103ab701
7
+ data.tar.gz: 57771e2967d2a8657488e46f3e077dc5c92e3753642a950ddaef5e991627831cd39bbb4318e697b8f8d66a5e08c44200a435fbf8543fcf3b4fb0596a061d43a0
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  # constants describing the upstream tailwindcss project
3
3
  module Upstream
4
- VERSION = "v3.1.3"
4
+ VERSION = "v3.1.8"
5
5
 
6
6
  # rubygems platform name => upstream release filename
7
7
  NATIVE_PLATFORMS = {
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.0.10"
2
+ VERSION = "2.0.11"
3
3
  end
data/lib/tasks/build.rake CHANGED
@@ -3,12 +3,12 @@ TAILWIND_COMPILE_COMMAND = "#{RbConfig.ruby} #{Pathname.new(__dir__).to_s}/../..
3
3
  namespace :tailwindcss do
4
4
  desc "Build your Tailwind CSS"
5
5
  task :build do
6
- system TAILWIND_COMPILE_COMMAND
6
+ exec TAILWIND_COMPILE_COMMAND
7
7
  end
8
8
 
9
9
  desc "Watch and build your Tailwind CSS on file changes"
10
10
  task :watch do
11
- system "#{TAILWIND_COMPILE_COMMAND} -w"
11
+ exec "#{TAILWIND_COMPILE_COMMAND} -w"
12
12
  end
13
13
  end
14
14
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.10
4
+ version: 2.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-06-19 00:00:00.000000000 Z
11
+ date: 2022-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubygems_version: 3.3.14
100
+ rubygems_version: 3.3.19
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: Integrate Tailwind CSS with the asset pipeline in Rails.