inesita 1.0.pre.6 → 1.0.pre.8
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 845d81b2f584ef901f1663899fe40b2f356cc490ae9de224e1ea8ab12e859ba1
|
4
|
+
data.tar.gz: abc186b533865816e80849d47f5bad332f3f8c58a83394c9218ef85d8b53cc0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c33cffbb7eceb0990daa39d4f02502de08145f330a92582569335c62cc296a0caba251fea8a01930976651bcbad1477f783ae19724821c3f2aa61aad2887bdf0
|
7
|
+
data.tar.gz: 94701d1d0f6c4b7e7a273f2061f81b4a1ead79eff7476729e9137d9041a758832b69d50b89546c1b0926102dc5ccb3190367205c5e239e3fcd085d48f8c57188
|
data/inesita.gemspec
CHANGED
data/lib/inesita/cli/build.rb
CHANGED
@@ -60,9 +60,10 @@ module Inesita
|
|
60
60
|
|
61
61
|
Dir.glob("./#{static_dir}/**/*").each do |file|
|
62
62
|
if File.directory?(file)
|
63
|
-
|
63
|
+
puts file.inspect
|
64
|
+
empty_directory File.join(destination_dir, file.gsub(static_dir, 'assets')), force: force
|
64
65
|
else
|
65
|
-
copy_file File.absolute_path(file), File.join(destination_dir, file.gsub(static_dir, '
|
66
|
+
copy_file File.absolute_path(file), File.join(destination_dir, file.gsub(static_dir, 'assets')), force: force
|
66
67
|
end
|
67
68
|
end
|
68
69
|
end
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<meta charset="utf-8">
|
5
5
|
<title><%= config[:project_name] %></title>
|
6
6
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
7
|
-
<link rel="stylesheet" href="/
|
7
|
+
<link rel="stylesheet" href="/assets/stylesheet.css"/>
|
8
8
|
<%= Inesita.assets_code %>
|
9
9
|
</head>
|
10
10
|
<body>
|
data/lib/inesita/config.rb
CHANGED
data/lib/inesita/server.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inesita
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.pre.
|
4
|
+
version: 1.0.pre.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michał Kalbarczyk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opal
|
@@ -208,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
208
208
|
- !ruby/object:Gem::Version
|
209
209
|
version: 1.3.1
|
210
210
|
requirements: []
|
211
|
-
rubygems_version: 3.4.
|
211
|
+
rubygems_version: 3.4.10
|
212
212
|
signing_key:
|
213
213
|
specification_version: 4
|
214
214
|
summary: Frontend web framework for Opal
|