├── .gitignore ├── CSVKeychain.applescript ├── Rakefile ├── Readme.md ├── add_category.rb └── merge_csv.rb /.gitignore: -------------------------------------------------------------------------------- 1 | Documentation/ 2 | .DS_Store 3 | *.scptd 4 | *.app 5 | -------------------------------------------------------------------------------- /CSVKeychain.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/CSVKeychain/HEAD/CSVKeychain.applescript -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/CSVKeychain/HEAD/Rakefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/CSVKeychain/HEAD/Readme.md -------------------------------------------------------------------------------- /add_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/CSVKeychain/HEAD/add_category.rb -------------------------------------------------------------------------------- /merge_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/CSVKeychain/HEAD/merge_csv.rb --------------------------------------------------------------------------------