-
- Downloads
There was an error fetching the commit references. Please try again later.
Initial commit
Showing
- .gitignore 5 additions, 0 deletions.gitignore
- Gemfile 3 additions, 0 deletionsGemfile
- LICENSE 19 additions, 0 deletionsLICENSE
- README.md 70 additions, 0 deletionsREADME.md
- Rakefile 28 additions, 0 deletionsRakefile
- allocations.gemspec 28 additions, 0 deletionsallocations.gemspec
- ext/liballocations/extconf.rb 11 additions, 0 deletionsext/liballocations/extconf.rb
- ext/liballocations/liballocations.c 207 additions, 0 deletionsext/liballocations/liballocations.c
- ext/liballocations/liballocations.h 10 additions, 0 deletionsext/liballocations/liballocations.h
- lib/allocations.rb 2 additions, 0 deletionslib/allocations.rb
- lib/allocations/version.rb 3 additions, 0 deletionslib/allocations/version.rb
- spec/allocations_spec.rb 55 additions, 0 deletionsspec/allocations_spec.rb
- spec/spec_helper.rb 6 additions, 0 deletionsspec/spec_helper.rb
- task/test.rake 4 additions, 0 deletionstask/test.rake
.gitignore
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
gemspec |
LICENSE
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
allocations.gemspec
0 → 100644
require File.expand_path('../lib/allocations/version', __FILE__) | ||
Gem::Specification.new do |gem| | ||
gem.name = 'allocations' | ||
gem.version = Allocations::VERSION | ||
gem.authors = ['Yorick Peterse'] | ||
gem.email = 'yorickpeterse@gmail.com' | ||
gem.summary = 'Tracking of retained objects in CRuby' | ||
gem.homepage = 'https://gitlab.com/gitlab/allocations' | ||
gem.description = gem.summary | ||
gem.license = 'MIT' | ||
gem.files = Dir.glob([ | ||
'lib/**/*.rb', | ||
'ext/**/*', | ||
'README.md', | ||
'LICENSE', | ||
'*.gemspec' | ||
]).select { |file| File.file?(file) } | ||
gem.has_rdoc = 'yard' | ||
gem.required_ruby_version = '>= 2.1.0' | ||
gem.add_development_dependency 'rake' | ||
gem.add_development_dependency 'rake-compiler' | ||
gem.add_development_dependency 'benchmark-ips', ['~> 2.0'] | ||
gem.add_development_dependency 'rspec', ['~> 3.0'] | ||
end |
ext/liballocations/extconf.rb
0 → 100644
ext/liballocations/liballocations.c
0 → 100644
ext/liballocations/liballocations.h
0 → 100644
lib/allocations.rb
0 → 100644
lib/allocations/version.rb
0 → 100644
spec/allocations_spec.rb
0 → 100644
spec/spec_helper.rb
0 → 100644
task/test.rake
0 → 100644
Please register or sign in to comment