From 3db3991a4c38189b258a85ee4887ebc4cc3f2603 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Sun, 22 Jan 2017 13:41:23 +0800 Subject: [PATCH 1/2] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4446682..fb473aa 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,16 @@ Create `config/initializers/rucaptcha.rb` ```rb RuCaptcha.configure do # Color style, default: :colorful, allows: [:colorful, :black_white] - # self.style = :colorful +  # self.style = :colorful # Custom captcha code expire time if you need, default: 2 minutes # self.expires_in = 120 - # [Requirement] +  # [Requirement/重要] # Store Captcha code where, this config more like Rails config.cache_store - # default: Rails application config.cache_store + # default: Read config info from `Rails.application.config.cache_store` # But RuCaptcha requirements cache_store not in [:null_store, :memory_store, :file_store] - self.cache_store = :mem_cache_store +  # 默认:将会从 Rails 配置的 cache_store 里面读取相同的配置信息 + # 但如果是 [:null_store, :memory_store, :file_store] 之类的,不行 +  self.cache_store = :mem_cache_store end ``` From 1de500609aaf153e21eca71bf792c6a6db051e40 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Sun, 22 Jan 2017 13:43:07 +0800 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fb473aa..d002e24 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,8 @@ RuCaptcha.configure do # Store Captcha code where, this config more like Rails config.cache_store # default: Read config info from `Rails.application.config.cache_store` # But RuCaptcha requirements cache_store not in [:null_store, :memory_store, :file_store] -  # 默认:将会从 Rails 配置的 cache_store 里面读取相同的配置信息 - # 但如果是 [:null_store, :memory_store, :file_store] 之类的,不行 +  # 默认:会从 Rails 配置的 cache_store 里面读取相同的配置信息,用于存储验证码字符 +  # 但如果是 [:null_store, :memory_store, :file_store] 之类的,你可以通过下面的配置项单独给 RuCaptcha 配置 cache_store  self.cache_store = :mem_cache_store end ```