pantograph 0.1.6 → 0.1.7
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f2acc058be3126105ed604b904979c726831604dc208e357a6836f078c483c2
|
4
|
+
data.tar.gz: a99358d7459c50e19132c63db1908ae379cd656410d23deea3fd1d91799565d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ff4871810c5c6fd13149afcade900af44d30c3cf0b794141644dcb478eb633587d1c34846ef6d6343500c3ecc1219ea64bfc783e9bac7ee2433f5d42018dc3c
|
7
|
+
data.tar.gz: 21580697573884a6db64047460e4740f5897445e8edff536dd4a4bebe06df172825a5ddc7ab9af698eed201a7ea136c66bc4035b83c08d1c09025fa41f89fef0
|
@@ -2,7 +2,7 @@ module Pantograph
|
|
2
2
|
class SetupGeneric < Setup
|
3
3
|
# attr_accessor :package_name
|
4
4
|
|
5
|
-
def
|
5
|
+
def setup_generic
|
6
6
|
# self.platform = :generic
|
7
7
|
|
8
8
|
welcome_to_pantograph
|
@@ -16,21 +16,24 @@ module Pantograph
|
|
16
16
|
self.append_lane([
|
17
17
|
"desc \"Runs all the tests\"",
|
18
18
|
"lane :test do",
|
19
|
-
"
|
19
|
+
" # Add command to execute your tests",
|
20
|
+
" sh('$shell_command_replace_me')",
|
20
21
|
"end"
|
21
22
|
])
|
22
23
|
|
23
24
|
self.append_lane([
|
24
25
|
"desc \"Publish new version to Artifactory\"",
|
25
26
|
"lane :build do",
|
26
|
-
"
|
27
|
+
" # Add command to build your application",
|
28
|
+
" sh('$shell_command_replace_me')",
|
27
29
|
"end"
|
28
30
|
])
|
29
31
|
|
30
32
|
self.append_lane([
|
31
33
|
"desc \"Deploy a new version to Artifactory\"",
|
32
34
|
"lane :publish do",
|
33
|
-
"
|
35
|
+
" # Add command to deploy your application",
|
36
|
+
" sh('$shell_command_replace_me')",
|
34
37
|
"end"
|
35
38
|
])
|
36
39
|
|
@@ -4,7 +4,7 @@ require_relative 'analytics_event_builder'
|
|
4
4
|
|
5
5
|
module PantographCore
|
6
6
|
class AnalyticsSession
|
7
|
-
GA_TRACKING =
|
7
|
+
GA_TRACKING = 'UA-153995158-1'
|
8
8
|
|
9
9
|
private_constant :GA_TRACKING
|
10
10
|
attr_accessor :session_id
|
@@ -65,6 +65,7 @@ module PantographCore
|
|
65
65
|
end
|
66
66
|
|
67
67
|
def finalize_session
|
68
|
+
|
68
69
|
@threads.map(&:join)
|
69
70
|
end
|
70
71
|
end
|