-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial steps to remove spatial_adapter
initial stab at sqlite compatibility and spatial_adapter deprecation passing tests on sqlite now README and Gemfile cleanup README login details tweaked cloudnine install script updated cloud9 database config additional install script updates update to README for cloudnine and cloudnine install script tweaks added db/schema.rb.example and modified gitignore readme update additional install documentation in README
- Loading branch information
Showing
21 changed files
with
547 additions
and
222 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
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 |
---|---|---|
@@ -1,84 +1,67 @@ | ||
source 'https://rubygems.org' | ||
source 'https://rails-assets.org' | ||
|
||
ruby '2.1.2' | ||
gem 'rails', '3.2.20' | ||
gem 'rails', '~> 3.2.20' | ||
gem 'passenger' | ||
|
||
# Bundle edge Rails instead: | ||
# gem 'rails', :git => 'git://github.com/rails/rails.git' | ||
|
||
# Database handling | ||
#group :sqlite do | ||
# gem 'sqlite3' | ||
#end | ||
group :mysql do | ||
gem 'mysql2', '~> 0.3.20' # 0.4.3+ causes a version mismatch, apparently, and demands 'activerecord-mysql2-adapter', below | ||
# run with `bundle install --without production` or `bundle install --without mysql` to exclude this | ||
group :mysql, :production do | ||
gem 'mysql2', '~> 0.3.20' | ||
# mysql 0.4.3+ causes a version mismatch, apparently, and demands 'activerecord-mysql2-adapter' | ||
end | ||
|
||
# ships with sqlite set up for easy setup during development | ||
# run with `bundle install --without development` or `bundle install --without sqlite` to exclude this | ||
group :sqlite, :development do | ||
gem 'sqlite3' | ||
end | ||
# TODO support postgresql | ||
|
||
#group :postgresql do | ||
# gem "activerecord-postgresql-adapter" | ||
#end | ||
|
||
# Support composite primary keys | ||
gem 'composite_primary_keys' | ||
|
||
# Gems used only for assets and not required | ||
# in production environments by default. | ||
# Gems used only for assets and not required in production environments by default. | ||
group :assets do | ||
# gem 'sass-rails', '~> 3.2.3' | ||
gem 'sass-rails', '~> 3.2.3' | ||
gem 'coffee-rails', '~> 3.2.1' | ||
gem 'execjs' # See https://github.com/sstephenson/execjs#readme for more supported runtimes | ||
gem 'therubyracer' | ||
gem 'uglifier', '>= 1.0.3' | ||
end | ||
|
||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | ||
# gem 'therubyracer', :platforms => :ruby | ||
# run with `bundle install --without development` to exclude these | ||
group :development do | ||
gem "nifty-generators" | ||
end | ||
|
||
gem 'uglifier', '>= 1.0.3' | ||
# run with `bundle install --without test` to exclude these | ||
group :test do | ||
#gem 'rspec-rails' | ||
gem 'factory_girl_rails' | ||
gem 'test-unit' | ||
gem 'rake' | ||
end | ||
|
||
gem 'jquery-rails' | ||
gem 'passenger' | ||
# run with `bundle install --without production` to exclude these | ||
group :production do | ||
gem "scrypt", "~> 1.2.1" | ||
end | ||
|
||
gem 'execjs' | ||
gem 'therubyracer' | ||
#gem 'secondbase', '0.5.0' | ||
gem 'rdiscount', '1.6.8' | ||
gem 'composite_primary_keys' | ||
gem 'jquery-rails' | ||
gem 'rdiscount', '1.6.8' # Markdown | ||
gem 'will_paginate', '>= 3.0.6' | ||
gem 'will_paginate-bootstrap', '>= 1.0.1' | ||
gem 'georuby', '2.0' | ||
gem 'geokit-rails' | ||
gem 'spatial_adapter', :git => 'https://github.com/descentintomael/spatial_adapter.git' | ||
gem 'rails_autolink' | ||
gem 'rb-readline' | ||
gem "paperclip", ">= 4.1.1" | ||
|
||
gem "nifty-generators", :group => :development | ||
gem "ruby-openid", :require => "openid" | ||
gem "rack-openid" | ||
gem "authlogic", "3.2.0" | ||
#gem "authlogic-oid", :require => "authlogic_openid" | ||
gem "php-serialize", :require => "php_serialize" | ||
|
||
gem "scrypt", "~> 1.2.1" | ||
|
||
gem 'less-rails', '~> 2.6' | ||
|
||
group :development, :test do | ||
#gem 'rspec-rails' | ||
gem 'factory_girl_rails' | ||
end | ||
|
||
# To use ActiveModel has_secure_password | ||
# gem 'bcrypt-ruby', '~> 3.0.0' | ||
|
||
# To use Jbuilder templates for JSON | ||
# gem 'jbuilder' | ||
|
||
# Use unicorn as the app server | ||
# gem 'unicorn' | ||
|
||
# Deploy with Capistrano | ||
# gem 'capistrano' | ||
|
||
# To use debugger | ||
# gem 'debugger' | ||
|
||
#gem "mocha", :group => :test |
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.