-
-
Save yemartin/179369661ff880df5563a1d932329ed0 to your computer and use it in GitHub Desktop.
Revisions
-
yemartin revised this gist
Dec 5, 2018 . 1 changed file with 2 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,4 @@ # Run mailcatcher on startup, chruby version Place me.mailcatcher.plist into ~/Library/LaunchAgents, then run `launchctl load ~/Library/LaunchAgents/me.mailcatcher.plist`. Adjust the ruby version according to your environment. -
yemartin revised this gist
Dec 5, 2018 . 1 changed file with 0 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -15,9 +15,5 @@ <true/> <key>RunAtLoad</key> <true/> </dict> </plist> -
yemartin revised this gist
Dec 5, 2018 . 2 changed files with 19 additions and 13 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ # chruby version Place me.mailcatcher.plist into ~/Library/LaunchAgents, then run `launchctl load ~/Library/LaunchAgents/me.mailcatcher.plist`. ~~If you use pow, `echo 1080 > ~/.pow/mailcatcher` and go to http://mailcatcher.dev, otherwise use [http://localhost:1080](http://localhost:1080).~~ This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,18 +2,22 @@ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>me.mailcatcher</string> <key>ProgramArguments</key> <array> <string>sh</string> <string>-i</string> <string>-c</string> <string>source '/usr/local/share/chruby/chruby.sh'; chruby 2.3.1; mailcatcher --foreground</string> </array> <key>KeepAlive</key> <true/> <key>RunAtLoad</key> <true/> <key>StandardErrorPath</key> <string>/tmp/me.mailcatcher.err</string> <key>StandardOutPath</key> <string>/tmp/me.mailcatcher.out</string> </dict> </plist> -
sj26 revised this gist
Feb 17, 2012 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ Place me.mailcatcher.plist into ~/Library/LaunchAgents, then run `launchctl load ~/Library/LaunchAgents/me.mailcatcher.plist`. ~~If you use pow, `echo 1080 > ~/.pow/mailcatcher` and go to http://mailcatcher.dev, otherwise use [http://localhost:1080](http://localhost:1080).~~ Currently pow doesn't seem to pass websockets through correctly. Looking into this. -
sj26 revised this gist
Feb 10, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,3 @@ Place me.mailcatcher.plist into ~/Library/LaunchAgents, then run `launchctl load ~/Library/LaunchAgents/me.mailcatcher.plist`. If you use pow, `echo 1080 > ~/.pow/mailcatcher` and go to http://mailcatcher.dev, otherwise use [http://localhost:1080](http://localhost:1080). -
sj26 revised this gist
Feb 10, 2012 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1,3 @@ Place me.mailcatcher.plist into ~/Library/LaunchAgents, then run `launchctl load ~/Library/LaunchAgents/me.mailcatcher.plist`. If you use pow, `echo 1080 > ~/.pow/mailcatcher` and go to http://mailcatcher.dev, otherwise use http://localhost:1080. -
sj26 created this gist
Jan 19, 2012 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ Place me.mailcatcher.plist into ~/Library/LaunchAgents, then run `launchctl load ~/Library/LaunchAgents/me.mailcatcher.plist`. This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>me.mailcatcher</string> <key>ProgramArguments</key> <array> <string>sh</string> <string>-i</string> <string>-c</string> <string>$SHELL --login -c "mailcatcher --foreground"</string> </array> <key>KeepAlive</key> <true/> <key>RunAtLoad</key> <true/> </dict> </plist>