jemalloc 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jemalloc (0.1.5)
4
+ jemalloc (0.1.6)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # je
1
+ # jemalloc
2
2
 
3
3
  Instant [jemalloc](http://www.canonware.com/jemalloc/) injection into Ruby apps, for better performance and less memory.
4
4
 
@@ -8,15 +8,15 @@ Ruby relies on malloc(3) for its internal memory allocation. Using better malloc
8
8
 
9
9
  jemalloc is a malloc(3) implementation, originally developed by Jason Evans. jemalloc handles small object better than other allocators so usually gives better performance and memory usage to Ruby programs.
10
10
 
11
- # Why je?
11
+ # Why jemalloc?
12
12
 
13
13
  Installing jemalloc separately from Ruby is pain in some cases (e.g. Heroku, EngineYard, etc). `je` gem contains jemalloc itself within a gem, and enables instant jemalloc ingection in a really easy way: install `je` gem, and launch your app with `je` command.
14
14
 
15
15
  # Install
16
16
 
17
- Install `je` gem in your application. For [bundler](http://gembundler.com/) based application, please add the following line into your Gemfile, and and install `je` by `bundle install`.
17
+ Install `jemalloc` gem in your application. For [bundler](http://gembundler.com/) based application, please add the following line into your Gemfile, and and install `jemalloc` by `bundle install`.
18
18
 
19
- gem 'je'
19
+ gem 'jemalloc'
20
20
 
21
21
  # Usage
22
22
 
@@ -2,7 +2,7 @@ require 'mkmf'
2
2
  require 'rbconfig'
3
3
 
4
4
  $stdout.sync = true
5
- pkg = "jemalloc-3.1.0"
5
+ pkg = "jemalloc-3.2.0"
6
6
 
7
7
  # monfigure and copy sources to cur_dir
8
8
  cur_dir = Dir.pwd
@@ -1,3 +1,3 @@
1
1
  module JEMalloc
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jemalloc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-21 00:00:00.000000000 Z
12
+ date: 2012-11-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -75,7 +75,7 @@ files:
75
75
  - Rakefile
76
76
  - bin/je
77
77
  - ext/jemalloc/extconf.rb
78
- - ext/jemalloc/jemalloc-3.1.0.tar.bz2
78
+ - ext/jemalloc/jemalloc-3.2.0.tar.bz2
79
79
  - jemalloc.gemspec
80
80
  - lib/jemalloc/version.rb
81
81
  homepage: https://github.com/treasure-data/jemalloc-rb
@@ -90,18 +90,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
90
90
  - - ! '>='
91
91
  - !ruby/object:Gem::Version
92
92
  version: '0'
93
- segments:
94
- - 0
95
- hash: -2381634919413440270
96
93
  required_rubygems_version: !ruby/object:Gem::Requirement
97
94
  none: false
98
95
  requirements:
99
96
  - - ! '>='
100
97
  - !ruby/object:Gem::Version
101
98
  version: '0'
102
- segments:
103
- - 0
104
- hash: -2381634919413440270
105
99
  requirements: []
106
100
  rubyforge_project:
107
101
  rubygems_version: 1.8.24