Skip to content

Commit be4e46c

Browse files
committed
first commit
0 parents  commit be4e46c

File tree

232 files changed

+6646
-0
lines changed

Some content is hidden

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

232 files changed

+6646
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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

Gemfile

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.11'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem 'sqlite3'
9+
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', :platforms => :ruby
19+
20+
gem 'uglifier', '>= 1.0.3'
21+
end
22+
23+
gem 'jquery-rails'
24+
25+
gem 'devise'
26+
27+
gem 'bootstrap-sass', '~> 2.2.1.1'
28+
29+
gem 'simple_form'
30+
31+
32+
# To use ActiveModel has_secure_password
33+
# gem 'bcrypt-ruby', '~> 3.0.0'
34+
35+
# To use Jbuilder templates for JSON
36+
# gem 'jbuilder'
37+
38+
# Use unicorn as the app server
39+
# gem 'unicorn'
40+
41+
# Deploy with Capistrano
42+
# gem 'capistrano'
43+
44+
# To use debugger
45+
# gem 'debugger'

Gemfile.lock

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.11)
5+
actionpack (= 3.2.11)
6+
mail (~> 2.4.4)
7+
actionpack (3.2.11)
8+
activemodel (= 3.2.11)
9+
activesupport (= 3.2.11)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.4)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.2)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.2.1)
17+
activemodel (3.2.11)
18+
activesupport (= 3.2.11)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.11)
21+
activemodel (= 3.2.11)
22+
activesupport (= 3.2.11)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.11)
26+
activemodel (= 3.2.11)
27+
activesupport (= 3.2.11)
28+
activesupport (3.2.11)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
bcrypt-ruby (3.0.1)
33+
bootstrap-sass (2.2.1.1)
34+
sass (~> 3.2)
35+
builder (3.0.4)
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.6.3)
43+
devise (2.2.0)
44+
bcrypt-ruby (~> 3.0)
45+
orm_adapter (~> 0.1)
46+
railties (~> 3.1)
47+
warden (~> 1.2.1)
48+
erubis (2.7.0)
49+
execjs (1.4.0)
50+
multi_json (~> 1.0)
51+
hike (1.2.3)
52+
i18n (0.6.4)
53+
journey (1.0.4)
54+
jquery-rails (3.0.4)
55+
railties (>= 3.0, < 5.0)
56+
thor (>= 0.14, < 2.0)
57+
json (1.8.0)
58+
mail (2.4.4)
59+
i18n (>= 0.4.0)
60+
mime-types (~> 1.16)
61+
treetop (~> 1.4.8)
62+
mime-types (1.23)
63+
multi_json (1.7.7)
64+
orm_adapter (0.4.0)
65+
polyglot (0.3.3)
66+
rack (1.4.5)
67+
rack-cache (1.2)
68+
rack (>= 0.4)
69+
rack-ssl (1.3.3)
70+
rack
71+
rack-test (0.6.2)
72+
rack (>= 1.0)
73+
rails (3.2.11)
74+
actionmailer (= 3.2.11)
75+
actionpack (= 3.2.11)
76+
activerecord (= 3.2.11)
77+
activeresource (= 3.2.11)
78+
activesupport (= 3.2.11)
79+
bundler (~> 1.0)
80+
railties (= 3.2.11)
81+
railties (3.2.11)
82+
actionpack (= 3.2.11)
83+
activesupport (= 3.2.11)
84+
rack-ssl (~> 1.3.2)
85+
rake (>= 0.8.7)
86+
rdoc (~> 3.4)
87+
thor (>= 0.14.6, < 2.0)
88+
rake (10.1.0)
89+
rdoc (3.12.2)
90+
json (~> 1.4)
91+
sass (3.2.9)
92+
sass-rails (3.2.6)
93+
railties (~> 3.2.0)
94+
sass (>= 3.1.10)
95+
tilt (~> 1.3)
96+
simple_form (2.0.4)
97+
actionpack (~> 3.0)
98+
activemodel (~> 3.0)
99+
sprockets (2.2.2)
100+
hike (~> 1.2)
101+
multi_json (~> 1.0)
102+
rack (~> 1.0)
103+
tilt (~> 1.1, != 1.3.0)
104+
sqlite3 (1.3.7)
105+
thor (0.18.1)
106+
tilt (1.4.1)
107+
treetop (1.4.14)
108+
polyglot
109+
polyglot (>= 0.3.1)
110+
tzinfo (0.3.37)
111+
uglifier (2.1.1)
112+
execjs (>= 0.3.0)
113+
multi_json (~> 1.0, >= 1.0.2)
114+
warden (1.2.1)
115+
rack (>= 1.0)
116+
117+
PLATFORMS
118+
ruby
119+
120+
DEPENDENCIES
121+
bootstrap-sass (~> 2.2.1.1)
122+
coffee-rails (~> 3.2.1)
123+
devise
124+
jquery-rails
125+
rails (= 3.2.11)
126+
sass-rails (~> 3.2.3)
127+
simple_form
128+
sqlite3
129+
uglifier (>= 1.0.3)

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)