estuary 0.1.0

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 (5) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +36 -0
  3. data/Dockerfile +13 -0
  4. data/docker-compose.yml +27 -0
  5. metadata +90 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 36472edb102ab6be2048f92890c2f5f549bec920
4
+ data.tar.gz: f4f4f0b993c99dc2345833508e0729b303f49e3d
5
+ SHA512:
6
+ metadata.gz: 37f107262bff1a035d703a0c3ffb886b5b77962aad6e61ac9ea06142c11ce7dc81a2d4bcf004c034c44af8c4b39c2f9c0862164cdb962c57eede86c926c0955d
7
+ data.tar.gz: d4a51250efe5c4febe2e904e7e1e39256836168a1ede42b8190289c04f204a1aeceb4c96622dd2ec8f0c860d23648277c8ebfb4333140b0bdb23497f948144c3
data/.gitignore ADDED
@@ -0,0 +1,36 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ ## Specific to RubyMotion:
14
+ .dat*
15
+ .repl_history
16
+ build/
17
+
18
+ ## Documentation cache and generated files:
19
+ /.yardoc/
20
+ /_yardoc/
21
+ /doc/
22
+ /rdoc/
23
+
24
+ ## Environment normalization:
25
+ /.bundle/
26
+ /vendor/bundle
27
+ /lib/bundler/man/
28
+
29
+ # for a library or gem, you might want to ignore these files since the code is
30
+ # intended to run in multiple environments; otherwise, check them in:
31
+ # Gemfile.lock
32
+ # .ruby-version
33
+ # .ruby-gemset
34
+
35
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
36
+ .rvmrc
data/Dockerfile ADDED
@@ -0,0 +1,13 @@
1
+ FROM ruby:2.3.1
2
+
3
+ RUN apt-get update -qq && apt-get install -y build-essential
4
+ RUN gem install bundler
5
+
6
+ ENV APP_HOME /estuary
7
+ RUN mkdir $APP_HOME
8
+ WORKDIR $APP_HOME
9
+
10
+ ADD Gemfile* $APP_HOME/
11
+ RUN bundle install
12
+
13
+ ADD . $APP_HOME
@@ -0,0 +1,27 @@
1
+ version: '2'
2
+ services:
3
+ redis:
4
+ image: redis
5
+ ports:
6
+ - '6379:6379'
7
+
8
+ server:
9
+ build: .
10
+ command: bash -c "estuary server"
11
+ ports:
12
+ - "3000:3000"
13
+ links:
14
+ - redis
15
+ - emitter
16
+ volumes:
17
+ - .:/estuary
18
+
19
+ emitter:
20
+ build: .
21
+ command: bash -c "estuary emitter"
22
+ links:
23
+ - redis
24
+ volumes:
25
+ - .:/estuary
26
+ depends_on:
27
+ - redis
metadata ADDED
@@ -0,0 +1,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: estuary
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jared Clifton
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-06-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 11.1.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 11.1.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: puma
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 3.4.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 3.4.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: thor
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 0.19.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 0.19.1
55
+ description: Delegates HTTP requests to a rate limited service to ensure minimal 429
56
+ email:
57
+ - jaredcraigclifton@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Dockerfile
64
+ - docker-compose.yml
65
+ homepage: https://github.com/jclif/estuary
66
+ licenses:
67
+ - MIT
68
+ metadata:
69
+ allowed_push_host: https://rubygems.org
70
+ post_install_message:
71
+ rdoc_options: []
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ required_rubygems_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ requirements: []
85
+ rubyforge_project:
86
+ rubygems_version: 2.5.1
87
+ signing_key:
88
+ specification_version: 4
89
+ summary: Delegates HTTP requests to a rate limited service
90
+ test_files: []