たまにRubyforgeが落ちていてgem installする事ができなくなっている場合がありますが、そんな場合には以下のミラーサーバが利用できるかもしれません。 http://master.mirror.rubyforge.org/ ローカルにダウンロードしてから sudo gem install します。
Gemcutterはruby gemのホスティングサービスです。 gemのホスティングのみに特化したサービス rubyforgeやGitHubと違ってソースコード管理やプロジェクト管理の機能はなく、gemのホスティングのみに特化したサービスです。シンプルなぶん、使いやすい感じです。 インターフェイスはgem gemコマンドを拡張するプラグインが用意されており、gemを使ってアップロードなどの操作が可能です。 以下は、Gemcutterのプラグインをインストールして、gemのアップロードを行う手順です。 1.Gemcutterのアカウントを作る Gemcutterのサイトにアクセスし、右上の「sign up」からアカウントを作成します。メールアドレスだけで、さくっと作成可能です。 2.Gemcutterプラグインのインストール Gemcutterを利用するための機能をgemに追加するプラグイ
■ [ruby][git] githubコマンドでforkした 昨日紹介したgithubコマンドだけど、wikiやissuesをブラウザで開く機能が欲しかったので実装してみた。 http://github.com/yhara/github-gem/ (まだ表示されてないかも?) ここに至るまでもgithubコマンド使いまくりで、 github clone defunkt github-gem でリポジトリ複製 編集 github fork でgithub上に俺用リポジトリができて、さらにoriginがそっちに書き換えられる git push origin master という感じでした。 7 http://www.google.co.jp/search?q=github fork&ie=ut... 7 http://route477.net/ 7 http://b.hatena.ne.jp
■ [ruby][git] githubを10倍便利にするgithubコマンド 現在はgit-hub gemの方がおすすめです:Route 477 - github gemからgit-hub gemに乗り換えた (2011/1/13追記) githubはよく使うけど、プロジェクト作るのにブラウザ開かないといけないのが 面倒だなーとか思っていませんか?githubコマンドをインストールすると、 ターミナルからgithubプロジェクトを新規作成できるようになります。 インストール $ gem install defunkt-github -s http://gems.github.com リポジトリの作成 新しく作る: $ github create foobar -> foobar/ 以下にgitリポジトリができ、githubにも登録される 既存のgitリポジトリから作る: $ github
<p>When you call <code>load</code> or <code>require</code> a new file, Ruby searches through the files in its load path. This allows you to require files relative to the load path without specifying the files full system path.</p> <p>The initial load path contains paths for Ruby’s standard library. There are three aliases that point to Rubys global load path array: <code>$:, $-I, $LOAD_PATH<
RubyGems.org is the Ruby community’s gem hosting service. Instantly publish your gems and then install them. Use the API to find out more about available gems. Become a contributor and improve the site yourself. RubyGems.org is made possible through a partnership with the greater Ruby community. Fastly provides bandwidth and CDN support, Ruby Central covers infrastructure costs, and funds ongoing
Blogged by Ujihisa. Standard methods of programming and thoughts including Clojure, Vim, LLVM, Haskell, Ruby and Mathematics written by a Japanese programmer. github/ujihisa It is unexpectedly difficult To handle RubyGems with multi ruby implementation in one OS. This entry is drawing my best practice of the problem. Principle: Gem in the User Area As far as possible, we should install gem librari
● [Ruby] 本当は怖い家庭の Rubygems /usr/bin/* を勝手に荒らされるという話。今気付いただけので、ガイシュツなら無視してOK。 詳細 パッケージのディレクトリに、 とか書いておけば、その gem ファイルをインスコしちゃうと、無条件、無確認で /usr/bin/ls を上書きするのね。 gem のインスコなんてフツー root でやるし ギッハブにあるよく知らない野良 gem でも躊躇せずインスコしてるし Rubygems のセンスのなさは世界が認めるところだけど、このセキュリティ感覚は異常じゃね?俺が知る限り、これは世界一楽なバックドア仕込みフレームワーク。 使い方間違い? いやいや。もしかしたら、作者に言わせれば、 それはお前の使い方間違いだよ bin/* をチェックしてからインスコしろよ あと、野良とか入れんなよ てことなのかもしれないが、bin/* のチェ
Sketches allows you to create and edit Ruby code from the comfort of your editor, while having it safely reloaded in IRB whenever changes to the code are saved. Features Spawn an editor of your choosing from IRB.Automatically reload your code when it changes.Use a custom editor command.Use a custom temp directory to store sketches in. Download it here or run: $ sudo gem install sketches Then requi
Right now people who publish native gems targeting the windows platform have a problem. Our problem is supporting ruby 1.8 and 1.9 at the same time. Right now, we can’t build one gem targeting 1.8 and one gem targeting 1.9, and have rubygems differentiate the two. I have a solution: fat binary gems. We can build a gem that contains dynamic libraries that target ruby 1.8 and ruby 1.9 on windows, wi
Ruby/SDL(Ruby 1.9用mswin32版)をgemでインストールするとき、dllをコピーするために、gemのインストール先パスを取得する方法を検討したので、その結果をメモで載せておきます。 # gemファイルを検索してくれる頼もしい存在 ps = Gem::GemPathSearcher.new # init_gemspecs:インストールしているGem::Specificationインスタンスを検索 spec = ps.init_gemspecs. # 指定のgem名の一覧を取得(バージョン番号違いのものがあるため) select{|sp| sp.name.match(/取り出したいGem名(例:rubysdl\-mswin32)/)}. # 最新のバージョンを取得 max_by{|sp| sp.version.to_s} # installation_path: gemがイ
RailsTips One man, lazily posting some of the things he learns. subscribe » Twitter recently announced OAuth support and that eventually they will be deprecating HTTP Basic Authentication in favor of OAuth. Knowing this, I figured it was about time to get familiar with OAuth and update the Twitter gem to use it. Let me start by explaining my history with OAuth. I have none. There that was fast. I
http://github.com/ 最近一部で話題沸騰の github。github は Rails で作られたアプリケーションでは、自分が知りうる限り一番の完成度と使いやすさを誇るんじゃないか、と思っています。 ソースコードツリーの見やすさ、(g)zipでくれ機能、各種 git の情報へのアクセスしやすさ、最初に git レポジトリを作ったとき表示されるチュートリアルと云った基本的なことはもちろんですが、オープンソースプロジェクト・コミュニティを加速させるであろう、分散レポジトリを利用した様々な機能がすばらしいですね。 誰かが公開してるレポジトリを fork ボタン一つで自分のレポジトリにクローンし、いろいろ変更を加え、大本に取り込んで欲しいなぁ、と思ったら pull request。大本のコミッタは気に入れば pull で取り込めばよいし、もし気に入らなかったとしても、変更者がそのフ
gem installでsudoを付け忘れると~/.gem/以下にgemがインストールされてしまう。予想外なgemを参照していたりして気持ち悪い。 アンインストール --install-dirを付ける。 $ gem uninstall activerecord --install-dir ~/.gem/ruby/1.8gemの一覧を得る方法は不明。gem list --install-dirはダメだった。ls -l ~/.gem/ruby/1.8/gems/で調べて消した。 ホームディレクトリにインストール禁止 Protecting your ~/.gem directory « coderrr コメント欄を参照 rubygemsを 1.3.2(2009-04-15) 以降にアップデートする。バグフィックスがあるのでアップデートは必須。 RubyForge: RubyGems: File
双壁波纹管 简称PE波纹管,80年代初在德国首先研制成功leyu乐鱼官网登录入口经过十多年的发展和完善,已经由单一的品种发展到完整的产品系列leyu乐鱼官网登录入口在生产工艺和使用技术上已经十分成熟leyu乐鱼官网登录入口由于其优异的性能和相对经济的造... HDPE双壁波纹管 这是一种以聚乙烯为原材料,经过挤出和特殊的成型工艺加工而成,内壁光滑,外壁为封闭波纹型的一种新型轻质管材,因采用了特殊的中空环形结构,具有优异的环刚度和良好的强度与韧性, 它... PVC-U双壁波纹管 也称作PVC-U双壁波纹管,是以聚氯乙烯为主要原料加工生产的内壁光滑、外壁波纹、內外壁中空的特殊管材leyu乐鱼官网登录入口该管材外型美观,结构独特,强度高,内壁光滑,摩擦阻力小,流通量大,基础不...
はてなグループの終了日を2020年1月31日(金)に決定しました 以下のエントリの通り、今年末を目処にはてなグループを終了予定である旨をお知らせしておりました。 2019年末を目処に、はてなグループの提供を終了する予定です - はてなグループ日記 このたび、正式に終了日を決定いたしましたので、以下の通りご確認ください。 終了日: 2020年1月31日(金) エクスポート希望申請期限:2020年1月31日(金) 終了日以降は、はてなグループの閲覧および投稿は行えません。日記のエクスポートが必要な方は以下の記事にしたがって手続きをしてください。 はてなグループに投稿された日記データのエクスポートについて - はてなグループ日記 ご利用のみなさまにはご迷惑をおかけいたしますが、どうぞよろしくお願いいたします。 2020-06-25 追記 はてなグループ日記のエクスポートデータは2020年2月28
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く