Skip to content

Commit d77e74c

Browse files
committed
first commit
0 parents  commit d77e74c

Some content is hidden

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

63 files changed

+1378
-0
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
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+
/system/**
13+
/public/assets/**
14+
15+
# Ignore all logfiles and tempfiles.
16+
/log/*.log
17+
/tmp

Gemfile

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

Gemfile.lock

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.6)
5+
actionpack (= 3.2.6)
6+
mail (~> 2.4.4)
7+
actionpack (3.2.6)
8+
activemodel (= 3.2.6)
9+
activesupport (= 3.2.6)
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.3)
17+
activemodel (3.2.6)
18+
activesupport (= 3.2.6)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.6)
21+
activemodel (= 3.2.6)
22+
activesupport (= 3.2.6)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.6)
26+
activemodel (= 3.2.6)
27+
activesupport (= 3.2.6)
28+
activesupport (3.2.6)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
builder (3.0.0)
33+
cocaine (0.2.1)
34+
coffee-rails (3.2.2)
35+
coffee-script (>= 2.2.0)
36+
railties (~> 3.2.0)
37+
coffee-script (2.2.0)
38+
coffee-script-source
39+
execjs
40+
coffee-script-source (1.3.3)
41+
commonjs (0.2.6)
42+
erubis (2.7.0)
43+
execjs (1.4.0)
44+
multi_json (~> 1.0)
45+
hike (1.2.1)
46+
i18n (0.6.0)
47+
journey (1.0.4)
48+
jquery-fileupload-rails (0.3.0)
49+
actionpack (>= 3.1)
50+
railties (>= 3.1)
51+
jquery-rails (2.0.2)
52+
railties (>= 3.2.0, < 5.0)
53+
thor (~> 0.14)
54+
json (1.7.4)
55+
less (2.2.1)
56+
commonjs (~> 0.2.6)
57+
less-rails (2.2.3)
58+
actionpack (>= 3.1)
59+
less (~> 2.2.0)
60+
libv8 (3.3.10.4)
61+
mail (2.4.4)
62+
i18n (>= 0.4.0)
63+
mime-types (~> 1.16)
64+
treetop (~> 1.4.8)
65+
mime-types (1.19)
66+
multi_json (1.3.6)
67+
paperclip (3.1.4)
68+
activemodel (>= 3.0.0)
69+
activerecord (>= 3.0.0)
70+
activesupport (>= 3.0.0)
71+
cocaine (>= 0.0.2)
72+
mime-types
73+
polyglot (0.3.3)
74+
rack (1.4.1)
75+
rack-cache (1.2)
76+
rack (>= 0.4)
77+
rack-ssl (1.3.2)
78+
rack
79+
rack-test (0.6.1)
80+
rack (>= 1.0)
81+
rails (3.2.6)
82+
actionmailer (= 3.2.6)
83+
actionpack (= 3.2.6)
84+
activerecord (= 3.2.6)
85+
activeresource (= 3.2.6)
86+
activesupport (= 3.2.6)
87+
bundler (~> 1.0)
88+
railties (= 3.2.6)
89+
railties (3.2.6)
90+
actionpack (= 3.2.6)
91+
activesupport (= 3.2.6)
92+
rack-ssl (~> 1.3.2)
93+
rake (>= 0.8.7)
94+
rdoc (~> 3.4)
95+
thor (>= 0.14.6, < 2.0)
96+
rake (0.9.2.2)
97+
rdoc (3.12)
98+
json (~> 1.4)
99+
sass (3.1.20)
100+
sass-rails (3.2.5)
101+
railties (~> 3.2.0)
102+
sass (>= 3.1.10)
103+
tilt (~> 1.3)
104+
sprockets (2.1.3)
105+
hike (~> 1.2)
106+
rack (~> 1.0)
107+
tilt (~> 1.1, != 1.3.0)
108+
sqlite3 (1.3.6)
109+
therubyracer (0.10.1)
110+
libv8 (~> 3.3.10)
111+
thor (0.15.4)
112+
tilt (1.3.3)
113+
treetop (1.4.10)
114+
polyglot
115+
polyglot (>= 0.3.1)
116+
twitter-bootstrap-rails (2.1.1)
117+
actionpack (>= 3.1)
118+
less-rails (~> 2.2.2)
119+
railties (>= 3.1)
120+
therubyracer (= 0.10.1)
121+
tzinfo (0.3.33)
122+
uglifier (1.2.6)
123+
execjs (>= 0.3.0)
124+
multi_json (~> 1.3)
125+
126+
PLATFORMS
127+
ruby
128+
129+
DEPENDENCIES
130+
coffee-rails (~> 3.2.1)
131+
jquery-fileupload-rails
132+
jquery-rails
133+
paperclip
134+
rails (= 3.2.6)
135+
sass-rails (~> 3.2.3)
136+
sqlite3
137+
twitter-bootstrap-rails
138+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)