Skip to content

Commit 93f53db

Browse files
committed
Initial commit
0 parents  commit 93f53db

Some content is hidden

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

66 files changed

+1251
-0
lines changed

.gitignore

+18
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+
.idea
17+
.idea/**/*
18+
atlassian-ide-plugin.xml

Gemfile

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.8'
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 'jquery-ui-rails'
21+
22+
gem 'uglifier', '>= 1.0.3'
23+
end
24+
25+
gem 'jquery-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

+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.8)
5+
actionpack (= 3.2.8)
6+
mail (~> 2.4.4)
7+
actionpack (3.2.8)
8+
activemodel (= 3.2.8)
9+
activesupport (= 3.2.8)
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.1.3)
17+
activemodel (3.2.8)
18+
activesupport (= 3.2.8)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.8)
21+
activemodel (= 3.2.8)
22+
activesupport (= 3.2.8)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.8)
26+
activemodel (= 3.2.8)
27+
activesupport (= 3.2.8)
28+
activesupport (3.2.8)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
builder (3.0.3)
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.3.3)
40+
erubis (2.7.0)
41+
execjs (1.4.0)
42+
multi_json (~> 1.0)
43+
hike (1.2.1)
44+
i18n (0.6.1)
45+
journey (1.0.4)
46+
jquery-rails (2.1.3)
47+
railties (>= 3.1.0, < 5.0)
48+
thor (~> 0.14)
49+
jquery-ui-rails (2.0.2)
50+
jquery-rails
51+
railties (>= 3.1.0)
52+
json (1.7.5)
53+
mail (2.4.4)
54+
i18n (>= 0.4.0)
55+
mime-types (~> 1.16)
56+
treetop (~> 1.4.8)
57+
mime-types (1.19)
58+
multi_json (1.3.6)
59+
polyglot (0.3.3)
60+
rack (1.4.1)
61+
rack-cache (1.2)
62+
rack (>= 0.4)
63+
rack-ssl (1.3.2)
64+
rack
65+
rack-test (0.6.2)
66+
rack (>= 1.0)
67+
rails (3.2.8)
68+
actionmailer (= 3.2.8)
69+
actionpack (= 3.2.8)
70+
activerecord (= 3.2.8)
71+
activeresource (= 3.2.8)
72+
activesupport (= 3.2.8)
73+
bundler (~> 1.0)
74+
railties (= 3.2.8)
75+
railties (3.2.8)
76+
actionpack (= 3.2.8)
77+
activesupport (= 3.2.8)
78+
rack-ssl (~> 1.3.2)
79+
rake (>= 0.8.7)
80+
rdoc (~> 3.4)
81+
thor (>= 0.14.6, < 2.0)
82+
rake (0.9.2.2)
83+
rdoc (3.12)
84+
json (~> 1.4)
85+
sass (3.2.1)
86+
sass-rails (3.2.5)
87+
railties (~> 3.2.0)
88+
sass (>= 3.1.10)
89+
tilt (~> 1.3)
90+
sprockets (2.1.3)
91+
hike (~> 1.2)
92+
rack (~> 1.0)
93+
tilt (~> 1.1, != 1.3.0)
94+
sqlite3 (1.3.6)
95+
thor (0.16.0)
96+
tilt (1.3.3)
97+
treetop (1.4.10)
98+
polyglot
99+
polyglot (>= 0.3.1)
100+
tzinfo (0.3.33)
101+
uglifier (1.3.0)
102+
execjs (>= 0.3.0)
103+
multi_json (~> 1.0, >= 1.0.2)
104+
105+
PLATFORMS
106+
ruby
107+
108+
DEPENDENCIES
109+
coffee-rails (~> 3.2.1)
110+
jquery-rails
111+
jquery-ui-rails
112+
rails (= 3.2.8)
113+
sass-rails (~> 3.2.3)
114+
sqlite3
115+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)