Skip to content

Commit

Permalink
sinatra -> rails
Browse files Browse the repository at this point in the history
  • Loading branch information
blahed committed Oct 29, 2012
1 parent 77da74b commit dbf1fc7
Show file tree
Hide file tree
Showing 74 changed files with 1,131 additions and 3,459 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global

# Ignore bundler config
/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp
27 changes: 15 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gem 'rake', '~> 0.9.2.2'
gem 'rack', '~> 1.4.1'
gem 'sinatra', '~> 1.3.3'
gem 'sinatra-contrib', '~> 1.3.2'
gem 'rails', '3.2.8'

gem 'mongoid', '~> 2.5.1'
gem 'bson_ext', '~> 1.7.0'
gem 'bcrypt-ruby', '~> 3.0.0'

gem 'mime-types', '~> 1.17.2'
gem 'jquery-rails'
gem 'unicorn'

group :development do
gem 'screwcap', '~> 0.8.3'
end

group :production do
gem 'airbrake', '~> 3.0.9'
gem 'unicorn', '~> 4.1.1'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby

gem 'uglifier', '>= 1.0.3'
end

# To use debugger
# gem 'debugger'
131 changes: 85 additions & 46 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,76 +1,115 @@
GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
activemodel (3.1.3)
activesupport (= 3.1.3)
actionmailer (3.2.8)
actionpack (= 3.2.8)
mail (~> 2.4.4)
actionpack (3.2.8)
activemodel (= 3.2.8)
activesupport (= 3.2.8)
builder (~> 3.0.0)
erubis (~> 2.7.0)
journey (~> 1.0.4)
rack (~> 1.4.0)
rack-cache (~> 1.2)
rack-test (~> 0.6.1)
sprockets (~> 2.1.3)
activemodel (3.2.8)
activesupport (= 3.2.8)
builder (~> 3.0.0)
activerecord (3.2.8)
activemodel (= 3.2.8)
activesupport (= 3.2.8)
arel (~> 3.0.2)
tzinfo (~> 0.3.29)
activeresource (3.2.8)
activemodel (= 3.2.8)
activesupport (= 3.2.8)
activesupport (3.2.8)
i18n (~> 0.6)
activesupport (3.1.3)
multi_json (~> 1.0)
airbrake (3.0.9)
activesupport
builder
backports (2.6.4)
arel (3.0.2)
bcrypt-ruby (3.0.1)
bson (1.7.0)
bson_ext (1.7.0)
bson (~> 1.7.0)
builder (3.0.0)
eventmachine (1.0.0)
builder (3.0.4)
erubis (2.7.0)
execjs (1.4.0)
multi_json (~> 1.0)
hike (1.2.1)
i18n (0.6.1)
kgio (2.7.2)
mime-types (1.17.2)
journey (1.0.4)
jquery-rails (2.1.3)
railties (>= 3.1.0, < 5.0)
thor (~> 0.14)
json (1.7.5)
kgio (2.7.4)
mail (2.4.4)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.19)
mongo (1.7.0)
bson (~> 1.7.0)
mongoid (2.5.1)
activemodel (~> 3.1)
mongo (~> 1.7)
tzinfo (~> 0.3.22)
multi_json (1.0.4)
net-scp (1.0.4)
net-ssh (>= 1.99.1)
net-ssh (2.2.2)
net-ssh-gateway (1.1.0)
net-ssh (>= 1.99.1)
multi_json (1.3.6)
polyglot (0.3.3)
rack (1.4.1)
rack-protection (1.2.0)
rack-cache (1.2)
rack (>= 0.4)
rack-ssl (1.3.2)
rack
rack-test (0.6.2)
rack (>= 1.0)
raindrops (0.8.0)
rails (3.2.8)
actionmailer (= 3.2.8)
actionpack (= 3.2.8)
activerecord (= 3.2.8)
activeresource (= 3.2.8)
activesupport (= 3.2.8)
bundler (~> 1.0)
railties (= 3.2.8)
railties (3.2.8)
actionpack (= 3.2.8)
activesupport (= 3.2.8)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (>= 0.14.6, < 2.0)
raindrops (0.10.0)
rake (0.9.2.2)
screwcap (0.8.3)
net-scp (>= 1.0.4)
net-ssh (>= 2.0.23)
net-ssh-gateway (>= 1.0.1)
sinatra (1.3.3)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
sinatra-contrib (1.3.2)
backports (>= 2.0)
eventmachine
rack-protection
rack-test
sinatra (~> 1.3.0)
tilt (~> 1.3)
rdoc (3.12)
json (~> 1.4)
sprockets (2.1.3)
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
thor (0.16.0)
tilt (1.3.3)
treetop (1.4.11)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.34)
unicorn (4.1.1)
kgio (~> 2.4)
uglifier (1.3.0)
execjs (>= 0.3.0)
multi_json (~> 1.0, >= 1.0.2)
unicorn (4.4.0)
kgio (~> 2.6)
rack
raindrops (~> 0.6)
raindrops (~> 0.7)

PLATFORMS
ruby

DEPENDENCIES
airbrake (~> 3.0.9)
bcrypt-ruby (~> 3.0.0)
bson_ext (~> 1.7.0)
mime-types (~> 1.17.2)
jquery-rails
mongoid (~> 2.5.1)
rack (~> 1.4.1)
rake (~> 0.9.2.2)
screwcap (~> 0.8.3)
sinatra (~> 1.3.3)
sinatra-contrib (~> 1.3.2)
unicorn (~> 4.1.1)
rails (= 3.2.8)
uglifier (>= 1.0.3)
unicorn
24 changes: 0 additions & 24 deletions PROJECT.md

This file was deleted.

1 change: 0 additions & 1 deletion Procfile

This file was deleted.

Loading

0 comments on commit dbf1fc7

Please sign in to comment.