tabula 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in tabula.gemspec
4
+ gemspec
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,5 @@
1
+ require "tabula/version"
2
+
3
+ module Tabula
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Tabula
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "tabula/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "tabula"
7
+ s.version = Tabula::VERSION
8
+ s.authors = ["Andy Lindeman"]
9
+ s.email = ["alindeman@gmail.com"]
10
+ s.homepage = "http://github.com/alindeman/tabula"
11
+ s.summary = %q{Tabula accepts raw data from a variety of sources and draw pretty graphs}
12
+ s.description = %q{Tabula accepts raw data from sources like RabbitMQ, aggregates them as configured, and draws graphs. It is configured with a simple DSL.}
13
+
14
+ s.rubyforge_project = "tabula"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tabula
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Andy Lindeman
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-07-10 00:00:00.000000000 -04:00
13
+ default_executable:
14
+ dependencies: []
15
+ description: Tabula accepts raw data from sources like RabbitMQ, aggregates them as
16
+ configured, and draws graphs. It is configured with a simple DSL.
17
+ email:
18
+ - alindeman@gmail.com
19
+ executables: []
20
+ extensions: []
21
+ extra_rdoc_files: []
22
+ files:
23
+ - .gitignore
24
+ - Gemfile
25
+ - Rakefile
26
+ - lib/tabula.rb
27
+ - lib/tabula/version.rb
28
+ - tabula.gemspec
29
+ has_rdoc: true
30
+ homepage: http://github.com/alindeman/tabula
31
+ licenses: []
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ none: false
38
+ requirements:
39
+ - - ! '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubyforge_project: tabula
50
+ rubygems_version: 1.6.2
51
+ signing_key:
52
+ specification_version: 3
53
+ summary: Tabula accepts raw data from a variety of sources and draw pretty graphs
54
+ test_files: []