This repository has been archived by the owner on Jan 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
jmongo.gemspec
120 lines (117 loc) · 3.87 KB
/
jmongo.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
Gem::Specification.new do |s|
s.name = 'jmongo'
s.version = '1.1.5'
s.date = '2011-10-22'
s.platform = Gem::Platform::RUBY
s.authors = ["Chuck Remes","Guy Boertje", "Lee Henson"]
s.summary = "Thin ruby wrapper around Mongo Java Driver; for JRuby only"
s.description = %q{Thin jruby wrapper around Mongo Java Driver}
s.homepage = 'http://github.com/guyboertje/jmongo'
# = MANIFEST =
s.files = %w[
Gemfile
History.txt
LICENSE.txt
README.txt
Rakefile
bin/jmongo
jmongo.gemspec
lib/jmongo.rb
lib/jmongo/collection.rb
lib/jmongo/connection.rb
lib/jmongo/cursor.rb
lib/jmongo/db.rb
lib/jmongo/exceptions.rb
lib/jmongo/mongo-2.6.5.gb1.jar
lib/jmongo/mongo/bson.rb
lib/jmongo/mongo/collection.rb
lib/jmongo/mongo/connection.rb
lib/jmongo/mongo/db.rb
lib/jmongo/mongo/jmongo.rb
lib/jmongo/mongo/mongo.rb
lib/jmongo/mongo/ruby_ext.rb
lib/jmongo/mongo/utils.rb
lib/jmongo/version.rb
spec/jmongo_spec.rb
spec/spec_helper.rb
test/auxillary/1.4_features.rb
test/auxillary/authentication_test.rb
test/auxillary/autoreconnect_test.rb
test/auxillary/fork_test.rb
test/auxillary/repl_set_auth_test.rb
test/auxillary/slave_connection_test.rb
test/auxillary/threaded_authentication_test.rb
test/bson/binary_test.rb
test/bson/bson_test.rb
test/bson/byte_buffer_test.rb
test/bson/hash_with_indifferent_access_test.rb
test/bson/json_test.rb
test/bson/object_id_test.rb
test/bson/ordered_hash_test.rb
test/bson/test_helper.rb
test/bson/timestamp_test.rb
test/collection_test.rb
test/connection_test.rb
test/conversions_test.rb
test/cursor_fail_test.rb
test/cursor_message_test.rb
test/cursor_test.rb
test/data/empty_data
test/data/sample_data
test/data/sample_file.pdf
test/data/small_data.txt
test/db_api_test.rb
test/db_connection_test.rb
test/db_test.rb
test/grid_file_system_test.rb
test/grid_io_test.rb
test/grid_test.rb
test/load/thin/config.ru
test/load/thin/config.yml.template
test/load/thin/load.rb
test/load/unicorn/config.ru
test/load/unicorn/load.rb
test/load/unicorn/unicorn.rb.template
test/replica_sets/connect_test.rb
test/replica_sets/connection_string_test.rb
test/replica_sets/count_test.rb
test/replica_sets/insert_test.rb
test/replica_sets/pooled_insert_test.rb
test/replica_sets/query_secondaries.rb
test/replica_sets/query_test.rb
test/replica_sets/read_preference_test.rb
test/replica_sets/refresh_test.rb
test/replica_sets/replication_ack_test.rb
test/replica_sets/rs_test_helper.rb
test/safe_test.rb
test/subscribe_test.rb
test/support/hash_with_indifferent_access.rb
test/support/keys.rb
test/support_test.rb
test/test_helper.rb
test/threading/threading_with_large_pool_test.rb
test/threading_test.rb
test/tools/auth_repl_set_manager.rb
test/tools/keyfile.txt
test/tools/repl_set_manager.rb
test/unit/collection_test.rb
test/unit/connection_test.rb
test/unit/cursor_test.rb
test/unit/db_test.rb
test/unit/grid_test.rb
test/unit/node_test.rb
test/unit/pool_manager_test.rb
test/unit/pool_test.rb
test/unit/read_test.rb
test/unit/safe_test.rb
test/uri_test.rb
]
# = MANIFEST =
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.add_dependency 'require_all', '~> 1.2'
s.add_development_dependency 'awesome_print', '~> 0.4'
s.add_development_dependency 'fuubar', '~> 0.0'
s.add_development_dependency 'rspec', '~> 2.6'
end