Skip to content

Commit ede1c18

Browse files
author
Chaitanya Vadrevu
committed
after rails new
0 parents  commit ede1c18

Some content is hidden

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

44 files changed

+1183
-0
lines changed

.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

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.16'
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

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.16)
5+
actionpack (= 3.2.16)
6+
mail (~> 2.5.4)
7+
actionpack (3.2.16)
8+
activemodel (= 3.2.16)
9+
activesupport (= 3.2.16)
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.16)
18+
activesupport (= 3.2.16)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.16)
21+
activemodel (= 3.2.16)
22+
activesupport (= 3.2.16)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.16)
26+
activemodel (= 3.2.16)
27+
activesupport (= 3.2.16)
28+
activesupport (3.2.16)
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.4.1)
37+
coffee-script-source
38+
execjs
39+
coffee-script-source (1.10.0)
40+
erubis (2.7.0)
41+
execjs (2.6.0)
42+
hike (1.2.3)
43+
i18n (0.7.0)
44+
journey (1.0.4)
45+
jquery-rails (3.1.4)
46+
railties (>= 3.0, < 5.0)
47+
thor (>= 0.14, < 2.0)
48+
json (1.8.3)
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.12.0)
54+
polyglot (0.3.5)
55+
rack (1.4.7)
56+
rack-cache (1.6.1)
57+
rack (>= 0.4)
58+
rack-ssl (1.3.4)
59+
rack
60+
rack-test (0.6.3)
61+
rack (>= 1.0)
62+
rails (3.2.16)
63+
actionmailer (= 3.2.16)
64+
actionpack (= 3.2.16)
65+
activerecord (= 3.2.16)
66+
activeresource (= 3.2.16)
67+
activesupport (= 3.2.16)
68+
bundler (~> 1.0)
69+
railties (= 3.2.16)
70+
railties (3.2.16)
71+
actionpack (= 3.2.16)
72+
activesupport (= 3.2.16)
73+
rack-ssl (~> 1.3.2)
74+
rake (>= 0.8.7)
75+
rdoc (~> 3.4)
76+
thor (>= 0.14.6, < 2.0)
77+
rake (11.1.2)
78+
rdoc (3.12.2)
79+
json (~> 1.4)
80+
sass (3.4.22)
81+
sass-rails (3.2.6)
82+
railties (~> 3.2.0)
83+
sass (>= 3.1.10)
84+
tilt (~> 1.3)
85+
sprockets (2.2.3)
86+
hike (~> 1.2)
87+
multi_json (~> 1.0)
88+
rack (~> 1.0)
89+
tilt (~> 1.1, != 1.3.0)
90+
sqlite3 (1.3.11)
91+
thor (0.19.1)
92+
tilt (1.4.1)
93+
treetop (1.4.15)
94+
polyglot
95+
polyglot (>= 0.3.1)
96+
tzinfo (0.3.49)
97+
uglifier (3.0.0)
98+
execjs (>= 0.3.0, < 3)
99+
100+
PLATFORMS
101+
ruby
102+
103+
DEPENDENCIES
104+
coffee-rails (~> 3.2.1)
105+
jquery-rails
106+
rails (= 3.2.16)
107+
sass-rails (~> 3.2.3)
108+
sqlite3
109+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)