code stringlengths 1 1.73M | language stringclasses 1
value |
|---|---|
class CreateUsers < ActiveRecord::Migration
def up
create_table :users do |t|
t.string :profile_id
t.string :email
t.string :refresh_token
end
add_index :users, :profile_id
end
def down
drop_table :users
end
end
| Ruby |
# Copyright (C) 2012 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writ... | Ruby |
require 'sinatra.rb'
# Sinatra defines #set at the top level as a way to set application configuration
set :run, false
set :env, (ENV['RACK_ENV'] ? ENV['RACK_ENV'].to_sym : :development)
require './main'
run Sinatra::Application | Ruby |
source 'https://rubygems.org'
gem "rspec", ">=2.8.0.rc2", :require => "spec"
gem "libxml-ruby"
gem "json"
| Ruby |
Gem::Specification.new do |s|
s.name = 'kamelopard'
s.version = '0.0.10'
s.date = '2013-02-14'
s.files = Dir['lib/**/*.rb']
s.authors = [ 'Joshua Tolley', 'Szymon Guz' ]
s.email = [ 'josh@endpoint.com', 'szymon@endpoint.com' ]
s.homepage = 'http://www.endpoint.com/services/liquid_galaxy'
... | Ruby |
# vim:ts=4:sw=4:et:smartindent:nowrap
$LOAD_PATH << './lib'
require 'kamelopard'
require "xml"
require 'tempfile'
Kamelopard.set_logger lambda { |lev, mod, msg|
STDERR.puts "#{lev} #{mod}: #{msg}"
}
# Printing debug information.
def put_info(str)
puts
puts "="*60
puts str
puts "*"*60
end
#
# Ret... | Ruby |
gemspec = eval(File.read(Dir["*.gemspec"].first))
desc 'test kamelopard'
task :test do
system "rspec spec/test*.rb"
end
desc 'test gemspec'
task :gemspec do
gemspec.validate
end
desc 'Build gem locally'
task :build => :gemspec do
system "gem build #{gemspec.name}.gemspec"
end
desc 'Install gem locally'
t... | Ruby |
#--
# vim:ts=4:sw=4:et:smartindent:nowrap
#++
# Various helper functions
# Returns the current Document object
def get_document()
Kamelopard::DocumentHolder.instance.current_document
end
# Changes the default FlyTo mode. Possible values are :smooth and :bounce
def set_flyto_mode_to(mode)
Kamel... | Ruby |
#--
# vim:ts=4:sw=4:et:smartindent:nowrap
#++
# Logic to create flyto paths from mathematical functions.
#--
#++
module Kamelopard
# This function creates a hash, then uses that hash to create a point in a
# tour, using make_view_from() among other things.
# Arguments:
# points: The number of points... | Ruby |
# vim:ts=4:sw=4:et:smartindent:nowrap
require 'rubygems'
require 'net/http'
require 'uri'
require 'cgi'
require 'json'
# Geocoder base class
class Geocoder
def initialize
raise "Unimplemented -- some other class should extend Geocoder and replace this initialize method"
end
def lookup(address)
... | Ruby |
#--
# vim:ts=4:sw=4:et:smartindent:nowrap
#++
# Describes functions that can be calculated to create flight paths
require 'matrix'
#--
#++
module Kamelopard
# Classes to manage functions, which can be interpolated into flight paths
# and other things
module Functions
# Abstract class represe... | Ruby |
# encoding: utf-8
#--
# vim:ts=4:sw=4:et:smartindent:nowrap
#++
# Classes to manage various KML objects. See
# http://code.google.com/apis/kml/documentation/kmlreference.html for a
# description of KML
# Pretty much everything important is in this module
module Kamelopard
require 'singleton'
require 'xml'
... | Ruby |
require 'kamelopard/classes'
require 'kamelopard/helpers'
require 'kamelopard/geocode'
require 'kamelopard/function'
require 'kamelopard/function_paths'
| Ruby |
class CreateUsers < ActiveRecord::Migration
def up
create_table :users do |t|
t.string :profile_id
t.string :email
t.string :refresh_token
end
add_index :users, :profile_id
end
def down
drop_table :users
end
end
| Ruby |
# Copyright (C) 2012 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writ... | Ruby |
source :gemcutter
gem 'sinatra', :require => 'sinatra/base'
gem 'thin', '~> 1.3'
gem 'pg'
gem 'sinatra-activerecord'
gem 'google-api-client', '>= 0.4.4', :require => 'google/api_client'
group :development do
gem 'rake'
gem 'sqlite3-ruby'
end
| Ruby |
require 'sinatra.rb'
# Sinatra defines #set at the top level as a way to set application configuration
set :run, false
set :env, (ENV['RACK_ENV'] ? ENV['RACK_ENV'].to_sym : :development)
require './main'
run Sinatra::Application | Ruby |
require 'sinatra/activerecord/rake'
require './main' | Ruby |
require 'mkmf'
$CPPFLAGS = $CPPFLAGS + " -I../../include"
$LDFLAGS = $LDFLAGS + " -L../../"
$LIBS = $LIBS + " -lhpdf -lpng -lz"
create_makefile 'hpdf'
| Ruby |
#
# << Haru Free PDF Library 2.0.0 >> -- demo.rb
#
# Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright notice appea... | Ruby |
#
# << Haru Free PDF Library 2.0.0 >> -- encryption.rb
#
# Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright notice... | Ruby |
#
# << Haru Free PDF Library 2.0.0 >> -- font_example.rb
#
# Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright noti... | Ruby |
#
# << Haru Free PDF Library 2.0.2 >> -- arc_demo.rb
#
# http://libharu.org/
#
# Copyright (c) 1999-2006 Takeshi Kanno
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright notice appear ... | Ruby |
#
# << Haru Free PDF Library 2.0.6 >> -- ext_gstate_demo.rb
#
# http://libharu.org/
#
# Copyright (c) 1999-2006 Takeshi Kanno
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright notice ... | Ruby |
#
# << Haru Free PDF Library 2.0.2 >> -- ttfont_demo.rb
#
# http://libharu.org/
#
# Copyright (c) 1999-2006 Takeshi Kanno
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright notice appe... | Ruby |
#
# << Haru Free PDF Library 2.0.0 >> -- text_demo2.rb
#
# Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright notice... | Ruby |
#
# << Haru Free PDF Library 2.0.2 >> -- line_demo.rb
#
# http://libharu.org/
#
# Copyright (c) 1999-2006 Takeshi Kanno
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright notice appear... | Ruby |
#
# << Haru Free PDF Library 2.0.6 >> -- slideshow_demo.rb
#
# http://libharu.org/
#
# Copyright (c) 1999-2006 Takeshi Kanno
#
# Permission to use, copy, modify, distribute and sell this software
# and its documentation for any purpose is hereby granted without fee,
# provided that the above copyright notice a... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.i
module Collada
class Triangles
attr_accessor :vertex_indices, :normal_indices, :count
... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
class Contours
attr_accessor :vertex_indices, :normal_indices, :count
... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
class LineStrips
attr_accessor :vertex_indices
def initial... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
def Collada.ccw(a, b, c)
a[0] * (b[1] - c[1]) - b[0] * (a[1] - c[1]) + c[0] *... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
require 'rexml/formatters/default'
module REXML
module Formatters
# Pretty-prints an XML document. T... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
require 'sketchup.rb'
require 'rubystdlib.rb'
require 'rexml/Document'
load 'collada/id_manager.rb'
load 'co... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
require 'rubystdlib.rb'
require 'rexml/Document'
module Collada
class Mesh
attr_accessor :id
... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
class Node
attr_accessor :name, :id, :geometries, :components, :nodes, :anima... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
class Lines
attr_accessor :vertex_indices, :count
def init... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
class Material
attr_reader :id
def initialize(id, color)
... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
class Component
attr_accessor :node
def initialize(node)
... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
def Collada.p_to_s(p)
p = p.collect { |n| if n.abs < 1e-10 then 0.0 else n end }
... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
class AnimationPath
def AnimationPath.set_path(object)
object.se... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
module Collada
class IdManager
def initialize(initial_entries = [])
@id_hash = {}
... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
require 'collada/exporter.rb'
| Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
if not file_loaded?("rubystdlib.rb")
processor, platform, *rest = RUBY_PLATFORM.split("-")
cas... | Ruby |
# Author: Michael Burns (mburns@cs.princeton.edu)
# Copyright (c) 2009 Michael Burns
#
# This program is distributed under the terms of the
# GNU General Public License. See the COPYING file
# for details.
require 'sketchup.rb'
module SelectionFilter
def SelectionFilter.filter(type)
new_selection = Sketch... | Ruby |
# Require any additional compass plugins here.
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "theme/css"
sass_dir = "theme/scss"
images_dir = "images"
javascripts_dir = "js"
# You can select your preferred output style here (can be overridden via the command line):
output_style = :co... | Ruby |
# Be sure to restart your server when you modify this file.
# Add new inflection rules using the following format
# (all these examples are active by default):
# ActiveSupport::Inflector.inflections do |inflect|
# inflect.plural /^(ox)$/i, '\1en'
# inflect.singular /^(ox)en/i, '\1'
# inflect.irregular 'person', ... | Ruby |
# Be sure to restart your server when you modify this file.
# Add new mime types for use in respond_to blocks:
# Mime::Type.register "text/richtext", :rtf
# Mime::Type.register_alias "text/html", :iphone
| Ruby |
# Be sure to restart your server when you modify this file.
# Your secret key for verifying the integrity of signed cookies.
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attac... | Ruby |
VestalVersions.configure do |config|
# Place any global options here. For example, in order to specify your own version model to use
# throughout the application, simply specify:
#
# config.class_name = "MyCustomVersion"
#
# Any options passed to the "versioned" method in the model itself will override this... | Ruby |
# Be sure to restart your server when you modify this file.
Marketplace::Application.config.session_store :cookie_store, :key => '_Marketplace_session'
# Use the database for sessions instead of the cookie-based default,
# which shouldn't be used to store highly confidential information
# (create the session table wi... | Ruby |
# Be sure to restart your server when you modify this file.
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
# You can also remove all the silencers if you're trying to debug a probl... | Ruby |
Marketplace::Application.configure do
# Settings specified here will take precedence over those in config/application.rb
# The production environment is meant for finished, "live" apps.
# Code is not reloaded between requests
config.cache_classes = true
# Full error reports are disabled and caching is turne... | Ruby |
Marketplace::Application.configure do
# Settings specified here will take precedence over those in config/application.rb
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the w... | Ruby |
Marketplace::Application.configure do
# Settings specified here will take precedence over those in config/application.rb
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the t... | Ruby |
# Load the rails application
require File.expand_path('../application', __FILE__)
# Initialize the rails application
Marketplace::Application.initialize!
| Ruby |
require 'rubygems'
# Set up gems listed in the Gemfile.
gemfile = File.expand_path('../../Gemfile', __FILE__)
begin
ENV['BUNDLE_GEMFILE'] = gemfile
require 'bundler'
Bundler.setup
rescue Bundler::GemNotFound => e
STDERR.puts e.message
STDERR.puts "Try running `bundle install`."
exit!
end if File.exist?(gem... | Ruby |
require File.expand_path('../boot', __FILE__)
require 'rails/all'
# If you have a Gemfile, require the gems listed there, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(:default, Rails.env) if defined?(Bundler)
module Marketplace
class Application < Rails::Application
... | Ruby |
Marketplace::Application.routes.draw do
root :to => "apps#index"
resources :apps do
collection do
post 'exists', 'ids'
end
resources :visuals do
collection do
post 'exists'
end
end
end
resources :app_targets do
collection do
post 'exists'
end
end
... | Ruby |
module ApplicationHelper
end
| Ruby |
module PermissionsHelper
end
| Ruby |
module VisualsHelper
end
| Ruby |
module AppTargetHelper
end
| Ruby |
module AppPermissionHelper
end
| Ruby |
module CommentsHelper
end
| Ruby |
module AppsHelper
end
| Ruby |
class AppTarget < ActiveRecord::Base
belongs_to :app
belongs_to :target
end
| Ruby |
class App < ActiveRecord::Base
validates_uniqueness_of :packageName
has_one :rating, :dependent => :destroy
has_many :visuals, :dependent => :destroy
has_many :comments, :dependent => :destroy
has_many :app_targets
has_many :targets, :through => :app_targets
has_many :app_permissions
has_many :... | Ruby |
class Permission < ActiveRecord::Base
validates_uniqueness_of :name
validates_presence_of :name
has_many :app_permissions
has_many :apps, :through => :app_permissions
end
| Ruby |
class Target < ActiveRecord::Base
has_many :app_targets
has_many :apps, :through => :app_targets
end
| Ruby |
class Comment < ActiveRecord::Base
belongs_to :app
end
| Ruby |
class Rating < ActiveRecord::Base
versioned
belongs_to :app
end
| Ruby |
class Visual < ActiveRecord::Base
belongs_to :app
has_attached_file :image,
:url => "/:attachment/:id/:style/:basename.:extension",
:path => ":rails_root/public/:attachment/:id/:style/:basename.:extension"
validates_attachment_presence :image
validates_attachment_co... | Ruby |
class AppPermission < ActiveRecord::Base
belongs_to :app
belongs_to :permission
end
| Ruby |
class AppsController < ApplicationController
# GET /apps
# GET /apps.xml
# GET /apps.json
def index
@apps = App.all
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @apps }
format.json { render :json => @apps }
end
end
# GET /apps/1
... | Ruby |
class Record
attr_accessor :id, :exists
end | Ruby |
class PermissionsController < ApplicationController
# POST /permission.xml
# POST /permission.json
def create
@permission = Permission.new(:name => params[:permission])
respond_to do |format|
if @permission.save
format.xml { render :xml => @permission, :status => :created, :location => @... | Ruby |
class CommentsController < ApplicationController
# POST /comments.xml
# POST /comments.json
def create
@app = App.find(params[:app_id])
@comment = @app.comments.new(params[:comment])
respond_to do |format|
if @comment.save
format.xml { render :xml => @comment, :status => :... | Ruby |
class VisualsController < ApplicationController
# POST /visuals
def create
@app = App.find(params[:app_id])
@visual = @app.visuals.new(:image => params[:image])
respond_to do |format|
if @visual.save
format.html { render :json => @visual, :status => :created}
else
... | Ruby |
class ApplicationController < ActionController::Base
# protect_from_forgery
end
| Ruby |
class AppTargetsController < ApplicationController
# POST /app_targets.xml
# POST /app_targets.json
def create
@app_target = AppTarget.new(params[:app_target])
respond_to do |format|
if @app_target.save
format.xml { render :xml => @app_target, :status => :created, :location => @app_targ... | Ruby |
class AppPermissionsController < ApplicationController
# POST /app_permissions/update_permissions.xml
# POST /app_permissions/update_permissions.json
def update_permissions
app = App.find(params[:app_id])
app.permission_ids = params[:permissions]
respond_to do |format|
if app.save!
... | Ruby |
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
require 'rake'
Marketplace::Application.load_tasks
| Ruby |
#!/usr/bin/env ruby
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
APP_PATH = File.expand_path('../../config/application', __FILE__)
require File.expand_path('../../config/boot', __FILE__)
require 'rails/commands'
| Ruby |
source 'http://rubygems.org'
gem 'rails', '3.0.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
gem 'paperclip'
gem 'will_paginate'
gem 'vestal_versions', :git => 'git://github.com/adamcooper/vestal_versions'
# Use unicorn as the web server
# gem 'unicorn'
# D... | Ruby |
class CreateVestalVersions < ActiveRecord::Migration
def self.up
create_table :versions do |t|
t.belongs_to :versioned, :polymorphic => true
t.belongs_to :user, :polymorphic => true
t.string :user_name
t.text :modifications
t.integer :number
t.integer :reverted_from
t... | Ruby |
class CreateVisuals < ActiveRecord::Migration
def self.up
create_table :visuals do |t|
t.references :app
t.timestamps
end
add_index :visuals, :app_id
end
def self.down
drop_table :visuals
end
end
| Ruby |
class CreateRatings < ActiveRecord::Migration
def self.up
create_table :ratings do |t|
t.string :rating
t.integer :ratingCount
t.integer :downloadCount
t.string :downloadCountText
t.references :app
t.timestamps
end
add_index :ratings, :app_id, :unique => true
end
... | Ruby |
class CreateAppPermissions < ActiveRecord::Migration
def self.up
create_table :app_permissions do |t|
t.references :app
t.references :permission
t.timestamps
end
add_index :app_permissions, :app_id
add_index :app_permissions, :permission_id
end
def self.down
drop_table :ap... | Ruby |
class CreateAppTargets < ActiveRecord::Migration
def self.up
create_table :app_targets do |t|
t.references :app
t.references :target
t.timestamps
end
add_index :app_targets, :app_id
add_index :app_targets, :target_id
end
def self.down
drop_table :app_targets
end
end
| Ruby |
class CreateComments < ActiveRecord::Migration
def self.up
create_table :comments do |t|
t.integer :rating
t.string :creationTime
t.string :authorName
t.string :text
t.string :authorId
t.references :app
t.timestamps
end
add_index :comments, :app_id
add_index ... | Ruby |
class CreateApps < ActiveRecord::Migration
def self.up
create_table :apps do |t|
t.string :creator
t.string :packageName
t.string :title
t.text :description
t.string :appId
t.string :category
t.text :recentChanges
t.string :email
t.string :phone
t.string... | Ruby |
class CreateTargets < ActiveRecord::Migration
def self.up
create_table :targets do |t|
t.string :name
t.timestamps
end
add_index :targets, :name, :unique => true
end
def self.down
drop_table :targets
end
end
| Ruby |
class CreatePermissions < ActiveRecord::Migration
def self.up
create_table :permissions do |t|
t.string :name
t.timestamps
end
add_index :permissions, :name, :unique => true
end
def self.down
drop_table :permissions
end
end
| Ruby |
class AddAttachmentImageToVisual < ActiveRecord::Migration
def self.up
add_column :visuals, :image_file_name, :string
add_column :visuals, :image_content_type, :string
add_column :visuals, :image_file_size, :integer
add_column :visuals, :image_updated_at, :datetime
end
def self.down
remove_co... | Ruby |
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
# Mayor.create(:name =>... | Ruby |
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
run Marketplace::Application
| Ruby |
ENV["RAILS_ENV"] = "test"
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
class ActiveSupport::TestCase
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
#
# Note: You'll currently still have to declare fixtures explicitly in integrati... | Ruby |
class CreateUsers < ActiveRecord::Migration
def up
create_table :users do |t|
t.string :profile_id
t.string :email
t.string :refresh_token
end
add_index :users, :profile_id
end
def down
drop_table :users
end
end
| Ruby |
# Copyright (C) 2012 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writ... | Ruby |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.