-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
vishnu karthik
committed
Dec 9, 2013
1 parent
df796be
commit 13cb238
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
Calabash-Android-Java developer guide | ||
===================================== | ||
|
||
Calabash-android-java uses `JRuby` to invoke the Ruby client maintained by calabash-android developers. calabash-android gem and all other dependent gems are zipped and put it to the distributable JAR file of `calabash-android-java`. While executing, `calabash-android-java` will extract the gems from the JAR and sets up the gem path for the JRuby runtime. | ||
|
||
To create a distributable package, follow the below instructions. | ||
|
||
Create a temporary directory to get all the gems | ||
|
||
```shell | ||
rvm gemset create calabash-android-latest-gems | ||
rvm use ruby-1.9.3-p194@calabash-android-latest-gems | ||
``` | ||
|
||
Install the calabash-android gem. This will install the gem and it's dependencies to the temporary gemset created before. | ||
|
||
```shell | ||
gem install calabash-android --no-ri --no-rdoc | ||
``` | ||
|
||
Download latest JRuby from `http://jruby.org.s3.amazonaws.com/downloads/<version>/jruby-bin-<version>.tar.gz`. Unzip and move this directory to the gemset directory as `jruby.home`. | ||
|
||
```shell | ||
cd ~/.rvm/gems/ruby-1.9.3-p194@calabash-cucumber-latest-gems | ||
wget http://jruby.org.s3.amazonaws.com/downloads/1.7.5/jruby-bin-1.7.5.tar.gz | ||
tar -zxvf jruby-bin-1.7.5.tar.gz | ||
mv jruby-1.7.5 jruby.home | ||
rm jruby-bin-1.7.5.tar.gz | ||
``` | ||
|
||
Calabash-android-java depends on java version of 'gherkin'. To get that, you have to download the [gherking-java-gem](http://rubygems.org/downloads/gherkin-2.12.2-java.gem) and install it locally | ||
```shell | ||
gem install --local <path>/gherkin-2.12.2-java.gem | ||
``` | ||
|
||
Create a zip of all the contents. | ||
|
||
```shell | ||
zip -r gems.zip . | ||
``` | ||
|
||
Move the `gems.zip` file to `calabash-android-java` directory and make the distro. | ||
|
||
```shell | ||
ant -Dgems.zip.path=gems.zip distro | ||
``` | ||
|
||
This will make the distributable files inside the `build` directory. Grab the JAR from the distribution, test it and release! |