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 +4 -4
- data/Rakefile +20 -1
- data/app/assets/builds/audiences-ujs.js +1503 -0
- data/docs/CHANGELOG.md +4 -0
- data/docs/README.md +11 -4
- data/lib/audiences/editor_helper.rb +16 -0
- data/lib/audiences/engine.rb +4 -0
- data/lib/audiences/railtie.rb +12 -0
- data/lib/audiences/version.rb +1 -1
- data/lib/audiences.rb +1 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24bf36d4487eb3be44e7adb64c8090021581a8a3a4330820a85373ed9c02eaff
|
4
|
+
data.tar.gz: 9aaa311e297003816d7ab1cb8cf18c9427acac0b030584b0645606242a86a9a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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]
|