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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6716ed6da6972be045f19e4ee574a719bbe637e3
4
- data.tar.gz: 7e2c247eebaa860b20b2594451a922be357341e5
3
+ metadata.gz: e6dc76b8cc1c76b5f53dcdbe76187e8b8f58890c
4
+ data.tar.gz: 65c218b1833ce6a974c5cc7d06b9f82799dcb594
5
5
  SHA512:
6
- metadata.gz: 11ccd5ae937a3e19cd6c31319dc7f922763fc129425c4102eb1513fbecf8fe5e6584187cdc9ca9e408ab1d520a0cd5ba4a725bc969e1e93a726b67b43be1336b
7
- data.tar.gz: 79f418dcd1f62dd7d8b5360a176331d2e8c475c6e61260287c2e97bc9bf017487de442b2222b21fe459e0cd829b5a0b87d2ef1a2232658e3ce0364d9f44fd9c2
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`
@@ -1,3 +1,3 @@
1
1
  module Alephant
2
- VERSION = "0.0.9.2"
2
+ VERSION = "0.0.9.3"
3
3
  end
@@ -11,7 +11,7 @@ module Alephant
11
11
  end
12
12
 
13
13
  def static_host
14
- 'localhost:8000'
14
+ ENV['STATIC_HOST'] || 'localhost:8000'
15
15
  end
16
16
 
17
17
  def method_missing(name, *args, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alephant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9.2
4
+ version: 0.0.9.3
5
5
  platform: java
6
6
  authors:
7
7
  - Robert Kenny