forked from jokevandemaele/taskboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
104 additions
and
13 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
source :rubygems | ||
|
||
gem "rails", "2.3.8" | ||
gem "sqlite3-ruby" | ||
gem "haml" | ||
gem "authlogic" | ||
gem "paperclip" | ||
gem "mysql" | ||
|
||
# erubis required by rails_xss | ||
gem "erubis" | ||
|
||
group :test do | ||
gem "shoulda", "2.10.3" | ||
gem "factory_girl", "1.3.3" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
GEM | ||
remote: http://rubygems.org/ | ||
specs: | ||
abstract (1.0.0) | ||
actionmailer (2.3.8) | ||
actionpack (= 2.3.8) | ||
actionpack (2.3.8) | ||
activesupport (= 2.3.8) | ||
rack (~> 1.1.0) | ||
activerecord (2.3.8) | ||
activesupport (= 2.3.8) | ||
activeresource (2.3.8) | ||
activesupport (= 2.3.8) | ||
activesupport (2.3.8) | ||
authlogic (2.1.6) | ||
activesupport | ||
erubis (2.6.6) | ||
abstract (>= 1.0.0) | ||
factory_girl (1.3.3) | ||
haml (3.0.25) | ||
mysql (2.8.1) | ||
paperclip (2.3.8) | ||
activerecord | ||
activesupport | ||
rack (1.1.0) | ||
rails (2.3.8) | ||
actionmailer (= 2.3.8) | ||
actionpack (= 2.3.8) | ||
activerecord (= 2.3.8) | ||
activeresource (= 2.3.8) | ||
activesupport (= 2.3.8) | ||
rake (>= 0.8.3) | ||
rake (0.8.7) | ||
shoulda (2.10.3) | ||
sqlite3 (1.3.3) | ||
sqlite3-ruby (1.3.3) | ||
sqlite3 (>= 1.3.3) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
authlogic | ||
erubis | ||
factory_girl (= 1.3.3) | ||
haml | ||
mysql | ||
paperclip | ||
rails (= 2.3.8) | ||
shoulda (= 2.10.3) | ||
sqlite3-ruby |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
begin | ||
require "rubygems" | ||
require "bundler" | ||
rescue LoadError | ||
raise "Could not load the bundler gem. Install it with `gem install bundler`." | ||
end | ||
|
||
if Gem::Version.new(Bundler::VERSION) <= Gem::Version.new("0.9.24") | ||
raise RuntimeError, "Your bundler version is too old for Rails 2.3." + | ||
"Run `gem install bundler` to upgrade." | ||
end | ||
|
||
begin | ||
# Set up load paths for all bundled gems | ||
ENV["BUNDLE_GEMFILE"] = File.expand_path("../../Gemfile", __FILE__) | ||
Bundler.setup | ||
rescue Bundler::GemNotFound | ||
raise RuntimeError, "Bundler couldn't find some gems." + | ||
"Did you run `bundle install`?" | ||
end |