Skip to content

Commit f6137e1

Browse files
committed
Bootstrap
0 parents  commit f6137e1

Some content is hidden

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

74 files changed

+1337
-0
lines changed

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
/db/schema.rb
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log
16+
/log/*.log
17+
/tmp

Gemfile

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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 'sqlite3'
9+
gem 'rack-cache', :require => 'rack/cache'
10+
gem 'dragonfly'
11+
12+
# Gems used only for assets and not required
13+
# in production environments by default.
14+
group :assets do
15+
gem 'sass-rails', '~> 3.2.3'
16+
gem 'coffee-rails', '~> 3.2.1'
17+
18+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
19+
# gem 'therubyracer', :platform => :ruby
20+
21+
gem 'uglifier', '>= 1.0.3'
22+
end
23+
24+
gem 'jquery-rails'
25+
26+
# To use ActiveModel has_secure_password
27+
# gem 'bcrypt-ruby', '~> 3.0.0'
28+
29+
# To use Jbuilder templates for JSON
30+
# gem 'jbuilder'
31+
32+
# Use unicorn as the app server
33+
# gem 'unicorn'
34+
35+
# Deploy with Capistrano
36+
# gem 'capistrano'
37+
38+
# To use debugger
39+
# gem 'ruby-debug19', :require => 'ruby-debug'

Gemfile.lock

+115
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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+
builder (3.0.0)
33+
coffee-rails (3.2.2)
34+
coffee-script (>= 2.2.0)
35+
railties (~> 3.2.0)
36+
coffee-script (2.2.0)
37+
coffee-script-source
38+
execjs
39+
coffee-script-source (1.2.0)
40+
dragonfly (0.9.11)
41+
rack
42+
erubis (2.7.0)
43+
execjs (1.3.0)
44+
multi_json (~> 1.0)
45+
hike (1.2.1)
46+
i18n (0.6.0)
47+
journey (1.0.3)
48+
jquery-rails (2.0.2)
49+
railties (>= 3.2.0, < 5.0)
50+
thor (~> 0.14)
51+
json (1.6.6)
52+
mail (2.4.4)
53+
i18n (>= 0.4.0)
54+
mime-types (~> 1.16)
55+
treetop (~> 1.4.8)
56+
mime-types (1.18)
57+
multi_json (1.2.0)
58+
polyglot (0.3.3)
59+
rack (1.4.1)
60+
rack-cache (1.2)
61+
rack (>= 0.4)
62+
rack-ssl (1.3.2)
63+
rack
64+
rack-test (0.6.1)
65+
rack (>= 1.0)
66+
rails (3.2.3)
67+
actionmailer (= 3.2.3)
68+
actionpack (= 3.2.3)
69+
activerecord (= 3.2.3)
70+
activeresource (= 3.2.3)
71+
activesupport (= 3.2.3)
72+
bundler (~> 1.0)
73+
railties (= 3.2.3)
74+
railties (3.2.3)
75+
actionpack (= 3.2.3)
76+
activesupport (= 3.2.3)
77+
rack-ssl (~> 1.3.2)
78+
rake (>= 0.8.7)
79+
rdoc (~> 3.4)
80+
thor (~> 0.14.6)
81+
rake (0.9.2.2)
82+
rdoc (3.12)
83+
json (~> 1.4)
84+
sass (3.1.15)
85+
sass-rails (3.2.5)
86+
railties (~> 3.2.0)
87+
sass (>= 3.1.10)
88+
tilt (~> 1.3)
89+
sprockets (2.1.2)
90+
hike (~> 1.2)
91+
rack (~> 1.0)
92+
tilt (~> 1.1, != 1.3.0)
93+
sqlite3 (1.3.5)
94+
thor (0.14.6)
95+
tilt (1.3.3)
96+
treetop (1.4.10)
97+
polyglot
98+
polyglot (>= 0.3.1)
99+
tzinfo (0.3.32)
100+
uglifier (1.2.4)
101+
execjs (>= 0.3.0)
102+
multi_json (>= 1.0.2)
103+
104+
PLATFORMS
105+
ruby
106+
107+
DEPENDENCIES
108+
coffee-rails (~> 3.2.1)
109+
dragonfly
110+
jquery-rails
111+
rack-cache
112+
rails (= 3.2.3)
113+
sass-rails (~> 3.2.3)
114+
sqlite3
115+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)