Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
Init rails app
Browse files Browse the repository at this point in the history
  • Loading branch information
dzaporozhets committed Nov 1, 2012
1 parent d5e8ae2 commit 3ff4d6d
Show file tree
Hide file tree
Showing 88 changed files with 1,373 additions and 72 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -1,5 +1,9 @@
ci.db
config/application.yml
config/database.yml
log/*
tmp/*
*.pid
/.bundle
/db/*.sqlite3
/log/*.log
34 changes: 22 additions & 12 deletions Gemfile
@@ -1,21 +1,31 @@
source "http://rubygems.org"
source 'https://rubygems.org'

gem 'sinatra'
gem 'sinatra-contrib'
gem 'sinatra-respond_to'
gem 'rake'
gem 'rails', '3.2.8'

# DB
gem 'mysql2'

# Settings
gem 'settingslogic'

gem 'rake'
gem 'thin'
gem 'haml'
gem 'haml-rails'
gem 'resque'
gem 'foreman'
gem 'pry'
gem 'stamp'
gem 'will_paginate', '~> 3.0'
gem 'jquery-rails'

# DB
gem 'mysql2'
gem 'sinatra-activerecord'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'

# Settings
gem 'settingslogic'
gem 'uglifier', '>= 1.0.3'
gem "therubyracer"
gem 'bootstrap-sass', "2.0.4"
end

group :development do
gem 'pry'
end
133 changes: 103 additions & 30 deletions Gemfile.lock
@@ -1,6 +1,19 @@
GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
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)
Expand All @@ -9,85 +22,145 @@ GEM
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)
multi_json (~> 1.0)
arel (3.0.2)
backports (2.6.4)
builder (3.0.3)
coderay (1.0.7)
daemons (1.1.8)
eventmachine (0.12.10)
foreman (0.60.0)
bootstrap-sass (2.0.4.0)
builder (3.0.4)
coderay (1.0.8)
coffee-rails (3.2.2)
coffee-script (>= 2.2.0)
railties (~> 3.2.0)
coffee-script (2.2.0)
coffee-script-source
execjs
coffee-script-source (1.4.0)
daemons (1.1.9)
erubis (2.7.0)
eventmachine (1.0.0)
execjs (1.4.0)
multi_json (~> 1.0)
foreman (0.60.2)
thor (>= 0.13.6)
haml (3.1.7)
haml-rails (0.3.5)
actionpack (>= 3.1, < 4.1)
activesupport (>= 3.1, < 4.1)
haml (~> 3.1)
railties (>= 3.1, < 4.1)
hike (1.2.1)
i18n (0.6.1)
method_source (0.8)
journey (1.0.4)
jquery-rails (2.1.3)
railties (>= 3.1.0, < 5.0)
thor (~> 0.14)
json (1.7.5)
libv8 (3.3.10.4)
mail (2.4.4)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
method_source (0.8.1)
mime-types (1.19)
multi_json (1.3.6)
mysql2 (0.3.11)
polyglot (0.3.3)
pry (0.9.10)
coderay (~> 1.0.5)
method_source (~> 0.8)
slop (~> 3.3.1)
rack (1.4.1)
rack-cache (1.2)
rack (>= 0.4)
rack-protection (1.2.0)
rack
rack-ssl (1.3.2)
rack
rack-test (0.6.2)
rack (>= 1.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)
rake (0.9.2.2)
redis (3.0.1)
rdoc (3.12)
json (~> 1.4)
redis (3.0.2)
redis-namespace (1.2.1)
redis (~> 3.0.0)
resque (1.23.0)
multi_json (~> 1.0)
redis-namespace (~> 1.0)
sinatra (>= 0.9.2)
vegas (~> 0.1.2)
sass (3.2.1)
sass-rails (3.2.5)
railties (~> 3.2.0)
sass (>= 3.1.10)
tilt (~> 1.3)
settingslogic (2.0.8)
sinatra (1.3.3)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
sinatra-activerecord (1.1.1)
activerecord (~> 3.0)
sinatra (~> 1.0)
sinatra-contrib (1.3.1)
backports (>= 2.0)
eventmachine
rack-protection
rack-test
sinatra (~> 1.3.0)
tilt (~> 1.3)
sinatra-respond_to (0.8.0)
sinatra (~> 1.3)
slop (3.3.3)
stamp (0.1.6)
thin (1.3.1)
sprockets (2.1.3)
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
stamp (0.3.0)
therubyracer (0.10.2)
libv8 (~> 3.3.10)
thin (1.5.0)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
thor (0.16.0)
tilt (1.3.3)
tzinfo (0.3.33)
treetop (1.4.12)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.34)
uglifier (1.3.0)
execjs (>= 0.3.0)
multi_json (~> 1.0, >= 1.0.2)
vegas (0.1.11)
rack (>= 1.0.0)
will_paginate (3.0.1)
will_paginate (3.0.3)

PLATFORMS
ruby

DEPENDENCIES
bootstrap-sass (= 2.0.4)
coffee-rails (~> 3.2.1)
foreman
haml
haml-rails
jquery-rails
mysql2
pry
rails (= 3.2.8)
rake
resque
sass-rails (~> 3.2.3)
settingslogic
sinatra
sinatra-activerecord
sinatra-contrib
sinatra-respond_to
stamp
therubyracer
thin
uglifier (>= 1.0.3)
will_paginate (~> 3.0)

0 comments on commit 3ff4d6d

Please sign in to comment.