Skip to content

Commit

Permalink
[ci skip] Don’t encourage sudo gem install
Browse files Browse the repository at this point in the history
I think we are better off leaving `sudo` outside of the documented
way of installing gems (`activerecord`, `actionpack`, …).

We don’t want newbies to think that `sudo` is required or, even worse, than
they actually have to type `[sudo] gem install`.

In most scenarios, `sudo` is not needed to install gems, and people who do
need it, probably already know about it.

What do you think? 😁
  • Loading branch information
claudiob committed May 12, 2015
1 parent e99d909 commit 0080a88
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion actionmailer/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ The Base class has the full list of configuration options. Here's an example:

The latest version of Action Mailer can be installed with RubyGems:

% [sudo] gem install actionmailer
% gem install actionmailer

Source code can be downloaded as part of the Rails project on GitHub

Expand Down
2 changes: 1 addition & 1 deletion actionpack/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ can be used outside of Rails.

The latest version of Action Pack can be installed with RubyGems:

% [sudo] gem install actionpack
% gem install actionpack

Source code can be downloaded as part of the Rails project on GitHub

Expand Down
2 changes: 1 addition & 1 deletion actionview/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ used to inline short Ruby snippets inside HTML), and XML Builder.

The latest version of Action View can be installed with RubyGems:

% [sudo] gem install actionview
% gem install actionview

Source code can be downloaded as part of the Rails project on GitHub

Expand Down
2 changes: 1 addition & 1 deletion activejob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ see the API Documentation for [ActiveJob::QueueAdapters](http://api.rubyonrails.
The latest version of Active Job can be installed with RubyGems:

```
% [sudo] gem install activejob
% gem install activejob
```

Source code can be downloaded as part of the Rails project on GitHub
Expand Down
2 changes: 1 addition & 1 deletion activemodel/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ behavior out of the box:

The latest version of Active Model can be installed with RubyGems:

% [sudo] gem install activemodel
% gem install activemodel

Source code can be downloaded as part of the Rails project on GitHub

Expand Down
2 changes: 1 addition & 1 deletion activerecord/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Admit the Database:

The latest version of Active Record can be installed with RubyGems:

% [sudo] gem install activerecord
% gem install activerecord

Source code can be downloaded as part of the Rails project on GitHub:

Expand Down
2 changes: 1 addition & 1 deletion activesupport/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ outside of Rails.

The latest version of Active Support can be installed with RubyGems:

% [sudo] gem install activesupport
% gem install activesupport

Source code can be downloaded as part of the Rails project on GitHub:

Expand Down

0 comments on commit 0080a88

Please sign in to comment.