Identify what the business goal is for building software.
Increase repeat sales to existing customers by 50% over the next 12 months
From the business goal, derive the scope of the feature(s)
| #!/usr/bin/env ruby | |
| # If you're not using rbenv in this script's dir, you may wanna run | |
| # these as `sudo gem install ruby-trello`, etc. | |
| ['ruby-trello', 'dotenv'].each do |gem_name| | |
| begin | |
| gem gem_name | |
| rescue LoadError | |
| puts "Running `gem install #{gem_name}`..." | |
| puts "If this takes too long, you may want to run it manually, as `sudo` if needed." |