소스 검색

fix badly formatted README

Peter McCracken 11 년 전
부모
커밋
fd0552022c
1개의 변경된 파일4개의 추가작업 그리고 6개의 파일을 삭제
  1. 4 6
      README.rdoc

+ 4 - 6
README.rdoc

@@ -141,8 +141,8 @@ This package also includes the +shopify+ executable to make it easy to open up a
 
 == Threadsafety
 
-ActiveResource is inherently non-threadsafe, because class variables like `ActiveResource::Base.site` and
-`ActiveResource::Base.headers` are shared between threads. This can cause conflicts when using
+ActiveResource is inherently non-threadsafe, because class variables like ActiveResource::Base.site
+and ActiveResource::Base.headers are shared between threads. This can cause conflicts when using
 threaded libraries, like Sidekiq.
 
 We have a forked version of ActiveResource that stores these class variables in threadlocal
@@ -150,10 +150,8 @@ variables. Using this forked version will allow ShopifyAPI to be used in a threa
 
 To enable threadsafety with ShopifyAPI, add the following to your Gemfile:
 
-```
-gem 'activeresource', :git => 'git://github.com/Shopify/activeresource', :ref => 'e9dc76b4aa'
-gem 'shopify_api', '>= 3.3.0'
-```
+    gem 'activeresource', :git => 'git://github.com/Shopify/activeresource', :ref => 'e9dc76b4aa'
+    gem 'shopify_api', '>= 3.2.1'
 
 == Using Development Version