Skip to content

Commit 507b488

Browse files
committed
Add a gemspec
1 parent 579b050 commit 507b488

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

mongo-cloud.gemspec

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Gem::Specification.new do |s|
2+
s.name = 'mongo-cloud'
3+
s.version = '0.1.0'
4+
s.authors = ['Oleg Pudeyev']
5+
s.homepage = 'https://github.com/p-mongodb/mongo-cloud'
6+
s.summary = 'MongoDB Cloud API Client'
7+
s.description = 'MongoDB Cloud API Client'
8+
s.license = 'MIT'
9+
10+
s.files = %w(LICENSE README.md)
11+
s.files += Dir.glob('lib/**/*')
12+
13+
s.test_files = Dir.glob('spec/**/*')
14+
15+
s.require_path = 'lib'
16+
17+
s.add_dependency 'rack'
18+
s.add_dependency 'faraday'
19+
s.add_dependency 'faraday-detailed_logger'
20+
s.add_dependency 'faraday-digestauth'
21+
s.add_dependency 'oj'
22+
end

0 commit comments

Comments
 (0)