-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
099e19e
commit 37beff8
Showing
2 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec| | |
spec.authors = ["Pavan Vachhani"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = "Redis JSON Ruby Adapter" | ||
spec.description = "Redis JSON Ruby Adapter" | ||
spec.summary = "Redis JSON Ruby Client" | ||
spec.description = "rejson-rb is a package that allows storing, updating and querying objects as JSON documents in Redis database that is intended with RedisJSON module." | ||
spec.homepage = "https://github.com/vachhanihpavan/rejson-rb" | ||
spec.license = "MIT" | ||
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") | ||
|
@@ -27,9 +27,9 @@ Gem::Specification.new do |spec| | |
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_runtime_dependency "redis", "~> 3.0" | ||
spec.add_runtime_dependency "json" | ||
spec.add_development_dependency "bundler", "~> 2.0" | ||
spec.add_development_dependency "rspec", "~> 3.0" | ||
spec.add_development_dependency "simplecov" | ||
end | ||
spec.add_runtime_dependency "redis", "~> 3.0" | ||
spec.add_runtime_dependency "json", "~> 2.0" | ||
spec.add_development_dependency "bundler", "~> 2.0" | ||
spec.add_development_dependency "rspec", "~> 3.0" | ||
spec.add_development_dependency "simplecov","~> 0.17" | ||
end |