diff --git a/.gitignore b/.gitignore index 41b8a58..6d53f0b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ atf.yaml +abusetheforce.yaml +.atf.yaml +.abusetheforce.yaml *.gem diff --git a/README.md b/README.md index 58a6570..0d842b9 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,25 @@ multiple orgs as well as simpler setup for use as a pseudo compiler Features ======== -* Many +* Soon... -Why not Metaforce? +Usage +===== +Soon... + +Why This Over Metaforce? ================== * Vim and Sublime plugins (coming soon...) * Command line configuration management * Options for deploying or retrieving a sigle file * Encrypted Passwords coming soon +Installation +============ +Must have ruby 1.9 and gem installed + + git clone git://github.com/ViViDboarder/abuse-the-force.git + cd abuse-the-force + gem build abusetheforce.gemspec + gem install abusetheforce-X.X.X.gem # make sure the proper version is present + diff --git a/lib/abusetheforce.rb b/lib/abusetheforce.rb index d51385e..240a365 100644 --- a/lib/abusetheforce.rb +++ b/lib/abusetheforce.rb @@ -84,7 +84,7 @@ module AbuseTheForce class Atf_Config class << self attr_accessor :targets, :active_target, :src - SETTINGS_FILE="./atf.yaml" + SETTINGS_FILE="./.abusetheforce.yaml" # Loads configurations from yaml def load() diff --git a/lib/abusetheforce/version.rb b/lib/abusetheforce/version.rb index ea842d1..9568790 100644 --- a/lib/abusetheforce/version.rb +++ b/lib/abusetheforce/version.rb @@ -1,3 +1,3 @@ module AbuseTheForce - VERSION = '0.0.0' + VERSION = '0.0.1' end