ahalogy-automation 0.0.8 → 0.0.9

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: 575ffbb59ec107eaa7755a0ad754a0e15cc2e2fe
4
- data.tar.gz: 1cf374b267124a5ee86514a1d979da14e09be347
3
+ metadata.gz: 8dc7cae9089fb1ddfc13f36b60fb254f6cf7f0b4
4
+ data.tar.gz: 4da504e1ce0c096f0497ae36b973803dc3f01a07
5
5
  SHA512:
6
- metadata.gz: 002487b317e1ded8e16f3925cedda137a6aa2f67c669cb834a93930d8334ed076ab3e409e5f6e22b3bf33500438d0d2ae6300fe1571fba405a2462ed4a78c3a4
7
- data.tar.gz: d2d9432afd5e90f397e3a5c82548b8dc66935800f7f9a789edf091b6a49d5aa4d30a123caa6e924aa1dc669956137488b60295e544e83c281b3d3bd95ee2ad47
6
+ metadata.gz: 9c88c47b2e69d85170f6e39b3c4d92ae306696f2814734bb9eac94cda1073f0281add420bf88f4ffd717d073caf0023b1cf45433ff88b12af7c68fdb9dbde475
7
+ data.tar.gz: 19d702864a81bb88125694939039887dabe34fd55b8a30378592c93d0961ded5390ca8a2bf1b7f7ff33fd595cf6b36b88a366ae3bf94eaa9cdcae60c2ecbebd1
data/TODO CHANGED
@@ -1,5 +1,6 @@
1
1
  features:in
2
2
  Need to add a way to manage filevault recovery keys that removes end users from having to remember a password or save a recovery key. Either an institutional key needs to be added (but not viewable in the script code) or store the personal key that is generated in a secure bucket.
3
3
  Also pow seems to be a bit convoluted, maybe install it without brew or at least automate the rest of the set up steps now that the script is run with sudo
4
+ Missing ember-cli for front end developers and designers.
4
5
  issues:
5
6
 
@@ -1,8 +1,8 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = 'ahalogy-automation'
3
- gem.version = '0.0.8'
3
+ gem.version = '0.0.9'
4
4
  gem.licenses = ['MIT']
5
- gem.date = '2015-06-26'
5
+ gem.date = '2015-07-01'
6
6
  gem.summary = 'Scripts to handle IT automation.'
7
7
  gem.description = 'Scripts that install applications on Ahalogy Mac computers.'
8
8
  gem.authors = ['Zan Loy', 'Brian Cerchio']
@@ -43,7 +43,7 @@ db = Daybreak::DB.new File.expand_path('~/.ahalogy.db'), default: ''
43
43
  # Verify values are already in the database or ask for them
44
44
  unless options[:skip_github]
45
45
  if options[:ask] or db[:github_username].empty?
46
- db[:github_username] = ask('GitHub Username? (leave blank to skip)')
46
+ db[:github_username] = ask('GitHub Username? (leave blank to skip or if you have 2FA enabled...)')
47
47
  end
48
48
  if !db[:github_username].empty? and (options[:ask] or db[:github_password].empty?)
49
49
  db[:github_password] = ask('GitHub Password?') { |q| q.echo = 'x' }
@@ -88,7 +88,7 @@ begin
88
88
  xcode_dmg = options[:xcode]
89
89
  else
90
90
  puts 'Downloading Xcode to install...'.colorize(:blue)
91
- system('curl --output /tmp/xcode.dmg https://s3-us-west-1.amazonaws.com/a5y-is-and-t/Xcode_6.3.2.dmg')
91
+ system('curl --output /tmp/xcode.dmg https://s3-us-west-1.amazonaws.com/a5y-is-and-t/Xcode_6.4.dmg')
92
92
  xcode_dmg = '/tmp/xcode.dmg'
93
93
  end
94
94
  command = Command.run("hdiutil attach -nobrowse '#{xcode_dmg}'")
@@ -170,6 +170,7 @@ begin
170
170
  puts 'SSH Key already installed on GitHub...skipped.'.colorize(:green)
171
171
  end
172
172
  end
173
+ run_cmd 'sudo srm -f -m ~/.ahalogy.db', 'Sanitizing database...'
173
174
  end
174
175
 
175
176
  # Install homebrew
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ahalogy-automation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zan Loy
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-06-26 00:00:00.000000000 Z
12
+ date: 2015-07-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colorize