{"id":15048197,"url":"https://github.com/github/ruby-thecodeshop","last_synced_at":"2026-01-11T11:58:11.536Z","repository":{"id":6777345,"uuid":"8024404","full_name":"github/ruby-thecodeshop","owner":"github","description":"The Ruby Programming Language","archived":true,"fork":false,"pushed_at":"2015-02-23T04:03:02.000Z","size":214614,"stargazers_count":23,"open_issues_count":0,"forks_count":11,"subscribers_count":19,"default_branch":"github-p231","last_synced_at":"2024-09-30T00:20:18.471Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.ruby-lang.org/","language":"Ruby","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/github.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-02-05T07:19:24.000Z","updated_at":"2024-07-31T03:21:34.000Z","dependencies_parsed_at":"2022-08-26T05:51:38.045Z","dependency_job_id":null,"html_url":"https://github.com/github/ruby-thecodeshop","commit_stats":null,"previous_names":[],"tags_count":243,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Fruby-thecodeshop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Fruby-thecodeshop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Fruby-thecodeshop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Fruby-thecodeshop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/github","download_url":"https://codeload.github.com/github/ruby-thecodeshop/tar.gz/refs/heads/github-p231","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235227462,"owners_count":18956137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T21:09:03.921Z","updated_at":"2025-10-04T07:31:43.452Z","avatar_url":"https://github.com/github.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"NOTE: This repository is no longer supported or updated by GitHub. If you wish to continue to develop this code yourself, we recommend you fork it.\n\n\n* What's Ruby\n\nRuby is the interpreted scripting language for quick and\neasy object-oriented programming.  It has many features to\nprocess text files and to do system management tasks (as in\nPerl).  It is simple, straight-forward, and extensible.\n\n\n* Features of Ruby\n\n  + Simple Syntax\n  + *Normal* Object-Oriented features(ex. class, method calls)\n  + *Advanced* Object-Oriented features(ex. Mix-in, Singleton-method)\n  + Operator Overloading\n  + Exception Handling\n  + Iterators and Closures\n  + Garbage Collection\n  + Dynamic Loading of Object files(on some architecture)\n  + Highly Portable (works on many Unix-like/POSIX compatible platforms\n    as well as Windows, Mac OS X, BeOS etc.)\n    cf. http://redmine.ruby-lang.org/wiki/ruby-19/SupportedPlatforms\n\n\n* How to get Ruby\n\nThe Ruby distribution files can be found in the following FTP site:\n\n  ftp://ftp.ruby-lang.org/pub/ruby/\n\nThe trunk of the Ruby source tree can be checked out with the\nfollowing command:\n\n  $ svn co http://svn.ruby-lang.org/repos/ruby/trunk/ ruby\n\nThere are some other branches under development.  Try the following\ncommand and see the list of branches:\n\n  $ svn ls http://svn.ruby-lang.org/repos/ruby/branches/\n\n\n* Ruby home-page\n\nThe URL of the Ruby home-page is:\n\n   http://www.ruby-lang.org/\n\n\n* Mailing list\n\nThere is a mailing list to talk about Ruby.\nTo subscribe this list, please send the following phrase\n\n\tsubscribe YourFirstName YourFamilyName\ne.g.\n        subscribe Joseph Smith\n\nin the mail body (not subject) to the address \u003cruby-talk-ctl@ruby-lang.org\u003e.\n\n\n* How to compile and install\n\nThis is what you need to do to compile and install Ruby:\n\n  1. If ./configure does not exist or is older than configure.in,\n     run autoconf to (re)generate configure.\n\n  2. Run ./configure, which will generate config.h and Makefile.\n\n     Some C compiler flags may be added by default depending on your\n     environment.  Specify optflags=.. and warnflags=.. as necessary\n     to override them.\n\n  3. Edit defines.h if you need.  Usually this step will not be needed.\n\n  4. Remove comment mark(#) before the module names from ext/Setup (or\n     add module names if not present), if you want to link modules\n     statically.\n\n     If you don't want to compile non static extension modules\n     (probably on architectures which does not allow dynamic loading),\n     remove comment mark from the line \"#option nodynamic\" in\n     ext/Setup.\n\n  5. Run make.\n\n  6. Optionally, run 'make test' to check whether the compiled Ruby\n     interpreter works well.  If you see the message \"test succeeded\",\n     your ruby works as it should (hopefully).\n\n  7. Run 'make install'\n\n     This command will create following directories and install files\n     onto them.\n\n       * ${DESTDIR}${prefix}/bin\n       * ${DESTDIR}${prefix}/include/ruby-${MAJOR}.${MINOR}.${TEENY}\n       * ${DESTDIR}${prefix}/include/ruby-${MAJOR}.${MINOR}.${TEENY}/${PLATFORM}\n       * ${DESTDIR}${prefix}/lib\n       * ${DESTDIR}${prefix}/lib/ruby\n       * ${DESTDIR}${prefix}/lib/ruby/${MAJOR}.${MINOR}.${TEENY}\n       * ${DESTDIR}${prefix}/lib/ruby/${MAJOR}.${MINOR}.${TEENY}/${PLATFORM}\n       * ${DESTDIR}${prefix}/lib/ruby/site_ruby\n       * ${DESTDIR}${prefix}/lib/ruby/site_ruby/${MAJOR}.${MINOR}.${TEENY}\n       * ${DESTDIR}${prefix}/lib/ruby/site_ruby/${MAJOR}.${MINOR}.${TEENY}/${PLATFORM}\n       * ${DESTDIR}${prefix}/lib/ruby/vendor_ruby\n       * ${DESTDIR}${prefix}/lib/ruby/vendor_ruby/${MAJOR}.${MINOR}.${TEENY}\n       * ${DESTDIR}${prefix}/lib/ruby/vendor_ruby/${MAJOR}.${MINOR}.${TEENY}/${PLATFORM}\n       * ${DESTDIR}${prefix}/lib/ruby/gems/${MAJOR}.${MINOR}.${TEENY}\n       * ${DESTDIR}${prefix}/share/man/man1\n       * ${DESTDIR}${prefix}/share/ri/${MAJOR}.${MINOR}.${TEENY}/system\n\n     If Ruby's API version is `x.y.z', the ((|${MAJOR}|)) is `x', the\n     ((|${MINOR}|)) is `y', and the ((|${TEENY}|)) is `z'.\n\n     NOTE: teeny of the API version may be different from one of\n     Ruby's program version\n\n     You may have to be a super user to install ruby.\n\nIf you fail to compile ruby, please send the detailed error report with\nthe error log and machine/OS type, to help others.\n\n\n* Copying\n\nSee the file COPYING.\n\n\n* The Author\n\nFeel free to send comments and bug reports to the author.  Here is the \nauthor's latest mail address:\n\n  matz@netlab.jp\n\n-------------------------------------------------------\ncreated at: Thu Aug  3 11:57:36 JST 1995\nLocal variables:\nmode: indented-text\nend:\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgithub%2Fruby-thecodeshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgithub%2Fruby-thecodeshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgithub%2Fruby-thecodeshop/lists"}