Skip to content

Commit 0c3ad86

Browse files
initial commit
0 parents  commit 0c3ad86

File tree

95 files changed

+1679
-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.

95 files changed

+1679
-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

.rvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rvm use ruby-1.9.3-p125@crawling_counter --create

Gemfile

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 'mysql2'
9+
gem "omniauth"
10+
gem "omniauth-twitter"
11+
gem 'haml'
12+
13+
14+
# Gems used only for assets and not required
15+
# in production environments by default.
16+
17+
group :assets do
18+
gem 'coffee-rails', '~> 3.2.1'
19+
gem 'compass-rails'
20+
gem 'compass_twitter_bootstrap'
21+
gem 'font-awesome-sass-rails'
22+
gem 'jquery-ui-rails'
23+
gem 'sass-rails', '= 3.2.3'
24+
gem 'uglifier', '>= 1.0.3'
25+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
26+
gem 'therubyracer', :platforms => :ruby
27+
end
28+
29+
gem 'jquery-rails'
30+
31+
# To use ActiveModel has_secure_password
32+
# gem 'bcrypt-ruby', '~> 3.0.0'
33+
34+
# To use Jbuilder templates for JSON
35+
# gem 'jbuilder'
36+
37+
# Use unicorn as the app server
38+
# gem 'unicorn'
39+
40+
# Deploy with Capistrano
41+
# gem 'capistrano'
42+
43+
# To use debugger
44+
# gem 'debugger'

Gemfile.lock

+150
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
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.4)
33+
chunky_png (1.2.6)
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.4.0)
41+
compass (0.12.2)
42+
chunky_png (~> 1.2)
43+
fssm (>= 0.2.7)
44+
sass (~> 3.1)
45+
compass-rails (1.0.3)
46+
compass (>= 0.12.2, < 0.14)
47+
compass_twitter_bootstrap (2.0.3)
48+
compass
49+
erubis (2.7.0)
50+
execjs (1.4.0)
51+
multi_json (~> 1.0)
52+
font-awesome-sass-rails (2.0.0.0)
53+
railties (>= 3.1.1)
54+
sass-rails (>= 3.1.1)
55+
fssm (0.2.9)
56+
haml (3.1.7)
57+
hashie (1.2.0)
58+
hike (1.2.1)
59+
i18n (0.6.1)
60+
journey (1.0.4)
61+
jquery-rails (2.1.4)
62+
railties (>= 3.0, < 5.0)
63+
thor (>= 0.14, < 2.0)
64+
jquery-ui-rails (2.0.2)
65+
jquery-rails
66+
railties (>= 3.1.0)
67+
json (1.7.5)
68+
libv8 (3.3.10.4)
69+
mail (2.4.4)
70+
i18n (>= 0.4.0)
71+
mime-types (~> 1.16)
72+
treetop (~> 1.4.8)
73+
mime-types (1.19)
74+
multi_json (1.3.7)
75+
mysql2 (0.3.11)
76+
oauth (0.4.7)
77+
omniauth (1.1.1)
78+
hashie (~> 1.2)
79+
rack
80+
omniauth-oauth (1.0.1)
81+
oauth
82+
omniauth (~> 1.0)
83+
omniauth-twitter (0.0.14)
84+
multi_json (~> 1.3)
85+
omniauth-oauth (~> 1.0)
86+
polyglot (0.3.3)
87+
rack (1.4.1)
88+
rack-cache (1.2)
89+
rack (>= 0.4)
90+
rack-ssl (1.3.2)
91+
rack
92+
rack-test (0.6.2)
93+
rack (>= 1.0)
94+
rails (3.2.6)
95+
actionmailer (= 3.2.6)
96+
actionpack (= 3.2.6)
97+
activerecord (= 3.2.6)
98+
activeresource (= 3.2.6)
99+
activesupport (= 3.2.6)
100+
bundler (~> 1.0)
101+
railties (= 3.2.6)
102+
railties (3.2.6)
103+
actionpack (= 3.2.6)
104+
activesupport (= 3.2.6)
105+
rack-ssl (~> 1.3.2)
106+
rake (>= 0.8.7)
107+
rdoc (~> 3.4)
108+
thor (>= 0.14.6, < 2.0)
109+
rake (10.0.2)
110+
rdoc (3.12)
111+
json (~> 1.4)
112+
sass (3.2.3)
113+
sass-rails (3.2.3)
114+
railties (~> 3.2.0.beta)
115+
sass (>= 3.1.10)
116+
tilt (~> 1.3)
117+
sprockets (2.1.3)
118+
hike (~> 1.2)
119+
rack (~> 1.0)
120+
tilt (~> 1.1, != 1.3.0)
121+
therubyracer (0.10.2)
122+
libv8 (~> 3.3.10)
123+
thor (0.16.0)
124+
tilt (1.3.3)
125+
treetop (1.4.12)
126+
polyglot
127+
polyglot (>= 0.3.1)
128+
tzinfo (0.3.35)
129+
uglifier (1.3.0)
130+
execjs (>= 0.3.0)
131+
multi_json (~> 1.0, >= 1.0.2)
132+
133+
PLATFORMS
134+
ruby
135+
136+
DEPENDENCIES
137+
coffee-rails (~> 3.2.1)
138+
compass-rails
139+
compass_twitter_bootstrap
140+
font-awesome-sass-rails
141+
haml
142+
jquery-rails
143+
jquery-ui-rails
144+
mysql2
145+
omniauth
146+
omniauth-twitter
147+
rails (= 3.2.6)
148+
sass-rails (= 3.2.3)
149+
therubyracer
150+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)