scratch-gui 0.1.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/lib/scratch/gui.rb +6 -1
- data/lib/scratch/gui/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0da8e8621be9bb503f7df5970c71a34806456dff649d94af24f55c1955b3cc94
|
4
|
+
data.tar.gz: c1d703652dc89c4e7bb13497b332ae73e953d4e1086032a1945990c620202362
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c01ceef87d5692c89bfb9f77e60a0a78ab50167ce0450cb8dc48625c4b3a3cb1589e3cfca4bd9eed62a969dafded8a24d19399a3043ed3715ad786e3169940f
|
7
|
+
data.tar.gz: 42b55edbaeed4cd81d902f4027f6d720b246b20e095932c8ec841e8d51cde5e248b306e42319c4e10c26a609020d494eb8ebb28db80b85ad357a5678b55ccf67
|
data/Rakefile
CHANGED
data/lib/scratch/gui.rb
CHANGED
@@ -5,10 +5,15 @@ module Scratch
|
|
5
5
|
class Engine < ::Rails::Engine
|
6
6
|
end if defined? ::Rails::Engine
|
7
7
|
|
8
|
-
ASSETS_PATH=File.join(__dir__, '..', '..', 'app', 'assets')
|
8
|
+
ASSETS_PATH = File.join(__dir__, '..', '..', 'app', 'assets')
|
9
|
+
PUBLIC_PATH = File.join(__dir__, '..', '..', '..', 'public', 'static')
|
9
10
|
|
10
11
|
def self.assets_path_for(asset)
|
11
12
|
File.join ASSETS_PATH, asset
|
12
13
|
end
|
14
|
+
|
15
|
+
def self.public_path_for(asset)
|
16
|
+
File.join PUBLIC_PATH, asset
|
17
|
+
end
|
13
18
|
end
|
14
19
|
end
|
data/lib/scratch/gui/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scratch-gui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luis Cannavo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-10-
|
11
|
+
date: 2018-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|