raykit 0.0.494 → 0.0.495
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/lib/raykit/auto_setup.rb +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a40e336c83089a0f92ad84e730d6530475300ac71b29f6f77fa73ee2edb77a79
|
|
4
|
+
data.tar.gz: 22fdff76f546a31f00e9d0406a5da42f7ceb250801dd39ba9708a0accadb829b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 472716f0b6e66a91f5abf1a2e47b992bc7a6bb5e5e6e266c61df49158298e16e8c16fbe971a6fa48adcd1dcc8a65f063e16c41df34ac75f276f100da0647e47b
|
|
7
|
+
data.tar.gz: 98e51ce4e62beeba7bccf8b5591ed31da987b6500fdb2148a6196d1d5ae9d93cd767a60fc976db4beeba85f039b16c392620bea3fb2f096002a11bf9c71c7cde
|
data/lib/raykit/auto_setup.rb
CHANGED
|
@@ -40,6 +40,13 @@ module Raykit
|
|
|
40
40
|
end
|
|
41
41
|
end
|
|
42
42
|
|
|
43
|
+
# WPF example apps
|
|
44
|
+
if (defined?(RAYKIT_WPF_EXAMPLE_APPS))
|
|
45
|
+
RAYKIT_WPF_EXAMPLE_APPS.each do |app|
|
|
46
|
+
Raykit::DotNet::initialize_csharp_wpf_example app
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
43
50
|
# count the number of projects in the current directory
|
|
44
51
|
project_count = Dir.glob("**/*.csproj").length
|
|
45
52
|
Raykit::DotNet::create_solution(PROJECT.name) if (project_count > 0)
|