Skip to content

Commit

Permalink
[fixtures] Add json sep to each Gemfile (okjson sucks)
Browse files Browse the repository at this point in the history
  • Loading branch information
nesquena committed Oct 2, 2011
1 parent bca6f35 commit 26e36f5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions fixtures/padrino_test/Gemfile
Expand Up @@ -13,4 +13,5 @@ gem 'rack-test', :require => "rack/test", :group => "test"

# Padrino
gem 'padrino', '0.10.2'
gem 'json'
gem 'rabl', :path => File.expand_path(File.dirname(__FILE__) + "/../../")
1 change: 1 addition & 0 deletions fixtures/rails2/Gemfile
@@ -1,6 +1,7 @@
source :gemcutter
gem "rails", "~> 2.3.14"
gem "sqlite3-ruby", :require => "sqlite3"
gem 'json'
gem 'rabl', :path => File.expand_path(File.dirname(__FILE__) + "/../../")

gem 'riot', :group => "test"
Expand Down
1 change: 1 addition & 0 deletions fixtures/rails3/Gemfile
Expand Up @@ -6,6 +6,7 @@ gem 'rails', '3.0.8'
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'sqlite3'
gem 'json'
gem 'rabl', :path => File.expand_path(File.dirname(__FILE__) + "/../../")

# TEST
Expand Down
1 change: 1 addition & 0 deletions fixtures/sinatra_test/Gemfile
Expand Up @@ -5,6 +5,7 @@ gem 'activerecord', :require => "active_record"
gem 'sqlite3'

gem 'sinatra', '>= 1.2.0'
gem 'json'
gem 'rabl', :path => File.expand_path(File.dirname(__FILE__) + "/../../")

# Test requirements
Expand Down
1 change: 1 addition & 0 deletions fixtures/sinatra_test/app.rb
Expand Up @@ -3,6 +3,7 @@
require 'rabl'
require 'active_support/core_ext'
require 'active_support/inflector'
require 'active_record'
require 'builder'

ActiveRecord::Base.establish_connection(
Expand Down

0 comments on commit 26e36f5

Please sign in to comment.