Skip to content

Commit 58373dc

Browse files
committedFeb 16, 2012
Repackaged as a gem.
1 parent c5572bf commit 58373dc

8 files changed

+42
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pkg

‎Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source "http://rubygems.org"
2+
gemspec

‎Gemfile.lock

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
PATH
2+
remote: .
3+
specs:
4+
graphite_graph (0.0.1)
5+
6+
GEM
7+
remote: http://rubygems.org/
8+
specs:
9+
10+
PLATFORMS
11+
ruby
12+
13+
DEPENDENCIES
14+
graphite_graph!

‎Rakefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require 'bundler'
2+
Bundler::GemHelper.install_tasks

‎check_graph.rb ‎bin/check_graph.rb

File renamed without changes.

‎graphite_graph.gemspec

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
require "graphite_graph/version"
4+
5+
Gem::Specification.new do |s|
6+
s.name = "graphite_graph"
7+
s.version = GraphiteGraph::VERSION
8+
s.platform = Gem::Platform::RUBY
9+
s.authors = ["R.I.Pienaar", "Tom Taylor"]
10+
s.email = ["rip@devco.net", "tom@tomtaylor.co.uk"]
11+
s.homepage = "https://github.com/ripienaar/graphite-graph-dsl"
12+
s.summary = %q{DSL for generating Graphite graphs}
13+
14+
s.rubyforge_project = "graphite_graph"
15+
16+
s.files = `git ls-files`.split("\n")
17+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18+
s.require_paths = ["lib"]
19+
end

‎graphite_graph.rb ‎lib/graphite_graph.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require 'uri'
2+
require "graphite_graph/version"
23
# A small DSL to assist in the creation of Graphite graphs
34
# see https://github.com/ripienaar/graphite-graph-dsl/wiki
45
# for full details

‎lib/graphite_graph/version.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class GraphiteGraph
2+
VERSION = "0.0.1"
3+
end

0 commit comments

Comments
 (0)
Please sign in to comment.