This file contains hidden or 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
| diff --git a/lib/fog/rackspace/servers.rb b/lib/fog/rackspace/servers.rb | |
| index fffd2fe..223b35e 100644 | |
| --- a/lib/fog/rackspace/servers.rb | |
| +++ b/lib/fog/rackspace/servers.rb | |
| @@ -10,7 +10,7 @@ module Fog | |
| load "fog/rackspace/requests/servers/delete_server.rb" | |
| load "fog/rackspace/requests/servers/get_flavors.rb" | |
| load "fog/rackspace/requests/servers/get_images.rb" | |
| - load "fog/rackspace/requests/servers/get_server_detail.rb" | |
| + load "fog/rackspace/requests/servers/get_server_details.rb" |
This file contains hidden or 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
| # ---------------------------------------------------------------- | |
| # general zsh configuration | |
| # ---------------------------------------------------------------- | |
| # crazy tab completion | |
| autoload -U compinit | |
| compinit | |
| # crazy mad shit | |
| setopt auto_resume auto_cd auto_pushd pushd_to_home pushd_silent pushd_minus |
This file contains hidden or 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/env ruby | |
| require 'rubygems' | |
| require 'httparty' | |
| require 'pp' | |
| TOKEN = 'token' | |
| class Task | |
| include HTTParty |
This file contains hidden or 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
| gem 'rake' | |
| group :never do | |
| gem 'json' | |
| end | |
| source 'http://gemcutter.org' |
This file contains hidden or 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
| gem 'rake' | |
| gem 'rspec', :require => 'spec' | |
| source 'http://gemcutter.org' |
This file contains hidden or 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
| diff --git a/bundler.gemspec b/bundler.gemspec | |
| index 7bd310e..160d1f9 100644 | |
| --- a/bundler.gemspec | |
| +++ b/bundler.gemspec | |
| @@ -6,11 +6,11 @@ Gem::Specification.new do |s| | |
| s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5") if s.respond_to? :required_rubygems_version= | |
| s.authors = ["Carl Lerche", "Yehuda Katz"] | |
| - s.date = %q{2010-02-07} | |
| + s.date = %q{2010-02-09} |
This file contains hidden or 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
| diff --git a/lib/bundler/setup.rb b/lib/bundler/setup.rb | |
| index e984348..05bd7e6 100644 | |
| --- a/lib/bundler/setup.rb | |
| +++ b/lib/bundler/setup.rb | |
| @@ -1,3 +1,7 @@ | |
| -require 'bundler' | |
| +begin | |
| + require '.bundle/environment.rb' | |
| +rescue LoadError | |
| + require 'bundler' |
This file contains hidden or 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
| if File.exists?("Gemfile") | |
| # We are using bundler | |
| _0_8_bundle_path = "vendor/gems" | |
| if (gemfile = File.read("Gemfile")) =~ /^\s*bundle_path\s+"([^"])\"\s*$/ | |
| _0_8_bundle_path = $1 | |
| end | |
| if File.exists?(_0_8_bundle_path / "environment.rb") | |
| # we are using 0.8 | |
| else |
This file contains hidden or 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
| module Foo | |
| module Bar | |
| module Helper | |
| def make_it_so | |
| return where_i_came_from | |
| end | |
| end | |
| end | |
| end |
This file contains hidden or 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
| source :gemcutter | |
| group :runtime do | |
| gem 'sinatra', '~>1.0' | |
| gem 'rack', '~>1.0.0' | |
| end | |
| # vim:ft=ruby |