From dae5ac3ea3424d064dbd99bfff93f50a42ca1b6d Mon Sep 17 00:00:00 2001 From: "Thomas E. Enebo" Date: Thu, 29 May 2014 14:34:21 -0500 Subject: [PATCH] Moar filez --- README.md | 3 +++ Rakefile | 8 ++++++++ alienist.gemspec | 21 +++++++++++++++++++++ lib/alienist/version.rb | 3 +++ 4 files changed, 35 insertions(+) create mode 100644 README.md create mode 100644 Rakefile create mode 100644 alienist.gemspec create mode 100644 lib/alienist/version.rb diff --git a/README.md b/README.md new file mode 100644 index 0000000..887c77c --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Alienist - Java Heap Memory Analyzer + + diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..929897b --- /dev/null +++ b/Rakefile @@ -0,0 +1,8 @@ +require 'rspec/core/rake_task' +require 'bundler' +Bundler::GemHelper.install_tasks + +desc "Run specs" +RSpec::Core::RakeTask.new do |r| + r.ruby_opts = "-Ilib" +end diff --git a/alienist.gemspec b/alienist.gemspec new file mode 100644 index 0000000..ef6fc64 --- /dev/null +++ b/alienist.gemspec @@ -0,0 +1,21 @@ +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "alienist/version" + +files = `git ls-files -- lib/* spec/*`.split("\n") + +Gem::Specification.new do |s| + s.name = 'alienist' + s.version = Alienist::VERSION + s.platform = Gem::Platform::RUBY + s.authors = 'Thomas E. Enebo' + s.email = 'tom.enebo@gmail.com' + s.homepage = 'http://github.com/enebo/alienist' + s.summary = %q{Java heap memory analysis tool} + s.description = %q{Java heap memory analysis tool with polyglot smarts} + + s.files = files + s.test_files = `git ls-files -- spec/*`.split("\n") + s.require_paths = ["lib"] + s.has_rdoc = true +end diff --git a/lib/alienist/version.rb b/lib/alienist/version.rb new file mode 100644 index 0000000..2ea763b --- /dev/null +++ b/lib/alienist/version.rb @@ -0,0 +1,3 @@ +module Alienist + VERSION = "0.1" +end