infinum_setup 0.8.0 → 1.0.0

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
- SHA1:
3
- metadata.gz: bc59c19ed7c5b592af3ff9d85be56a95d146e8e2
4
- data.tar.gz: 09c746d56106e25d9e88912f8b8946002cc631e2
2
+ SHA256:
3
+ metadata.gz: f3afdf9f31699a43b0c4618ce734c3b66c41e8401e36da7a63f6d320cfdc6a8e
4
+ data.tar.gz: c4ec2e302fea5188494194bb01c3b680b64640e95531279cfef5a670c01b9cf2
5
5
  SHA512:
6
- metadata.gz: bc211e9e3e4e2e1c3fbe915836a1e7d188d5203d603d6a4202f9ef08abbd2f45b0ab658855e47bb1fb8aae3f93b9a672f223221c6aece14d05d30227c630ca43
7
- data.tar.gz: 188920b9405304e62af85bdc70f79f16acbe6ca4892afceba53cec2c62d826606b974943caec0b68a77d66db733dda2c085df401bf87fa6bd4cc8d171c3047c1
6
+ metadata.gz: a3b56a0c3605c76b1e33e4b2cd6a930dbe749859144b09b4e015e8c9a7413ca27cfe6f2cba8f3357c981d2c0db7981b624dc72686a614ca16027ec502cbbdfa4
7
+ data.tar.gz: 74364796b8e3589a2a94f9297cb803760d64e5a654369b6e1321cd78f0ff64d5eb49aef4e0fc7191f3153ac8f74927c8a69472d8291c799a8be06a464d69f803
data/README.md CHANGED
@@ -6,8 +6,9 @@ If you feel there are programs missing please make a PR and I will be happy to m
6
6
 
7
7
  ## Installation
8
8
 
9
- Run the following script
9
+ Run the following commands:
10
10
 
11
+ $ sudo xcode-select --install
11
12
  $ sudo gem install infinum_setup
12
13
 
13
14
  ## Usage
@@ -6,7 +6,7 @@ module InfinumSetup
6
6
  end
7
7
 
8
8
  def command
9
- "brew cask install #{program}"
9
+ "brew install #{program}"
10
10
  end
11
11
 
12
12
  def program
@@ -1,3 +1,3 @@
1
1
  module InfinumSetup
2
- VERSION = '0.8.0'.freeze
2
+ VERSION = '1.0.0'.freeze
3
3
  end
data/programs/general.yml CHANGED
@@ -1,13 +1,8 @@
1
- xcode-select:
2
- mandatory: true
3
- type: script
4
- script: sudo xcode-select --install
5
- post_install_comment: A window will popup asking you if you want to install only esential tools or the whole XCode.
6
1
  brew:
7
2
  pre_install_comment: If after finishing with xcode installation the last line says "brew -- Installing" just hit enter!
8
3
  mandatory: true
9
4
  type: script
10
- script: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
5
+ script: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
11
6
  git:
12
7
  mandatory: true
13
8
  type: brew
@@ -43,7 +38,8 @@ fish:
43
38
  type: brew
44
39
  program: fish
45
40
  rbenv:
46
- mandatory: true
41
+ mandatory: false
42
+ install_if_not_interactive: true
47
43
  type: brew
48
44
  program: rbenv
49
45
  readline:
@@ -59,7 +55,8 @@ libffi:
59
55
  type: brew
60
56
  program: libffi
61
57
  node:
62
- mandatory: true
58
+ mandatory: false
59
+ install_if_not_interactive: true
63
60
  type: brew
64
61
  program: node
65
62
  OhMyZsh:
@@ -70,7 +67,7 @@ OhMyZsh:
70
67
  type: script
71
68
  script: curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
72
69
  ssh-keygen:
73
- pre_install_comment: Will run ssh-keygen
70
+ pre_install_comment: Will run ssh-keygen. If it takes more than a minute just hit enter!
74
71
  post_install_comment: Please add your public key to https://docs.google.com/spreadsheets/d/1Wo4OYVWsCW6I1IxrSzieLkmTiP6XjCjLtyoMmJpnkZg/edit
75
72
  mandatory: false
76
73
  install_if_not_interactive: true
@@ -108,6 +105,11 @@ alfred:
108
105
  type: cask
109
106
  program: alfred
110
107
  post_install_command: open /Applications/Alfred\ 3.app
108
+ slack:
109
+ mandatory: true
110
+ type: cask
111
+ program: slack
112
+ post_install_command: open /Applications/Slack.app
111
113
  iterm2:
112
114
  pre_install_comment: iTerm2 is a replacement for Terminal and the successor to iTerm
113
115
  mandatory: false
@@ -172,6 +174,12 @@ sublime-text:
172
174
  type: cask
173
175
  program: sublime-text
174
176
  # post_install_command: open /Applications/Sublime\ Text.app
177
+ vscode:
178
+ mandatory: false
179
+ install_if_not_interactive: false
180
+ type: cask
181
+ program: visual-studio-code
182
+ # post_install_command: open /Visual\ Studio\ Code.app
175
183
  vlc:
176
184
  mandatory: false
177
185
  install_if_not_interactive: true
@@ -1,9 +1,11 @@
1
- # {program_name}:
2
- # type: brew/cask/gem/npm/command
3
- # mandatory: true/false
4
- # install_if_not_interactive: true/false
5
- # program: {program}
6
- # pre_install_comment: A comment to print out before installing
7
- # post_install_comment: A comment to print out after install
8
- # post_install_command: eg. open the app
9
- # script: a script to be run if type is `command`
1
+ n:
2
+ mandatory: true
3
+ install_if_not_interactive: true
4
+ type: brew
5
+ program: n
6
+ post_install_command: n latest # update to the latest node version
7
+ imageoptim:
8
+ mandatory: false
9
+ install_if_not_interactive: false
10
+ type: cask
11
+ program: imageoptim
data/programs/rails.yml CHANGED
@@ -19,7 +19,7 @@ postgresql:
19
19
  mandatory: true
20
20
  type: brew
21
21
  program: postgresql
22
- post_install_command: brew services start postgresql; createuser -s postgres
22
+ post_install_command: brew services start postgresql; sleep 5; createuser -s postgres
23
23
  sequel-pro:
24
24
  pre_install_comment: Sequel Pro is a fast, easy-to-use Mac database management application for working with MySQL databases.
25
25
  mandatory: false
@@ -33,13 +33,3 @@ postico:
33
33
  install_if_not_interactive: true
34
34
  type: cask
35
35
  program: postico
36
- gitkraken:
37
- pre_install_comment: Modern Git GUI
38
- mandatory: false
39
- install_if_not_interactive: true
40
- type: cask
41
- program: gitkraken
42
- pow:
43
- mandatory: true
44
- type: script
45
- script: curl get.pow.cx | sh
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infinum_setup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stjepan Hadjic
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-02-12 00:00:00.000000000 Z
11
+ date: 2021-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -156,7 +156,7 @@ licenses:
156
156
  - MIT
157
157
  metadata:
158
158
  allowed_push_host: https://rubygems.org
159
- post_install_message:
159
+ post_install_message:
160
160
  rdoc_options: []
161
161
  require_paths:
162
162
  - lib
@@ -171,9 +171,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
171
171
  - !ruby/object:Gem::Version
172
172
  version: '0'
173
173
  requirements: []
174
- rubyforge_project:
175
- rubygems_version: 2.5.1
176
- signing_key:
174
+ rubygems_version: 3.0.3
175
+ signing_key:
177
176
  specification_version: 4
178
177
  summary: This script will help you bootstrap your shiny new laptop
179
178
  test_files: []