alephant 0.0.1-java → 0.0.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +9 -0
- data/Gemfile +1 -2
- data/README.md +11 -12
- data/alephant.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37a70792f0081e3259de28b88bfca916b02f95ae
|
4
|
+
data.tar.gz: 4e037551f11a7bc3be26c4ba01e136a09e56d7d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54f985e1e708c0a8ca744f19c23c5999aae2be84ef4f289f8364f1e71b7b75b3ec47e3bf1fc1d780b2e9886717827c2873015f8495a3fef6fa41e4336f511fcf
|
7
|
+
data.tar.gz: 5794fab1d26a96293e43553e217579d289c29cf09aa764e57bf1006d5046a51ae18db47dde895215c100cb16512b8af9f72af644573ef1fc55e909716e7e0855
|
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
alephant
|
2
2
|
=========
|
3
3
|
|
4
|
+
[](https://codeclimate.com/repos/52cd866de30ba018f10000a2/feed)
|
5
|
+
|
4
6
|
Static publishing to s3 on push notification from SQS
|
5
7
|
|
6
8
|
##Dependencies
|
@@ -15,19 +17,16 @@ Ensure you have a `config/aws.yml` in the format:
|
|
15
17
|
access_key_id: ACCESS_KEY_ID
|
16
18
|
secret_access_key: SECRET_ACCESS_KEY
|
17
19
|
```
|
18
|
-
Install the gem dependencies:
|
19
|
-
`bundle install`
|
20
|
-
|
21
|
-
##Usage
|
22
|
-
Start the Queue Loader to load dummy data into the queue:
|
23
|
-
`ruby load_queue.rb`
|
24
20
|
|
25
|
-
|
26
|
-
|
21
|
+
Install the gem:
|
22
|
+
```sh
|
23
|
+
gem install alephant
|
24
|
+
```
|
27
25
|
|
28
|
-
|
29
|
-
|
26
|
+
In your application:
|
27
|
+
```rb
|
28
|
+
require 'alephant'
|
30
29
|
|
31
|
-
|
32
|
-
|
30
|
+
Alephant.run('your_cache_id')
|
31
|
+
```
|
33
32
|
|
data/alephant.gemspec
CHANGED
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.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Robert Kenny
|
@@ -46,6 +46,7 @@ extra_rdoc_files: []
|
|
46
46
|
files:
|
47
47
|
- .gitignore
|
48
48
|
- .ruby-version
|
49
|
+
- .travis.yml
|
49
50
|
- Gemfile
|
50
51
|
- LICENSE
|
51
52
|
- README.md
|