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
class ReportsController < AppController | |
before_filter :authenticate | |
resource "/api/v1/reports(/:id)" | |
get(:collection) do | |
end | |
get(:member) do |id| | |
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
No compatible versions could be found for required dependencies: | |
Conflict on: "bundler": | |
* bundler (0.9.26) activated by bundler (= 0.9.26, runtime) | |
* bundler (= 0.9.25, runtime) required in Gemfile | |
All possible versions of origin requirements conflict. |
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 'http://rubygems.org' | |
gem 'rails', '3.0.0.beta3' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' | |
#gem 'sqlite3-ruby', :require => 'sqlite3' | |
gem 'mysql' | |
gem 'authlogic', :git => 'git://github.com/odorcicd/authlogic.git', :branch => 'rails3' |
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
bundle install | |
Updating git://github.com/lwe/gravatarify.git | |
Updating git://github.com/odorcicd/authlogic.git | |
fatal: '/Users/michaelmurray/Documents/Aptana Studio 3 Workspace/murzblog/mysql/cache/bundler/git/authlogic-6baa44cd7023e0828fc87e150aa82c0caeeb7c3d': unable to chdir or not a git archive | |
fatal: The remote end hung up unexpectedly |
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
[gitosis] | |
[group gitosis-admin] | |
writable = gitosis-admin | |
members = [email protected] mike murz mikeserv | |
[group murzblog] | |
members = [email protected] mike murz mikeserv | |
writable = murzblog | |
daemon = yes |
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 'ambethia-recaptcha', :lib => "recaptcha/rails", :source => "http://gems.github.com" |
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
$ rvm use 1.9.2 | |
> info: Using ruby 1.9.2 rc2 | |
$ ruby -v | |
> ruby 1.8.7 ruby 1.8.7 (2010-06-23 patchlevel 299) [i686-darwin10] |
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
PATH=/opt/ruby/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/local/git/bin:/usr/X11/bin:/usr/local/mysql-5.1.45-osx10.6-x86_64/bin:$PATH |
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
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session. |
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
export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session. |
OlderNewer