Skip to content

Commit

Permalink
Added default rake task, updated Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ihassin committed May 13, 2017
1 parent 2cec94a commit a4b5317
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ mkmf.log
.elasticbeanstalk/*
!.elasticbeanstalk/*.cfg.yml
!.elasticbeanstalk/*.global.yml
.DS_
.DS_
sync-upstream.sh
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ the management console.
- "Error in SSL handshake" : Make sure your used the FQDN when you generated the SSL and it's also the active SSL in EBS.
- "Error communicating with the application" : Query the EBS logs from the management console and create an issue on GitHub.

## Testing

Run the tests using

```bash
bundle exec rake
```

## Contributing

1. Decide to work on the "dev" (unstable) branch or "master" (stable)
Expand Down
4 changes: 4 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
require "bundler/gem_tasks"
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new

task :default => [:spec]

0 comments on commit a4b5317

Please sign in to comment.