opener-s3-outlet 1.1.0 → 1.1.1

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: cc67a8dfab71c0e68bc631acdd3a1fc0cc8ce867
4
- data.tar.gz: 4c4e9d2920a19b3609e503284cb8e8b8ced5cad0
3
+ metadata.gz: 0171d63cc722fcc2b515ab38474ac9298f509d56
4
+ data.tar.gz: 6d5e4e15d1fe60f48af50526d42b280552bd8fe2
5
5
  SHA512:
6
- metadata.gz: 29c8ea92af64513141deccb4e7f8e8d18bab33b00d9ca7909d120f1319c9032b170ac95d96cebb9853d313917492fd57d290b78f65146fec2588c223d28698d6
7
- data.tar.gz: d7ee424a36e1965bd8e3adf2eb9e06d6f01aaa64f51908518a01b4ce6794beb8f04a1dcddcebe5af3903cd358cc2836a8542aa7ad889077bc63e85e8f9ffe019
6
+ metadata.gz: 994aa4676fdcec36ca2302bc1fcab6a8fdf2ec3a008387a1f15f89d27d547d354b16da09f16223ab27e7f56a71858250bd18d7c710ac3f4e50b6eee843ec2c60
7
+ data.tar.gz: 3fbbd45f5d5a614ebdeb5c3f4cfdfa1a0158553cd92db42b76b887a5c3bad019f54b64d9b5a2c7e258a8dd1791d6910fa1200da553e2ba62db88f4a4cdc63a5f
data/README.md CHANGED
@@ -1,57 +1,109 @@
1
- # S3-Outlet: Stores the results in an AWS S3 bucket.
1
+ S3-Outlet
2
+ ------------
2
3
 
3
- Component that stores results from the Opener Web Services chain into an S3
4
- bucket.
4
+ Component that stores results from the Opener Web Services chain into a SQLite
5
+ Database and shows them into your browser.
5
6
 
7
+ ### Confused by some terminology?
6
8
 
7
- ## Installation
9
+ This software is part of a larger collection of natural language processing
10
+ tools known as "the OpeNER project". You can find more information about the
11
+ project at (the OpeNER portal)[http://opener-project.github.io]. There you can
12
+ also find references to terms like KAF (an XML standard to represent linguistic
13
+ annotations in texts), component, cores, scenario's and pipelines.
8
14
 
9
- ### As part of a Gemfile in a Ruby application
15
+ Quick Use Example
16
+ -----------------
10
17
 
11
- Add this line to your application's Gemfile:
18
+ Installing the s3-outlet can be done by executing:
12
19
 
13
- gem 'opener-s3-outlet',
14
- :git=>"git@github.com:opener-project/s3-outlet.git"
20
+ gem install opener-s3-outlet
15
21
 
16
- And then execute:
22
+ Please bare in mind that all components in OpeNER take KAF as an input and
23
+ output KAF by default.
17
24
 
18
- $ bundle install
25
+ ### Webservices
19
26
 
20
- ## Usage
21
-
22
- The Opener S3 Outlet comes equipped with a simple webservice. To start the
23
- webservice type:
27
+ You can launch a webservice by executing:
24
28
 
25
29
  s3-outlet-server
26
30
 
27
31
  This will launch a mini webserver with the webservice. It defaults to port 9292,
28
- so you can access it at:
29
-
30
- http://localhost:9292
32
+ so you can access it at <http://localhost:9292>.
31
33
 
32
- To launch it on a different port provide the ```-p [port-number]``` option like
34
+ To launch it on a different port provide the `-p [port-number]` option like
33
35
  this:
34
36
 
35
37
  s3-outlet-server -p 1234
36
38
 
37
- It then launches at ```http://localhost:1234```
39
+ It then launches at <http://localhost:1234>
38
40
 
39
- When you run a chain of web services using callbacks, the last URL should be the
40
- one that points to the S3 Outlet Web Service. A unique id is generated and once the
41
- chain has finished processing the text, you can view the result in the URL that
42
- you get.
41
+ Documentation on the Webservice is provided by surfing to the urls provided
42
+ above. For more information on how to launch a webservice run the command with
43
+ the ```-h``` option.
43
44
 
44
- ## Contributing
45
45
 
46
- ### Procedure
46
+ ### Daemon
47
47
 
48
- 1. Pull it
49
- 2. Create your feature branch (`git checkout -b features/my-new-feature`)
50
- 3. Commit your changes (`git commit -am 'Add some feature'`)
51
- 4. Push to the branch (`git push origin features/my-new-feature`)
52
- 5. If you're confident, merge your changes into master.
48
+ Last but not least the s3-outlet comes shipped with a daemon that
49
+ can read jobs (and write) jobs to and from Amazon SQS queues. For more
50
+ information type:
51
+
52
+ s3-outlet-daemon -h
53
+
54
+
55
+ Description of dependencies
56
+ ---------------------------
57
+
58
+ This component runs best if you run it in an environment suited for OpeNER
59
+ components. You can find an installation guide and helper tools in the (OpeNER
60
+ installer)[https://github.com/opener-project/opener-installer] and (an
61
+ installation guide on the Opener
62
+ Website)[http://opener-project.github.io/getting-started/how-to/local-installation.html]
63
+
64
+ At least you need the following system setup:
65
+
66
+ ### Depenencies for normal use:
67
+
68
+ * JRuby 1.7.9 or newer
69
+ * Ruby 1.9.3 or newer
70
+
71
+ Domain Adaption
72
+ ---------------
73
+
74
+ TODO
53
75
 
54
- # What's next?
76
+ Language Extension
77
+ ------------------
55
78
 
56
- If you're interested in the opener-s3-outlet, you also might want to check
57
- out opener-project/s3-outlet.
79
+ TODO
80
+
81
+ The Core
82
+ --------
83
+
84
+ The component is a fat wrapper around the actual language technology core. You
85
+ can find the core technolies in the following repositories:
86
+
87
+ * (link to) Related Core readmes
88
+
89
+ Where to go from here
90
+ ---------------------
91
+
92
+ * Check (the project websitere)[http://opener-project.github.io]
93
+ * (Checkout the webservice)[http://opener.olery.com/s3-outlet]
94
+
95
+ Report problem/Get help
96
+ -----------------------
97
+
98
+ If you encounter problems, please email support@opener-project.eu or leave an
99
+ issue in the (issue tracker)[https://github.com/opener-project/s3-outlet/issues].
100
+
101
+
102
+ Contributing
103
+ ------------
104
+
105
+ 1. Fork it ( http://github.com/opener-project/s3-outlet/fork )
106
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
107
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
108
+ 4. Push to the branch (`git push origin my-new-feature`)
109
+ 5. Create new Pull Request
@@ -1,5 +1,5 @@
1
1
  module Opener
2
2
  class S3Outlet
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opener-s3-outlet
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - development@olery.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-20 00:00:00.000000000 Z
11
+ date: 2014-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: builder