infinum_setup 0.8.0 → 1.0.1

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: bdf1fa7b2966b3d56a18d88255a418d01e3c83b6c7084909acaeda838a955709
4
+ data.tar.gz: f14cb4aeefa05fd8735b7fe3dc0381bcf4ae6fc3dae3d44c566a24fdc895624b
5
5
  SHA512:
6
- metadata.gz: bc211e9e3e4e2e1c3fbe915836a1e7d188d5203d603d6a4202f9ef08abbd2f45b0ab658855e47bb1fb8aae3f93b9a672f223221c6aece14d05d30227c630ca43
7
- data.tar.gz: 188920b9405304e62af85bdc70f79f16acbe6ca4892afceba53cec2c62d826606b974943caec0b68a77d66db733dda2c085df401bf87fa6bd4cc8d171c3047c1
6
+ metadata.gz: dc0b2c152e61724d7eeeb55d860623d866e790b65c21a3bd7dff7b1b987e77284e479039183b0683e85ead64a202dfa7515f2fd23e045896f6d279b5c57ece16
7
+ data.tar.gz: 00d7d342633dcf83f1bed58d75165115dc64cd409804f80e0c11904503da22fe5fc1aeb875fa097a28822895b819578d99d0acb0bfcc444106d975eed2442a25
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
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
  spec.add_development_dependency 'rspec', '~> 3.0'
33
33
  spec.add_development_dependency 'pry'
34
34
 
35
- spec.add_dependency 'commander'
35
+ spec.add_dependency 'commander', '~> 4.6.0'
36
36
  spec.add_dependency 'tty-prompt'
37
37
  spec.add_dependency 'tty-which', '~> 0.2'
38
38
  end
@@ -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.1'.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.1
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: 2024-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -70,16 +70,16 @@ dependencies:
70
70
  name: commander
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ">="
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: 4.6.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ">="
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
82
+ version: 4.6.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: tty-prompt
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -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.4.17
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: []