tl;dr IdotabaのGemfileは"全プレ"になりました。ご笑納ください。→ Gemfile
rebuild.fmのep36でお知らせさせていただきました、Idobataの最新版Gemfileプレゼントをお届けいたします。 過日はIdobata会議01への多数のご参加ありがとうございました。おかげさまで盛況なミートアップとなりました。 (当日会場を提供いただいたEngine Yardさまのブログにて、Idobata会議01当日の様子がまとめられています。ありがとうございます!)
| node_modules/ |
tl;dr IdotabaのGemfileは"全プレ"になりました。ご笑納ください。→ Gemfile
rebuild.fmのep36でお知らせさせていただきました、Idobataの最新版Gemfileプレゼントをお届けいたします。 過日はIdobata会議01への多数のご参加ありがとうございました。おかげさまで盛況なミートアップとなりました。 (当日会場を提供いただいたEngine Yardさまのブログにて、Idobata会議01当日の様子がまとめられています。ありがとうございます!)
| application:open-your-keymap | |
| application:open-your-stylesheet | |
| autocomplete:attach | |
| autoflow:reflow-paragraph | |
| bookmarks:clear-bookmarks | |
| bookmarks:jump-to-next-bookmark | |
| bookmarks:jump-to-previous-bookmark | |
| bookmarks:toggle-bookmark | |
| bookmarks:view-all | |
| check:correct-misspelling |
| # -*- coding: us-ascii -*- | |
| require 'csv' | |
| require 'yaml' | |
| class LTSV < CSV | |
| attr_accessor :ordered | |
| alias ordered? ordered | |
| def self.def_options(opt, options = {}) |
| require 'formula' | |
| class Mysql < Formula | |
| homepage 'http://dev.mysql.com/doc/refman/5.6/en/' | |
| url 'http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.10.tar.gz/from/http://cdn.mysql.com/' | |
| version '5.6.10' | |
| sha1 'f37979eafc241a0ebeac9548cb3f4113074271b7' | |
| depends_on 'cmake' => :build | |
| depends_on 'pidof' unless MacOS.version >= :mountain_lion |
This document is a travel guide to RubyMotion's first conference, #inspect 2013.
http://www.rubymotion.com/conference
If you are attending or considering attending the conference, you might find here some handy tips that will answer questions you might have. If you have a question that isn't answered here, feel free to contact us and we will update this document accordingly.
| source 'http://rubygems.org' | |
| gem 'rails', :git => 'git://github.com/rails/rails.git' | |
| gem 'journey', :git => 'git://github.com/rails/journey.git' | |
| gem 'arel', :git => 'git://github.com/rails/arel.git' | |
| gem 'activerecord-deprecated_finders' , :git => 'git://github.com/rails/activerecord-deprecated_finders.git' | |
| gem 'sqlite3' | |
| group :assets do |
| gem: --no-ri --no-rdoc | |
| :sources: | |
| #- http://rubygems.org/ | |
| - http://production.s3.rubygems.org/ |
コマンドの実行はコンソール( ctrl + ` で開ける)で以下を実行する:
view.run_command('example')| class AppDelegate | |
| def application(application, didFinishLaunchingWithOptions:launchOptions) | |
| @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) | |
| @viewController = UIViewController.alloc.init | |
| @viewController.navigationItem.rightBarButtonItem = UIBarButtonItem.alloc.initWithBarButtonSystemItem(UIBarButtonSystemItemAction, target:self, action:'tapped:') | |
| @window.rootViewController = UINavigationController.alloc.initWithRootViewController(@viewController) | |
| @window.rootViewController.wantsFullScreenLayout = true | |
| @window.makeKeyAndVisible | |
| true | |
| end |