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.
Files changed (7) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +9 -0
  4. data/Gemfile +1 -2
  5. data/README.md +11 -12
  6. data/alephant.gemspec +1 -1
  7. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a9bab315f62add2b24c14b476b9d558a2b78775c
4
- data.tar.gz: 829ac5abccd338b550ea8c69c3babecb6655f629
3
+ metadata.gz: 37a70792f0081e3259de28b88bfca916b02f95ae
4
+ data.tar.gz: 4e037551f11a7bc3be26c4ba01e136a09e56d7d8
5
5
  SHA512:
6
- metadata.gz: 8db4d643c16e0eece0f3832c12265ebfd0a64de874b0cc7a9d59aa4062704db03b8387f41670a46d820d486de7a31a60974790a00f8f215d1602517cb7f10286
7
- data.tar.gz: 0633ab0fcb9541b014fd29ded271f1213f71d5c0809cabc349e65927634b252c88455d158c14e030f24e3d3822fde1ba3820df8248cedf005b86b5f5b829bc86
6
+ metadata.gz: 54f985e1e708c0a8ca744f19c23c5999aae2be84ef4f289f8364f1e71b7b75b3ec47e3bf1fc1d780b2e9886717827c2873015f8495a3fef6fa41e4336f511fcf
7
+ data.tar.gz: 5794fab1d26a96293e43553e217579d289c29cf09aa764e57bf1006d5046a51ae18db47dde895215c100cb16512b8af9f72af644573ef1fc55e909716e7e0855
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  config/*.yml
2
+ *.gem
data/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - "jruby-19mode"
4
+ notifications:
5
+ email:
6
+ recipients:
7
+ - kenoir@gmail.com
8
+ on_failure: change
9
+ on_success: never
data/Gemfile CHANGED
@@ -1,4 +1,3 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem 'aws-sdk', '~> 1.0'
4
- gem 'mustache'
3
+ gemspec
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  alephant
2
2
  =========
3
3
 
4
+ [![Code Climate](https://codeclimate.com/repos/52cd866de30ba018f10000a2/badges/5d9c02131201565a630e/gpa.png)](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
- Start the render to cache application:
26
- `./bin/alephant.rb`
21
+ Install the gem:
22
+ ```sh
23
+ gem install alephant
24
+ ```
27
25
 
28
- ##Usage as a jar
29
- `warble compiled jar`
26
+ In your application:
27
+ ```rb
28
+ require 'alephant'
30
29
 
31
- ###Running the service
32
- `java -jar alephant.jar`
30
+ Alephant.run('your_cache_id')
31
+ ```
33
32
 
data/alephant.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'alephant'
3
- s.version = '0.0.1'
3
+ s.version = '0.0.2'
4
4
  s.date = '2014-01-08'
5
5
  s.summary = "Static Publishing in the Cloud"
6
6
  s.description = "Static publishing to S3 based on SQS messages"
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.1
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