README.md in akephalos2-2.0.0 vs README.md in akephalos2-2.0.1
- old
+ new
@@ -1,15 +1,14 @@
-```
-Important Notice
+# Important Notice
+
This repo has rewrote its history and as such is not compatible with the main Akephalos repo.
Further development will be done here.
You can get the unaltered pristine copy at: [https://github.com/Nerian/akephalos](https://github.com/Nerian/akephalos)
The reason why its history was rewrote was to remove .jar vendor files that were making its size huge.
-```
# Akephalos
Akephalos is a full-stack headless browser for integration testing with
@@ -19,24 +18,34 @@
## Installation
``` ruby
-gem install akephalos # Official gem
+gem install akephalos2
```
Or
``` ruby
+gem 'akephalos2', :require => 'akephalos'
+```
+
+Or (for the current master branch)
+
+``` ruby
gem 'akephalos', :git => 'git://github.com/Nerian/akephalos.git'
```
+
+
# Development
``` bash
git clone https://github.com/Nerian/akephalos2
git submodule update --init
+# optional
+cp .rvmrc.example .rvmrc
```
The last line will grab the HTMLUnit jar files from [https://github.com/Nerian/html-unit-vendor](https://github.com/Nerian/html-unit-vendor)
@@ -47,10 +56,9 @@
``` ruby
require 'akephalos'
Capybara.javascript_driver = :akephalos
```
-
## Basic Usage
Akephalos provides a driver for Capybara, so using Akephalos is no
different than using Selenium or Rack::Test. For a full usage guide, check