Skip to content

Commit 8b02b47

Browse files
committed
first commit
0 parents  commit 8b02b47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1245
-0
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile ~/.gitignore_global
6+
7+
# Ignore bundler config
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
13+
# Ignore all logfiles and tempfiles.
14+
/log/*.log
15+
/tmp
16+
17+
.DS_Store
18+
*.swp

Gemfile

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.3'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem "mongoid"
9+
gem "bson_ext"
10+
11+
# Gems used only for assets and not required
12+
# in production environments by default.
13+
group :assets do
14+
gem 'sass-rails', '~> 3.2.3'
15+
gem 'coffee-rails', '~> 3.2.1'
16+
17+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
18+
# gem 'therubyracer', :platform => :ruby
19+
20+
gem 'uglifier', '>= 1.0.3'
21+
end
22+
23+
gem 'jquery-rails'
24+
25+
# To use ActiveModel has_secure_password
26+
# gem 'bcrypt-ruby', '~> 3.0.0'
27+
28+
# To use Jbuilder templates for JSON
29+
# gem 'jbuilder'
30+
31+
# Use unicorn as the app server
32+
# gem 'unicorn'
33+
34+
# Deploy with Capistrano
35+
# gem 'capistrano'
36+
37+
# To use debugger
38+
# gem 'ruby-debug19', :require => 'ruby-debug'

Gemfile.lock

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.3)
5+
actionpack (= 3.2.3)
6+
mail (~> 2.4.4)
7+
actionpack (3.2.3)
8+
activemodel (= 3.2.3)
9+
activesupport (= 3.2.3)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.1)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.2)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.1.2)
17+
activemodel (3.2.3)
18+
activesupport (= 3.2.3)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.3)
21+
activemodel (= 3.2.3)
22+
activesupport (= 3.2.3)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.3)
26+
activemodel (= 3.2.3)
27+
activesupport (= 3.2.3)
28+
activesupport (3.2.3)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
bson (1.6.2)
33+
bson_ext (1.6.2)
34+
bson (~> 1.6.2)
35+
builder (3.0.0)
36+
coffee-rails (3.2.2)
37+
coffee-script (>= 2.2.0)
38+
railties (~> 3.2.0)
39+
coffee-script (2.2.0)
40+
coffee-script-source
41+
execjs
42+
coffee-script-source (1.3.1)
43+
erubis (2.7.0)
44+
execjs (1.3.1)
45+
multi_json (~> 1.0)
46+
hike (1.2.1)
47+
i18n (0.6.0)
48+
journey (1.0.3)
49+
jquery-rails (2.0.2)
50+
railties (>= 3.2.0, < 5.0)
51+
thor (~> 0.14)
52+
json (1.7.0)
53+
mail (2.4.4)
54+
i18n (>= 0.4.0)
55+
mime-types (~> 1.16)
56+
treetop (~> 1.4.8)
57+
mime-types (1.18)
58+
mongo (1.6.2)
59+
bson (~> 1.6.2)
60+
mongoid (2.4.9)
61+
activemodel (~> 3.1)
62+
mongo (~> 1.3)
63+
tzinfo (~> 0.3.22)
64+
multi_json (1.3.4)
65+
polyglot (0.3.3)
66+
rack (1.4.1)
67+
rack-cache (1.2)
68+
rack (>= 0.4)
69+
rack-ssl (1.3.2)
70+
rack
71+
rack-test (0.6.1)
72+
rack (>= 1.0)
73+
rails (3.2.3)
74+
actionmailer (= 3.2.3)
75+
actionpack (= 3.2.3)
76+
activerecord (= 3.2.3)
77+
activeresource (= 3.2.3)
78+
activesupport (= 3.2.3)
79+
bundler (~> 1.0)
80+
railties (= 3.2.3)
81+
railties (3.2.3)
82+
actionpack (= 3.2.3)
83+
activesupport (= 3.2.3)
84+
rack-ssl (~> 1.3.2)
85+
rake (>= 0.8.7)
86+
rdoc (~> 3.4)
87+
thor (~> 0.14.6)
88+
rake (0.9.2.2)
89+
rdoc (3.12)
90+
json (~> 1.4)
91+
sass (3.1.16)
92+
sass-rails (3.2.5)
93+
railties (~> 3.2.0)
94+
sass (>= 3.1.10)
95+
tilt (~> 1.3)
96+
sprockets (2.1.3)
97+
hike (~> 1.2)
98+
rack (~> 1.0)
99+
tilt (~> 1.1, != 1.3.0)
100+
thor (0.14.6)
101+
tilt (1.3.3)
102+
treetop (1.4.10)
103+
polyglot
104+
polyglot (>= 0.3.1)
105+
tzinfo (0.3.33)
106+
uglifier (1.2.4)
107+
execjs (>= 0.3.0)
108+
multi_json (>= 1.0.2)
109+
110+
PLATFORMS
111+
ruby
112+
113+
DEPENDENCIES
114+
bson_ext
115+
coffee-rails (~> 3.2.1)
116+
jquery-rails
117+
mongoid
118+
rails (= 3.2.3)
119+
sass-rails (~> 3.2.3)
120+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)