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
for i in {1..100}; do echo '{"params": {"api_name": "unittest'"$i"'"}, "project_name": "release-1.7", "workspace": "/home/brett/git/salesforce", "metadata_type": "ApexClass", "github_template": {"params": [{"name": "api_name", "default": "MyApexClass", "description": "Apex Class API Name"}], "name": "Unit Test", "file_name": "UnitTestApexClass.cls", "author": "MavensMate", "description": "Unit test class"}}' | /usr/local/bin/mm -o new_metadata -c SUBLIME_TEXT_3; done; |
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
@Target({ ElementType.TYPE, ElementType.METHOD }) | |
@Retention(RetentionPolicy.RUNTIME) | |
public @interface NoAuthRequired {} |
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
[mysqld] | |
open-files-limit = 24000 | |
character-set-server = utf8 | |
character-set-filesystem = utf8 | |
# | |
# InnoDB | |
# | |
# After applying these for the first time on a new mysql installation with no |
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
# BEGIN Cache Enabler | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
# cache directory | |
RewriteRule ^ - [E=CE_CACHE_DIR:/wp-content/cache/cache-enabler] | |
# default cache keys | |
RewriteRule ^ - [E=CE_CACHE_KEY_SCHEME:http-] |