bson_ext 1.1 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +4 -10
  2. data/ext/cbson/version.h +1 -1
  3. metadata +33 -27
data/Rakefile CHANGED
@@ -26,8 +26,8 @@ namespace :build do
26
26
  jar_dir = File.join(java_dir, 'jar')
27
27
 
28
28
  jruby_jar = File.join(jar_dir, 'jruby.jar')
29
- mongo_jar = File.join(jar_dir, 'mongo.jar')
30
- bson_jar = File.join(jar_dir, 'bson.jar')
29
+ mongo_jar = File.join(jar_dir, 'mongo-2.2.jar')
30
+ bson_jar = File.join(jar_dir, 'bson-2.2.jar')
31
31
 
32
32
  src_base = File.join(java_dir, 'src')
33
33
 
@@ -65,7 +65,7 @@ namespace :test do
65
65
  Rake::Task['test:pooled_threading'].invoke
66
66
  Rake::Task['test:drop_databases'].invoke
67
67
  end
68
-
68
+
69
69
  Rake::TestTask.new(:unit) do |t|
70
70
  t.test_files = FileList['test/unit/*_test.rb']
71
71
  t.verbose = true
@@ -142,7 +142,7 @@ namespace :test do
142
142
  end
143
143
 
144
144
  Rake::TestTask.new(:bson) do |t|
145
- t.test_files = FileList['test/mongo_bson/*_test.rb']
145
+ t.test_files = FileList['test/bson/*_test.rb']
146
146
  t.verbose = true
147
147
  end
148
148
 
@@ -172,12 +172,6 @@ task :ydoc do
172
172
  system "yardoc lib/**/*.rb lib/mongo/**/*.rb lib/bson/**/*.rb -e docs/yard_ext.rb -p docs/templates -o #{out} --title MongoRuby-#{Mongo::VERSION}"
173
173
  end
174
174
 
175
- desc "Publish documentation to mongo.rubyforge.org"
176
- task :publish => [:rdoc] do
177
- # Assumes docs are in ./html
178
- Rake::RubyForgePublisher.new(GEM, RUBYFORGE_USER).upload
179
- end
180
-
181
175
  namespace :gem do
182
176
 
183
177
  desc "Install the gem locally"
data/ext/cbson/version.h CHANGED
@@ -14,4 +14,4 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- #define VERSION "1.1"
17
+ #define VERSION "1.1.1"
metadata CHANGED
@@ -1,19 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bson_ext
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 17
4
5
  prerelease: false
5
6
  segments:
6
- - 1
7
- - 1
8
- version: "1.1"
7
+ - 1
8
+ - 1
9
+ - 1
10
+ version: 1.1.1
9
11
  platform: ruby
10
12
  authors:
11
- - Mike Dirolf
13
+ - Mike Dirolf
12
14
  autorequire:
13
15
  bindir: bin
14
16
  cert_chain: []
15
17
 
16
- date: 2010-10-04 00:00:00 -04:00
18
+ date: 2010-10-14 00:00:00 -04:00
17
19
  default_executable:
18
20
  dependencies: []
19
21
 
@@ -22,19 +24,19 @@ email: mongodb-dev@googlegroups.com
22
24
  executables: []
23
25
 
24
26
  extensions:
25
- - ext/cbson/extconf.rb
27
+ - ext/cbson/extconf.rb
26
28
  extra_rdoc_files: []
27
29
 
28
30
  files:
29
- - Rakefile
30
- - bson_ext.gemspec
31
- - ext/cbson/extconf.rb
32
- - ext/cbson/buffer.c
33
- - ext/cbson/cbson.c
34
- - ext/cbson/encoding_helpers.c
35
- - ext/cbson/buffer.h
36
- - ext/cbson/encoding_helpers.h
37
- - ext/cbson/version.h
31
+ - Rakefile
32
+ - bson_ext.gemspec
33
+ - ext/cbson/extconf.rb
34
+ - ext/cbson/buffer.c
35
+ - ext/cbson/cbson.c
36
+ - ext/cbson/encoding_helpers.c
37
+ - ext/cbson/buffer.h
38
+ - ext/cbson/encoding_helpers.h
39
+ - ext/cbson/version.h
38
40
  has_rdoc: true
39
41
  homepage: http://www.mongodb.org
40
42
  licenses: []
@@ -43,25 +45,29 @@ post_install_message:
43
45
  rdoc_options: []
44
46
 
45
47
  require_paths:
46
- - ext
48
+ - ext
47
49
  required_ruby_version: !ruby/object:Gem::Requirement
50
+ none: false
48
51
  requirements:
49
- - - ">="
50
- - !ruby/object:Gem::Version
51
- segments:
52
- - 0
53
- version: "0"
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ hash: 3
55
+ segments:
56
+ - 0
57
+ version: "0"
54
58
  required_rubygems_version: !ruby/object:Gem::Requirement
59
+ none: false
55
60
  requirements:
56
- - - ">="
57
- - !ruby/object:Gem::Version
58
- segments:
59
- - 0
60
- version: "0"
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ hash: 3
64
+ segments:
65
+ - 0
66
+ version: "0"
61
67
  requirements: []
62
68
 
63
69
  rubyforge_project:
64
- rubygems_version: 1.3.6
70
+ rubygems_version: 1.3.7
65
71
  signing_key:
66
72
  specification_version: 3
67
73
  summary: C extensions for Ruby BSON.