alephant 0.0.9.2-java → 0.0.9.3-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -1
- data/lib/alephant/version.rb +1 -1
- data/lib/alephant/views/preview.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6dc76b8cc1c76b5f53dcdbe76187e8b8f58890c
|
4
|
+
data.tar.gz: 65c218b1833ce6a974c5cc7d06b9f82799dcb594
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61c20b91c1106efd4603cc11450ae45f5285efad6ccacb6cc4a940001d170de750c382db7d93b4e90536a253d4a470dc999f058b19b255c5169beb94da4aea75
|
7
|
+
data.tar.gz: 30651f164621030b1173534dcd275a30b0a3e7b40865ebbbf8decc7cf5f11ee6da96526fa86f805e24bbd1c2986b3609766d7e1d8851ae4deb7a584e63accadf
|
data/README.md
CHANGED
@@ -16,7 +16,7 @@ Static publishing to S3 on push notification from SQS
|
|
16
16
|
- JRuby 1.7.8
|
17
17
|
- An AWS account (you'll need to create):
|
18
18
|
- An S3 bucket
|
19
|
-
- An SQS Queue
|
19
|
+
- An SQS Queue (if no sequence id provided then `sequence_id` will be used)
|
20
20
|
- A Dynamo DB table (optional, will attempt to create if can't be found)
|
21
21
|
|
22
22
|
##Setup
|
@@ -150,3 +150,10 @@ PREVIEW_TEMPLATE_URL="http://yourapp.com/template"
|
|
150
150
|
|
151
151
|
`/preview/:id/:region/?:fixture?`
|
152
152
|
|
153
|
+
## Build the gem locally
|
154
|
+
|
155
|
+
If you want to test a modified version of the gem within your application without publishing it then you can follow these steps...
|
156
|
+
|
157
|
+
- `gem uninstall alephant`
|
158
|
+
- `gem build alephant.gemspec` (this will report the file generated which you reference in the next command)
|
159
|
+
- `gem install ./alephant-0.0.9.1-java.gem`
|
data/lib/alephant/version.rb
CHANGED