lasertag 0.3.3 → 0.3.4

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
  SHA1:
3
- metadata.gz: 79431ec8eb567ca01d3707853c04640c5e970d8c
4
- data.tar.gz: a6a8cc0b3f52f7a0e8ac046d9620fc1c45a80e00
3
+ metadata.gz: 612d6c98f05b18868b1e9d47ba82b56f82f5bee5
4
+ data.tar.gz: 82d82d0acafa559adaad6b0cd8abf0cc6ac9f1ce
5
5
  SHA512:
6
- metadata.gz: 4390a66da2a2a4e36294b2d0785cbcf0ec13ff73de76c354d9af6e58d413197433e0b5b219fbda1d80dca1775c1012f0c35f41582bbed80c45f5a575f30fdb3c
7
- data.tar.gz: 6b91c86d014177538c5177d044bb5cc644c47a9d00e2e83b9fbdfc4bb44ae5ab6a29b10fbf77bdf5df22578133af2bc69cf432bff47ead32d9583e0df36ee975
6
+ metadata.gz: 8de709cf217bca9b543372a9a566e193abdcb2b4a01ad12ef1285711b29d91dca7f7c0544dabe951748d2bcff77bae22223e786f6a0c0dc428b71151def8fef1
7
+ data.tar.gz: 315d2d6d4a266fc0e7846b5d9a081ba5ae15c6f41ac873c4efd59a2c8c5f71db2bca012cde916401ac38cfe61991e3417e32f2b9ee9dd7f8a21e6fa6b3b0f8dd
data/README.md CHANGED
@@ -24,6 +24,8 @@ This will extract the android's app module `version` and create a matching `git
24
24
  $ lasertag --path ~/Project --module app --flavor prod --remote origin
25
25
  ```
26
26
 
27
+ > $ lasertag --path <b>~/Project</b> --module app --flavor prod --remote origin
28
+
27
29
 
28
30
  ## Handy in
29
31
 
@@ -25,6 +25,7 @@ module Lasertag
25
25
 
26
26
  end
27
27
 
28
+ ### Options parser
28
29
  def create_options_parser(args)
29
30
 
30
31
  args.options do |opts|
@@ -67,36 +68,16 @@ module Lasertag
67
68
  end
68
69
  end
69
70
 
70
- ##
71
- ## Manage options
72
- ##
71
+ ### Manage options
73
72
  def manage_opts
74
73
 
75
- if @require_analyses
76
- # instatiate android project
77
- # android_project = AndroidProject.new(@app_path)
78
-
79
- # # is a valid android project?
80
- # unless android_project.is_valid
81
- # puts "#{@app_path.red} is not a valid android project"
82
- # exit
83
- # end
84
- end
85
-
86
74
  unless @app_module
87
75
  puts "Please give me an app module name".yellow
88
76
  exit 1
89
77
  end
90
78
 
91
- handle_it_all
92
-
93
- end
94
-
95
- def handle_it_all
96
-
97
79
  Dir.chdir @app_path
98
80
 
99
- ### dont let uncommited stuffgit commit
100
81
  if has_uncommited_code
101
82
  puts "You have uncommited code, please commit it first".red
102
83
  exit 1
@@ -113,12 +94,10 @@ module Lasertag
113
94
  ### Get project properties
114
95
  @hash = project_properties @app_module
115
96
 
116
- puts "\n"
117
-
118
97
  ### Find app info
119
98
  app_info = get_app_info
120
99
 
121
- puts "For package #{app_info[:package].yellow}\n"
100
+ puts "\nFor package #{app_info[:package].yellow}\n"
122
101
 
123
102
  ### git tag -a "versionNumber" -m "versionName"
124
103
 
@@ -137,7 +116,7 @@ module Lasertag
137
116
  exit 1
138
117
  end
139
118
 
140
- #$ git push origin v1.5
119
+ #$ git push origin v#{version}
141
120
  push_tag "v#{version}"
142
121
 
143
122
  puts "Pushed git commits and tags.".green
@@ -202,14 +181,8 @@ module Lasertag
202
181
  end
203
182
  end
204
183
 
205
- def settings_gradle_file(path = @base_path)
206
- File.join(path, 'settings.gradle')
207
- end
208
-
209
- def is_valid(settings_path = @settings_gradle_path)
210
- File.exist?(settings_path)
211
- end
212
184
 
185
+ ### Convert the app info to an hash
213
186
  def convert_values_to_hash (str)
214
187
  hash = Hash.new
215
188
 
@@ -227,6 +200,7 @@ module Lasertag
227
200
  hash
228
201
  end
229
202
 
203
+ ### Get the project properties
230
204
  def project_properties(project=nil)
231
205
 
232
206
  project = "#{project}:" if project
@@ -236,6 +210,7 @@ module Lasertag
236
210
  end
237
211
 
238
212
 
213
+ ### Get the app info
239
214
  def get_app_info
240
215
  path = get_path_to_merged_manifest
241
216
  handle = File.open(path)
@@ -253,6 +228,7 @@ module Lasertag
253
228
  }
254
229
  end
255
230
 
231
+ ### Path to the merged manifest
256
232
  def get_path_to_merged_manifest
257
233
  build_dir = @hash['buildDir']
258
234
 
@@ -276,6 +252,7 @@ module Lasertag
276
252
  full_path
277
253
  end
278
254
 
255
+ ### Assemble command
279
256
  def assemble_command
280
257
  "gradle :#{@app_module}:assemble#{(@app_flavor or "").capitalize}Release"
281
258
  end
@@ -1,3 +1,3 @@
1
1
  module Lasertag
2
- VERSION = '0.3.3'
2
+ VERSION = '0.3.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lasertag
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - cesarferreira