Skip to content

Commit 853648e

Browse files
author
vagrant
committed
initial revision
0 parents  commit 853648e

Some content is hidden

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

68 files changed

+1367
-0
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
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

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.14'
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+
# 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 'debugger'

Gemfile.lock

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.14)
5+
actionpack (= 3.2.14)
6+
mail (~> 2.5.4)
7+
actionpack (3.2.14)
8+
activemodel (= 3.2.14)
9+
activesupport (= 3.2.14)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.4)
13+
rack (~> 1.4.5)
14+
rack-cache (~> 1.2)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.2.1)
17+
activemodel (3.2.14)
18+
activesupport (= 3.2.14)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.14)
21+
activemodel (= 3.2.14)
22+
activesupport (= 3.2.14)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.14)
26+
activemodel (= 3.2.14)
27+
activesupport (= 3.2.14)
28+
activesupport (3.2.14)
29+
i18n (~> 0.6, >= 0.6.4)
30+
multi_json (~> 1.0)
31+
arel (3.0.3)
32+
builder (3.0.4)
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.6.3)
40+
erubis (2.7.0)
41+
execjs (2.0.2)
42+
hike (1.2.3)
43+
i18n (0.6.9)
44+
journey (1.0.4)
45+
jquery-rails (3.0.4)
46+
railties (>= 3.0, < 5.0)
47+
thor (>= 0.14, < 2.0)
48+
json (1.8.1)
49+
mail (2.5.4)
50+
mime-types (~> 1.16)
51+
treetop (~> 1.4.8)
52+
mime-types (1.25.1)
53+
multi_json (1.8.4)
54+
polyglot (0.3.3)
55+
rack (1.4.5)
56+
rack-cache (1.2)
57+
rack (>= 0.4)
58+
rack-ssl (1.3.3)
59+
rack
60+
rack-test (0.6.2)
61+
rack (>= 1.0)
62+
rails (3.2.14)
63+
actionmailer (= 3.2.14)
64+
actionpack (= 3.2.14)
65+
activerecord (= 3.2.14)
66+
activeresource (= 3.2.14)
67+
activesupport (= 3.2.14)
68+
bundler (~> 1.0)
69+
railties (= 3.2.14)
70+
railties (3.2.14)
71+
actionpack (= 3.2.14)
72+
activesupport (= 3.2.14)
73+
rack-ssl (~> 1.3.2)
74+
rake (>= 0.8.7)
75+
rdoc (~> 3.4)
76+
thor (>= 0.14.6, < 2.0)
77+
rake (10.1.1)
78+
rdoc (3.12.2)
79+
json (~> 1.4)
80+
sass (3.2.13)
81+
sass-rails (3.2.6)
82+
railties (~> 3.2.0)
83+
sass (>= 3.1.10)
84+
tilt (~> 1.3)
85+
sprockets (2.2.2)
86+
hike (~> 1.2)
87+
multi_json (~> 1.0)
88+
rack (~> 1.0)
89+
tilt (~> 1.1, != 1.3.0)
90+
sqlite3 (1.3.8)
91+
thor (0.18.1)
92+
tilt (1.4.1)
93+
treetop (1.4.15)
94+
polyglot
95+
polyglot (>= 0.3.1)
96+
tzinfo (0.3.38)
97+
uglifier (2.4.0)
98+
execjs (>= 0.3.0)
99+
json (>= 1.8.0)
100+
101+
PLATFORMS
102+
ruby
103+
104+
DEPENDENCIES
105+
coffee-rails (~> 3.2.1)
106+
jquery-rails
107+
rails (= 3.2.14)
108+
sass-rails (~> 3.2.3)
109+
sqlite3
110+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)