Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Japanese translation of episode 304 #316

Merged
merged 1 commit into from Dec 21, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions episodes/304 - OmniAuth Identity/en.html
Expand Up @@ -20,7 +20,7 @@ <h3>How Our Application Currently Works</h3>

<p>Before we do this we&rsquo;ll walk through some of the application&rsquo;s code to give you an idea of how it works. The source code is based on the application from <a href="http://railscasts.com/episodes/241-simple-omniauth">episode 241</a> and if you&rsquo;re unfamiliar with OmniAuth it&rsquo;s worth taking a look at that episode first.</p>

<p>Since episode 241 was written there have been some changes to OmniAuth and one of the most significant is in the gemfile. Each provider now has a separate gem for OmniAuth so its necessary to include the right gem for each provider we want to support.</p>
<p>Since episode 241 was written there have been some changes to OmniAuth and one of the most significant is in the gemfile. Each provider now has a separate gem for OmniAuth so it&rsquo;s necessary to include the right gem for each provider we want to support.</p>

``` /Gemfile
gem 'omniauth-twitter'
Expand Down Expand Up @@ -83,7 +83,7 @@ <h3>How Our Application Currently Works</h3>

<h3>Adding OmniAuth Identity to an Application</h3>

<p>That&rsquo;s all the code that&rsquo;s necessary to handle authentication through OmniAuth. Next we&rsquo;ll add OmniAuth Identity to so that users can create an account without having to use an external authentication service. As we mentioned earlier each OmniAuth provider requires a separate gem so the first thing we&rsquo;ll need to do is add the <code>omniauth-identity</code> gem to the gemfile.</p>
<p>That&rsquo;s all the code that&rsquo;s necessary to handle authentication through OmniAuth. Next we&rsquo;ll add OmniAuth Identity so that users can create an account without having to use an external authentication service. As we mentioned earlier each OmniAuth provider requires a separate gem so the first thing we&rsquo;ll need to do is add the <code>omniauth-identity</code> gem to the gemfile.</p>

``` /Gemfile
# To use ActiveModel has_secure_password
Expand Down