ingramj-bitarray 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. data/.gitignore +1 -0
  2. data/README +2 -1
  3. data/Rakefile +10 -1
  4. data/TODO +2 -4
  5. data/VERSION +1 -1
  6. data/bitarray.gemspec +2 -2
  7. metadata +3 -3
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  *.so
3
3
  Makefile
4
4
  pkg
5
+ doc
data/README CHANGED
@@ -16,7 +16,8 @@ comparison with Peter Cooper's pure Ruby BitField class.
16
16
 
17
17
  This library has been compiled and tested on:
18
18
 
19
- ruby 1.9.1p129 (2009-05-12 revision 23412) [i686-linux]
19
+ ruby 1.9.1p129 (2009-05-12 revision 23412) [i686-linux] (Ubuntu from src)
20
+ ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux] (Ubuntu apt-get)
20
21
  ruby 1.8.7 (2008-08-11 patchlevel 72) [alpha-netbsd]
21
22
 
22
23
  If you have success using it on any other version/platform combinations, I'd
data/Rakefile CHANGED
@@ -1,3 +1,11 @@
1
+ require 'rake/rdoctask'
2
+ Rake::RDocTask.new do |rd|
3
+ rd.main = "README"
4
+ rd.rdoc_files.include("README", "LICENSE", "ext/*.c")
5
+ rd.title = "BitArray Documentation"
6
+ rd.rdoc_dir = "doc"
7
+ end
8
+
1
9
  begin
2
10
  require 'jeweler'
3
11
  Jeweler::Tasks.new do |gem|
@@ -14,7 +22,8 @@ EOF
14
22
  gem.require_paths = ["ext"]
15
23
  gem.extensions = ["ext/extconf.rb"]
16
24
  gem.required_ruby_version = ">= 1.8.6"
17
- gem.rdoc_options << '--exclude' << 'ext/Makefile' << '--title' << 'BitArray Documentation'
25
+ gem.rdoc_options << '--exclude=ext/Makefile' << '--exclude=ext/extconf.rb'
26
+ gem.rdoc_options << '--title' << 'BitArray Documentation'
18
27
  end
19
28
  rescue LoadError
20
29
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
data/TODO CHANGED
@@ -1,9 +1,7 @@
1
1
  * Comment code. I'd like for it to be useful as a tutorial for extension
2
2
  writing, especially with regards to implementing new types.
3
- * Implement some more methods, like slice, and in-place enumerator methods
4
- (map!, reverse!, etc).
3
+ * Implement some more methods, like in-place enumerator methods (map!,
4
+ reverse!, etc).
5
5
  * Maybe allow resizing.
6
6
  * Write more tests
7
- * Ruby 1.8 compatibility. This will probably involve just changing some of the
8
- NUM2x and x2NUM defines.
9
7
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.1
data/bitarray.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{bitarray}
5
- s.version = "0.4.0"
5
+ s.version = "0.4.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["James E. Ingram"]
@@ -30,7 +30,7 @@ Gem::Specification.new do |s|
30
30
  ]
31
31
  s.has_rdoc = true
32
32
  s.homepage = %q{http://github.com/ingramj/bitarray}
33
- s.rdoc_options = ["--charset=UTF-8", "--exclude", "ext/Makefile", "--title", "BitArray Documentation"]
33
+ s.rdoc_options = ["--charset=UTF-8", "--exclude=ext/Makefile", "--exclude=ext/extconf.rb", "--title", "BitArray Documentation"]
34
34
  s.require_paths = ["ext"]
35
35
  s.required_ruby_version = Gem::Requirement.new(">= 1.8.6")
36
36
  s.rubygems_version = %q{1.3.1}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ingramj-bitarray
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James E. Ingram
@@ -40,8 +40,8 @@ homepage: http://github.com/ingramj/bitarray
40
40
  post_install_message:
41
41
  rdoc_options:
42
42
  - --charset=UTF-8
43
- - --exclude
44
- - ext/Makefile
43
+ - --exclude=ext/Makefile
44
+ - --exclude=ext/extconf.rb
45
45
  - --title
46
46
  - BitArray Documentation
47
47
  require_paths: