Skip to content

Commit c597722

Browse files
author
Chad Arimura
committed
* Initial commit
0 parents  commit c597722

Some content is hidden

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

55 files changed

+10486
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.bundle
2+
db/*.sqlite3
3+
log/*.log
4+
tmp/

Gemfile

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '3.0.7'
4+
5+
gem "mongoid", "~> 2.0"
6+
gem "bson_ext", "~> 1.3"
7+
8+
gem "twitter"
9+
gem "simple_worker"
10+
gem "rest-client"
11+
12+
13+
14+
# Bundle edge Rails instead:
15+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
16+
17+
#gem 'sqlite3'
18+
19+
# Use unicorn as the web server
20+
# gem 'unicorn'
21+
22+
# Deploy with Capistrano
23+
# gem 'capistrano'
24+
25+
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
26+
# gem 'ruby-debug'
27+
# gem 'ruby-debug19', :require => 'ruby-debug'
28+
29+
# Bundle the extra gems:
30+
# gem 'bj'
31+
# gem 'nokogiri'
32+
# gem 'sqlite3-ruby', :require => 'sqlite3'
33+
# gem 'aws-s3', :require => 'aws/s3'
34+
35+
# Bundle gems for the local environment. Make sure to
36+
# put test-only gems in this group so their generators
37+
# and rake tasks are available in development mode:
38+
# group :development, :test do
39+
# gem 'webrat'
40+
# end

Gemfile.lock

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
abstract (1.0.0)
5+
actionmailer (3.0.7)
6+
actionpack (= 3.0.7)
7+
mail (~> 2.2.15)
8+
actionpack (3.0.7)
9+
activemodel (= 3.0.7)
10+
activesupport (= 3.0.7)
11+
builder (~> 2.1.2)
12+
erubis (~> 2.6.6)
13+
i18n (~> 0.5.0)
14+
rack (~> 1.2.1)
15+
rack-mount (~> 0.6.14)
16+
rack-test (~> 0.5.7)
17+
tzinfo (~> 0.3.23)
18+
activemodel (3.0.7)
19+
activesupport (= 3.0.7)
20+
builder (~> 2.1.2)
21+
i18n (~> 0.5.0)
22+
activerecord (3.0.7)
23+
activemodel (= 3.0.7)
24+
activesupport (= 3.0.7)
25+
arel (~> 2.0.2)
26+
tzinfo (~> 0.3.23)
27+
activeresource (3.0.7)
28+
activemodel (= 3.0.7)
29+
activesupport (= 3.0.7)
30+
activesupport (3.0.7)
31+
addressable (2.2.6)
32+
appoxy_api (0.0.11)
33+
rest-client
34+
arel (2.0.10)
35+
bson (1.3.1)
36+
bson_ext (1.3.1)
37+
builder (2.1.2)
38+
erubis (2.6.6)
39+
abstract (>= 1.0.0)
40+
faraday (0.6.1)
41+
addressable (~> 2.2.4)
42+
multipart-post (~> 1.1.0)
43+
rack (>= 1.1.0, < 2)
44+
faraday_middleware (0.6.3)
45+
faraday (~> 0.6.0)
46+
hashie (1.0.0)
47+
i18n (0.5.0)
48+
mail (2.2.19)
49+
activesupport (>= 2.3.6)
50+
i18n (>= 0.4.0)
51+
mime-types (~> 1.16)
52+
treetop (~> 1.4.8)
53+
mime-types (1.16)
54+
mongo (1.3.1)
55+
bson (>= 1.3.1)
56+
mongoid (2.0.2)
57+
activemodel (~> 3.0)
58+
mongo (~> 1.3)
59+
tzinfo (~> 0.3.22)
60+
multi_json (1.0.2)
61+
multi_xml (0.2.2)
62+
multipart-post (1.1.1)
63+
polyglot (0.3.1)
64+
rack (1.2.2)
65+
rack-mount (0.6.14)
66+
rack (>= 1.0.0)
67+
rack-test (0.5.7)
68+
rack (>= 1.0)
69+
rails (3.0.7)
70+
actionmailer (= 3.0.7)
71+
actionpack (= 3.0.7)
72+
activerecord (= 3.0.7)
73+
activeresource (= 3.0.7)
74+
activesupport (= 3.0.7)
75+
bundler (~> 1.0)
76+
railties (= 3.0.7)
77+
railties (3.0.7)
78+
actionpack (= 3.0.7)
79+
activesupport (= 3.0.7)
80+
rake (>= 0.8.7)
81+
thor (~> 0.14.4)
82+
rake (0.9.0)
83+
rash (0.3.0)
84+
hashie (~> 1.0.0)
85+
rest-client (1.6.1)
86+
mime-types (>= 1.16)
87+
simple_oauth (0.1.5)
88+
simple_worker (0.5.8)
89+
appoxy_api (>= 0.0.11)
90+
zip
91+
thor (0.14.6)
92+
treetop (1.4.9)
93+
polyglot (>= 0.3.1)
94+
twitter (1.4.1)
95+
faraday (~> 0.6.1)
96+
faraday_middleware (~> 0.6.3)
97+
hashie (~> 1.0.0)
98+
multi_json (~> 1.0.0)
99+
multi_xml (~> 0.2.0)
100+
rash (~> 0.3.0)
101+
simple_oauth (~> 0.1.4)
102+
tzinfo (0.3.27)
103+
zip (2.0.2)
104+
105+
PLATFORMS
106+
ruby
107+
108+
DEPENDENCIES
109+
bson_ext (~> 1.3)
110+
mongoid (~> 2.0)
111+
rails (= 3.0.7)
112+
rest-client
113+
simple_worker
114+
twitter

0 commit comments

Comments
 (0)