Skip to content

Instantly share code, notes, and snippets.

/*********************************************************
* Copyright (C) 2006 VMware, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation version 2 and no later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
==============================================================================
pass: 5, fail: 15, error: 3084
total: 3104 tests with 537 assertions in 110.071952 seconds
==============================================================================
diff --git a/ext/cmain.cpp b/ext/cmain.cpp
index 76d5c4d..5004251 100644
--- a/ext/cmain.cpp
if (Fd < 0)
return errno;
// From here on, all early returns MUST close Fd.
-
+ #undef fstat
+ #undef stat
struct stat st;
c:\>gem -v
1.3.7
c:\>ruby -v
ruby 1.9.2dev (2010-05-31) [i386-mingw32]
c:\>irb
irb(main):001:0> require 'sqlite3'
LoadError: no such file to load -- sqlite3/sqlite3_native
from c:/ruby/ruby-1.9.2/lib/ruby/gems/1.9.1/gems/sqlite3-ruby-1.3.0-x86-mingw32/lib/sqlite3.rb:6:in `require'
[2011-06-08 02:52:07] /Users/deepj/.rvm/wrappers/ruby-1.8.7-p334/rake install
/Users/deepj/.rvm/rubies/ruby-1.8.7-p334/bin/ruby vm/codegen/encoding_extract.rb /Users/deepj/.rvm/src/vm/external_libs/onig vm/gen/encoding_database.cpp
(in /Users/deepj/.rvm/src/rbx-2.0.0pre)
/Users/deepj/.rvm/rubies/ruby-1.8.7-p334/bin/ruby vm/codegen/field_extract.rb vm/builtin/basicobject.hpp vm/builtin/object.hpp vm/builtin/integer.hpp vm/builtin/fixnum.hpp vm/builtin/array.hpp vm/builtin/bignum.hpp vm/builtin/executable.hpp vm/builtin/access_variable.hpp vm/builtin/alias.hpp vm/builtin/block_environment.hpp vm/builtin/block_as_method.hpp vm/builtin/bytearray.hpp vm/builtin/chararray.hpp vm/builtin/io.hpp vm/builtin/channel.hpp vm/builtin/module.hpp vm/builtin/class.hpp vm/builtin/compiledmethod.hpp vm/builtin/data.hpp vm/builtin/dir.hpp vm/builtin/exception.hpp vm/builtin/float.hpp vm/builtin/immediates.hpp vm/builtin/iseq.hpp vm/builtin/list.hpp vm/builtin/lookuptable.hpp vm/builtin/ffi_pointer.hpp vm/builtin/methodtable.hpp
@deepj
deepj / gist:1331295
Created November 1, 2011 17:39
workshop
<h2>New project</h2>
<% if @project.errors.any? %>
<ul>
<% @project.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
<% end %>
require 'test_helper'
module ::TestModule
def self.extended(base)
add_properties_to base
end
def self.included(base)
add_properties_to base
end
@deepj
deepj / gist:1869900
Created February 20, 2012 16:05
rvm + xcode 4.3 + command-line tools
brew install https://raw.github.com/adammw/homebrew-alt/automake/duplicates/autoconf.rb
brew install https://raw.github.com/adammw/homebrew-alt/automake/duplicates/automake.rb
brew link autoconf automake
@deepj
deepj / apns.rb
Created April 17, 2012 13:58 — forked from scotttam/apns.rb
Sends an Apple Push Notification with Ruby
require "rubygems"
require "yajl"
require "openssl"
require "socket"
device_token = '39cac56f 986a0e66 3c4fd4f4 68df5598 024d2ca3 8b9f307c 741c180e 9fc30c62'
device_token = device_token.gsub(" ", "")
the_byte_token = [device_token].pack("H*")
file = File.open("ruby_the_byte_token", "wb")
@deepj
deepj / upgrade_to_refinery_two.rb
Created July 30, 2012 11:01 — forked from jadehopepunk/upgrade_to_refinery_two.rb
Migration to convert from refinery 1.0.8 to refinery 2.0
class UpgradeToRefineryTwo < ActiveRecord::Migration
def self.up
# For refinerycms-authentication
rename_table :roles_users, :refinery_roles_users
rename_table :roles, :refinery_roles
rename_table :user_plugins, :refinery_user_plugins
rename_table :users, :refinery_users
remove_column :refinery_users, :persistence_token
remove_column :refinery_users, :perishable_token
remove_column :refinery_users, :remember_token