us-carbon 0.0.1

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 (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +11 -0
  3. data/us-carbon.gemspec +20 -0
  4. metadata +59 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2cdf2e09209f130c0df61dc1fa4c1bc944b93068
4
+ data.tar.gz: b7b1e4ac4ea49ea17767587585c182526f54c79c
5
+ SHA512:
6
+ metadata.gz: d65293425f18dcfd8db8f084f28a03c0d434e15fa7b1baafb99873ed874efd37dbb87904f5794379c5647d6a59da90ef623dfed8b58cd5abb7e34ae8b004cb6d
7
+ data.tar.gz: b3ff1621cb515517bf2d66a01dd8fc1811293474de1f507484c8956b57c6b3627ae9da2b87fb81c7a74b7778153ada091807df2541567e14fd64df0ea4af0dce
data/README.md ADDED
@@ -0,0 +1,11 @@
1
+ Union Station Carbon Client
2
+ ============================
3
+
4
+ This gem contains the reader and writer clients to connect to the carbon database.
5
+
6
+ These clients are in a gem so they can be shared across the Union Station applications.
7
+
8
+ Usage
9
+ ============================
10
+ require 'carbon/reader'
11
+ require 'carbon/writer'
data/us-carbon.gemspec ADDED
@@ -0,0 +1,20 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ # Maintain your gem's version:
5
+ require 'version'
6
+
7
+ # Describe your gem and declare its dependencies:
8
+ Gem::Specification.new do |s|
9
+ s.name = 'us-carbon'
10
+ s.version = Carbon::VERSION
11
+ s.authors = ['Phusion']
12
+ s.email = ['support@unionstationapp.com']
13
+ s.homepage = 'https://www.unionstationapp.com/'
14
+ s.summary = 'Carbon client of the Union Station system.'
15
+ s.description = 'Carbon client of the Union Station system.'
16
+
17
+ s.files =['us-carbon.gemspec','README.md']
18
+
19
+ s.add_runtime_dependency 'eventmachine'
20
+ end
metadata ADDED
@@ -0,0 +1,59 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: us-carbon
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Phusion
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-08-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: eventmachine
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: Carbon client of the Union Station system.
28
+ email:
29
+ - support@unionstationapp.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - README.md
35
+ - us-carbon.gemspec
36
+ homepage: https://www.unionstationapp.com/
37
+ licenses: []
38
+ metadata: {}
39
+ post_install_message:
40
+ rdoc_options: []
41
+ require_paths:
42
+ - lib
43
+ required_ruby_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ required_rubygems_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ requirements: []
54
+ rubyforge_project:
55
+ rubygems_version: 2.2.2
56
+ signing_key:
57
+ specification_version: 4
58
+ summary: Carbon client of the Union Station system.
59
+ test_files: []