tailwindcss-rails 2.0.10-x86_64-darwin → 2.0.11-x86_64-darwin

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: 8078747af50bf242a00dd651a054bdc04f4cdfd65a4d43774d9dc488f119044f
4
- data.tar.gz: e1f8093274e69434d3b030afe955c50c7402bb0fe2f639a5ead55cac27f22bf2
3
+ metadata.gz: b8c2fefa393f6cbd52a24f59cef78c192e403dfc71fa7a237662f447586df1a3
4
+ data.tar.gz: 68da00517f3dbfda22c102db26c904faa9029fa6d9b7ad50b59986182d429b7a
5
5
  SHA512:
6
- metadata.gz: 151e262085d70219b1a6bfe09748f2a9c6232828820de5618fc431655fe35d3951a96cce4b8477f4f5df97925547a25d364551b03918cccaf450f2f05d3846a3
7
- data.tar.gz: 8c83b586d09b213979e47bdacc1a1aa3f7db5698a89fbe218af5e5c92558084711d5a2f129d336543cd23312ab29e066166427c9dee713fa3bc9181c3f18de77
6
+ metadata.gz: 672e4a59ea7bfefa5a0d14a45271ebad662ef904a78487a61b95e6464891940ad6f27d19754c002de5cf2a08570ebcafbd040501edab80a0b19bfc9f83a6c957
7
+ data.tar.gz: ebe96031d834f0a57c6ec21de99b29b5e81ce6e2848af19af7c8a912b71b69362e6549ef24eac85bb9efaafc342abc13faa6fbfc6c816468a7592f05e333867f
Binary file
@@ -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: x86_64-darwin
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
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  - !ruby/object:Gem::Version
100
100
  version: '0'
101
101
  requirements: []
102
- rubygems_version: 3.3.14
102
+ rubygems_version: 3.3.19
103
103
  signing_key:
104
104
  specification_version: 4
105
105
  summary: Integrate Tailwind CSS with the asset pipeline in Rails.