audiences 1.5.4 → 1.6

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: fd59db4417464971778494de7c990f84e60c53437f2fe42539f346982ccbfb78
4
- data.tar.gz: '048a21bed0712f1319b0a307a7d673e90ebdb1e8bf2dbff83e07866ffe642e2b'
3
+ metadata.gz: 24bf36d4487eb3be44e7adb64c8090021581a8a3a4330820a85373ed9c02eaff
4
+ data.tar.gz: 9aaa311e297003816d7ab1cb8cf18c9427acac0b030584b0645606242a86a9a2
5
5
  SHA512:
6
- metadata.gz: 46734c2a07e2c7613a686371e3b65a22db975bfd857ef1ea6a10785ea65399016394802046018b94eb84a9c2fbd95c66469f28ce4620a35c24ec6f2da4af71bd
7
- data.tar.gz: d246e5e8636ffaded7bb3ae150d3df5cc185c8223f526c6cecb578f51810597098241c47f25a1b5e625bc45f8395a88b7aa6da852e519efc8d92d35b12cddced
6
+ metadata.gz: ba211f05de68c2cf0aa9c24af2d36f5196d094fed544b8fb234aab9d7dfa9681169e17650f2cdb02cdce1e9e37348bf88325414edf1675dcca03d2827eb196ca
7
+ data.tar.gz: c9d81bbae9a9b80a763f0dabae2e2b228dc12b8ce57e083e19b7786de8a6a98617f196fd71a164f2834c880315e9839c9adbdfb4bdf5c68f3b59ad0fae1a51d1
data/Rakefile CHANGED
@@ -15,4 +15,23 @@ APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
15
15
  load "rails/tasks/engine.rake"
16
16
  load "rails/tasks/statistics.rake"
17
17
 
18
- task default: %i[rubocop spec]
18
+ desc "Build audiences-react and copy JS to Rails assets"
19
+ task build_frontend: :environment do
20
+ puts "Building audiences-react..."
21
+ system("cd ../audiences-react && yarn install && yarn build --mode ujs") || raise("Failed to build audiences-react")
22
+
23
+ source_path = Pathname.pwd.join("../audiences-react/dist/audiences-ujs.js")
24
+ destination_dir = Pathname.pwd.join("app/assets/builds")
25
+ destination_path = destination_dir.join("audiences-ujs.js")
26
+
27
+ destination_dir.mkpath
28
+ raise "Build file not found: #{source_path}" unless source_path.exist?
29
+
30
+ puts "Copying #{source_path} to #{destination_path}..."
31
+ FileUtils.cp(source_path.to_s, destination_path.to_s)
32
+ puts "Successfully copied!"
33
+ end
34
+
35
+ Rake::Task["build"].enhance(["build_frontend"])
36
+
37
+ task default: %i[rubocop spec build_frontend]