-
Notifications
You must be signed in to change notification settings - Fork 0
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
214d073
commit dd57228
Showing
12 changed files
with
55 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } | ||
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } | ||
|
||
# Specify your gem's dependencies in qyu-store-redis.gemspec | ||
gemspec |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ require 'rspec/core/rake_task' | |
|
||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
task :default => :spec | ||
task default: :spec |
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
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
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
module Qyu | ||
module Store | ||
module Redis | ||
# Qyu::Store::Redis::Logger | ||
class Logger < ::Logger | ||
end | ||
end | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module Qyu | ||
module Store | ||
module Redis | ||
VERSION = "0.1.0" | ||
VERSION = '0.1.0'.freeze | ||
end | ||
end | ||
end |
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 |
---|---|---|
@@ -1,43 +1,43 @@ | ||
|
||
lib = File.expand_path("../lib", __FILE__) | ||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require "qyu/store/redis/version" | ||
require 'qyu/store/redis/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "qyu-store-redis" | ||
spec.name = 'qyu-store-redis' | ||
spec.version = Qyu::Store::Redis::VERSION | ||
spec.authors = ["Mohamed Osama"] | ||
spec.email = ["[email protected]"] | ||
spec.authors = ['Mohamed Osama'] | ||
spec.email = ['[email protected]'] | ||
|
||
spec.summary = %q{Redis state store for Qyu https://rubygems.org/gems/qyu} | ||
spec.description = %q{Redis state store for Qyu https://rubygems.org/gems/qyu} | ||
spec.homepage = "https://github.com/FindHotel/qyu-store-redis" | ||
spec.license = "MIT" | ||
spec.summary = 'Redis state store for Qyu https://rubygems.org/gems/qyu' | ||
spec.description = 'Redis state store for Qyu https://rubygems.org/gems/qyu' | ||
spec.homepage = 'https://github.com/FindHotel/qyu-store-redis' | ||
spec.license = 'MIT' | ||
|
||
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | ||
# to allow pushing to a single host or delete this section to allow pushing to any host. | ||
if spec.respond_to?(:metadata) | ||
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" | ||
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" | ||
else | ||
raise "RubyGems 2.0 or newer is required to protect against " \ | ||
"public gem pushes." | ||
raise 'RubyGems 2.0 or newer is required to protect against ' \ | ||
'public gem pushes.' | ||
end | ||
|
||
spec.files = `git ls-files -z`.split("\x0").reject do |f| | ||
spec.files = `git ls-files -z`.split("\x0").reject do |f| | ||
f.match(%r{^(test|spec|features)/}) | ||
end | ||
spec.bindir = "exe" | ||
spec.bindir = 'exe' | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.add_development_dependency "bundler", "~> 1.16" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "pry", "~> 0.11" | ||
spec.add_development_dependency 'pry-byebug', "~> 3.4" | ||
spec.add_development_dependency "rspec", "~> 3.5" | ||
spec.add_development_dependency "shoulda-matchers", "~> 3.1" | ||
spec.add_development_dependency "simplecov" | ||
spec.add_development_dependency 'bundler', '~> 1.16' | ||
spec.add_development_dependency 'pry', '~> 0.11' | ||
spec.add_development_dependency 'pry-byebug', '~> 3.4' | ||
spec.add_development_dependency 'rake', '~> 10.0' | ||
spec.add_development_dependency 'rspec', '~> 3.5' | ||
spec.add_development_dependency 'shoulda-matchers', '~> 3.1' | ||
spec.add_development_dependency 'simplecov' | ||
|
||
spec.add_runtime_dependency "redis", "~> 4.0" | ||
spec.add_runtime_dependency "redis-namespace", "~> 1.6.0" | ||
spec.add_runtime_dependency 'redis', '~> 4.0' | ||
spec.add_runtime_dependency 'redis-namespace', '~> 1.6.0' | ||
end |
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
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