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: d7177f398c41a502417f9a672772b8dedb319616f064d6bcfa7676c0b2d1a5a3
4
- data.tar.gz: b8446cb22d1bd65e02654b09af9a44e711e4178015054c66fcac09f781c39333
3
+ metadata.gz: 2f2acc058be3126105ed604b904979c726831604dc208e357a6836f078c483c2
4
+ data.tar.gz: a99358d7459c50e19132c63db1908ae379cd656410d23deea3fd1d91799565d6
5
5
  SHA512:
6
- metadata.gz: deb2c83f7f39bcd8ce248f9b732a298e8b7bf82aface23a2d0e32f537be720bafb13e5dfa7fab20aed8d0d219179aa06ea37d8ed61ffda4ebd4d543ffaf05020
7
- data.tar.gz: 9a57635c092686e1d3f557caee8a626412dfcf440af18a395fd5b9e03cc18542b6a8bf1c61e91be736565d315fcc1f564f9739d550835bbedbfe06ee1af4aa5a
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 setup_gradle
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
- " gradle(task: \"clean test\")",
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
- " gradle(task: \"clean build\")",
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
- " gradle(task: \"clean artifactoryPublish\")",
35
+ " # Add command to deploy your application",
36
+ " sh('$shell_command_replace_me')",
34
37
  "end"
35
38
  ])
36
39
 
@@ -1,5 +1,5 @@
1
1
  module Pantograph
2
- VERSION = '0.1.6'.freeze
2
+ VERSION = '0.1.7'.freeze
3
3
  DESCRIPTION = 'A way to automate your apps'.freeze
4
4
  RUBOCOP_REQUIREMENT = '0.49.1'.freeze
5
5
  end
@@ -4,7 +4,7 @@ require_relative 'analytics_event_builder'
4
4
 
5
5
  module PantographCore
6
6
  class AnalyticsSession
7
- GA_TRACKING = "UA-121171860-1"
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pantograph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Knapp