This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
require 'wunderbar/opal-jquery' | |
require 'nokogumbo' | |
_html do | |
_head do | |
_title 'Various stats' | |
end | |
_body do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
require 'wunderbar/opal-jquery' | |
require 'nokogumbo' | |
_html do | |
_head do | |
_title 'Various stats' | |
end | |
_body do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
$:.unshift '/home/rubys/git/wunderbar/lib' | |
$:.unshift '/home/rubys/git/opal/lib' | |
$:.unshift '/home/rubys/git/opal-browser/lib' | |
### what "require 'wunderbar/opal-browser'" will ultimately do for you: | |
require 'wunderbar/opal' | |
require 'opal/browser' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruby-head-n42891 - install | |
sh: 1: [[: not found | |
sh: 1: [[: not found | |
sh: 1: [[: not found | |
sh: 1: [[: not found | |
sh: 1: [[: not found | |
sh: 1: [[: not found | |
sh: 1: [[: not found | |
Warning! Requested ruby installation which requires another ruby available - installing one first. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Running(6): curl --fail --location --max-redirs 10 https://get.rvm.io | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 | |
100 184 100 184 0 0 32 0 0:00:05 0:00:05 --:--:-- 450 | |
100 184 100 184 0 0 32 0 0:00:05 0:00:05 --:--:-- 449 | |
100 184 100 184 0 0 15 0 0:00:12 0:00:11 0:00:01 15 | |
100 184 100 184 0 0 14 0 0:00:13 0:00:12 0:00:01 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version: 4.0.7 | |
Date : 2013-07-07 13:27:35 -0400 | |
--------- Apache processes ---------- | |
PID PPID VMSize Private Name | |
------------------------------------- | |
1726 1 97.3 MB 0.6 MB /usr/sbin/apache2 -k start | |
12500 1726 96.8 MB 0.6 MB /usr/sbin/apache2 -k start | |
12542 1726 697.7 MB 1.0 MB /usr/sbin/apache2 -k start | |
12543 1726 505.5 MB 0.7 MB /usr/sbin/apache2 -k start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xml.products do | |
@products.each do |product| | |
xml.product do | |
xml.title product.title | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ProductsController < ApplicationController | |
before_action :set_product, only: [:show, :edit, :update, :destroy] | |
include ActionController::Live | |
before_action :authorize, only: [:edit, :destroy] | |
# GET /products | |
# GET /products.json | |
def index | |
@products = Product.all | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'gorp/test' | |
class BasicRailsTest < Gorp::TestCase | |
test "basic functionality" do | |
desc 'Create the application.' | |
rails 'depot' | |
desc 'Create a simple resource.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unless File.exists?('Gemfile') | |
File.write('Gemfile', <<-GEMFILE) | |
source 'https://rubygems.org' | |
gem 'rails', github: 'rails/rails' | |
gem 'sqlite3' | |
GEMFILE | |
system 'bundle' | |
end | |