Moved to provision_vagrant repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
# Experimental code to explore the use of synver-ruby on a rails 5.2, ruby 2.6.10 project and ChatGPT4. | |
# | |
# I found that I needed to run synver-ruby using ruby 3.3 as the version installed under ruby 2.6.10 failed | |
# to run most snippets due to missing PRISM parser | |
# This checks the version of ruby being used in the project and the gem versions from Gemfile.local | |
# and sets an active flag accordingly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# vi: ft=python | |
import urllib | |
import os | |
import json | |
import re | |
if os.path.isdir("ansible"): | |
os.chdir('ansible') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See: https://gist.github.com/ianheggie/9327010 | |
# for Global git ignore for OS/IDE/temp/backup files | |
# | |
# See http://git-scm.com/docs/gitignore for manual | |
# Copied from internet and customized | |
# Thanks to unknown | |
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore: | |
# | |
# * Create a file at ~/.gitignore |