Change name of Yaml Settings file

This commit is contained in:
ViViDboarder 2013-04-18 10:45:59 -07:00
parent 4ba47ac90a
commit ee5b824abc
4 changed files with 20 additions and 4 deletions

3
.gitignore vendored
View File

@ -1,2 +1,5 @@
atf.yaml
abusetheforce.yaml
.atf.yaml
.abusetheforce.yaml
*.gem

View File

@ -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

View File

@ -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()

View File

@ -1,3 +1,3 @@
module AbuseTheForce
VERSION = '0.0.0'
VERSION = '0.0.1'
end