Skip to content

Commit

Permalink
Moar filez
Browse files Browse the repository at this point in the history
  • Loading branch information
enebo committed May 29, 2014
1 parent 62255b3 commit dae5ac3
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Alienist - Java Heap Memory Analyzer


8 changes: 8 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -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
21 changes: 21 additions & 0 deletions alienist.gemspec
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]'
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
3 changes: 3 additions & 0 deletions lib/alienist/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Alienist
VERSION = "0.1"
end

0 comments on commit dae5ac3

Please sign in to comment.