~ubuntu-branches/ubuntu/trusty/ruby1.9/trusty

« back to all changes in this revision

Viewing changes to debian/README.Debian

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2008-01-24 11:42:29 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080124114229-jw2f87rdxlq6gp11
Tags: 1.9.0.0-2ubuntu1
* Merge from debian unstable, remaining changes:
  - Robustify check for target_os, fixing build failure on lpia.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 * ``sitedir'' is /usr/local/lib/site_ruby, so ``$:'' (or ``$LOAD_PATH'')
27
27
   contains the following:
28
28
 
29
 
     ["/usr/local/lib/site_ruby/1.9",
30
 
      "/usr/local/lib/site_ruby/1.9/i486-linux", "/usr/local/lib/site_ruby",
31
 
      "/usr/lib/ruby/1.9", "/usr/lib/ruby/1.9/i486-linux", "."]
 
29
    ["/usr/local/lib/site_ruby/1.9.0",
 
30
     "/usr/local/lib/site_ruby/1.9.0/i486-linux",
 
31
     "/usr/local/lib/site_ruby/1.9/i386-linux",
 
32
     "/usr/local/lib/site_ruby",
 
33
     "/usr/lib/ruby/vendor_ruby/1.9.0",
 
34
     "/usr/lib/ruby/vendor_ruby/1.9.0/i486-linux",
 
35
     "/usr/lib/ruby/vendor_ruby",
 
36
     "/usr/lib/ruby/1.9.0",
 
37
     "/usr/lib/ruby/1.9.0/i486-linux",
 
38
     "/usr/lib/ruby/1.9/i386-linux",
 
39
     "."]
32
40
 
33
 
   ("1.9" means "#{major}.#{minor}" and "i486-linux" means "#{arch}-#{os}".)
 
41
   ("1.9.0" means "#{major}.#{minor}.#{teeny}" and "i486-linux" means "#{arch}-#{os}".)
34
42
 
35
43
 * Debian ruby policy is available in /usr/share/doc/ruby/ruby-policy.txt.gz
36
44
   (ruby package) 
48
56
     * ruby1.9-elisp - ruby-mode, etc
49
57
     * ruby1.9-examples - example programs
50
58
 
51
 
akira yamada <akira@debian.org>  Tue, 12 Apr 2005 18:55:49 +0900
52
 
 
53
 
 -- akira yamada <akira@debian.org>, 金,  9  6月 2006 17:30:25 +0900
 
59
 -- akira yamada <akira@debian.org>, Thu, 25 Dec 2007 15:44:00 +0900
 
60
 
 
61
 
 
62
RubyGems for Debian GNU/Linux
 
63
-----------------------------
 
64
 
 
65
Some patches are applied to the upstream to fit Debian FHS.
 
66
 
 
67
* Directory where gems are to be installed
 
68
 
 
69
/var/lib/gems is the defalut gem home directory in Debian. 
 
70
 
 
71
* Executables in gems
 
72
 
 
73
Gems which Debian's RubyGems will install are stored at /var/lib/gems
 
74
instead of /usr/lib/ruby/gems. Executables of the gems will be put at
 
75
/var/lib/gems/1.9/bin (for Ruby 1.9). In order to use them you manually
 
76
have to add the directory in your PATH environment variable or make
 
77
symbolic links at /usr/bin.
 
78
 
 
79
 -- Daigo Moriwaki <daigo@debian.org>  Wed, 26 Dec 2007 23:12:36 +0900