Skip to content

Commit a585227

Browse files
author
Javier Muniz
committed
initialize repo
0 parents  commit a585227

Some content is hidden

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

71 files changed

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

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

Gemfile.lock

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
abstract (1.0.0)
5+
actionmailer (3.0.8)
6+
actionpack (= 3.0.8)
7+
mail (~> 2.2.19)
8+
actionpack (3.0.8)
9+
activemodel (= 3.0.8)
10+
activesupport (= 3.0.8)
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.8)
19+
activesupport (= 3.0.8)
20+
builder (~> 2.1.2)
21+
i18n (~> 0.5.0)
22+
activerecord (3.0.8)
23+
activemodel (= 3.0.8)
24+
activesupport (= 3.0.8)
25+
arel (~> 2.0.10)
26+
tzinfo (~> 0.3.23)
27+
activeresource (3.0.8)
28+
activemodel (= 3.0.8)
29+
activesupport (= 3.0.8)
30+
activesupport (3.0.8)
31+
addressable (2.2.6)
32+
arel (2.0.10)
33+
bson (1.3.1)
34+
bson_ext (1.3.1)
35+
builder (2.1.2)
36+
erubis (2.6.6)
37+
abstract (>= 1.0.0)
38+
faraday (0.6.1)
39+
addressable (~> 2.2.4)
40+
multipart-post (~> 1.1.0)
41+
rack (< 2, >= 1.1.0)
42+
faraday_middleware (0.6.3)
43+
faraday (~> 0.6.0)
44+
hashie (1.0.0)
45+
i18n (0.5.0)
46+
jquery-rails (1.0.9)
47+
railties (~> 3.0)
48+
thor (~> 0.14)
49+
mail (2.2.19)
50+
activesupport (>= 2.3.6)
51+
i18n (>= 0.4.0)
52+
mime-types (~> 1.16)
53+
treetop (~> 1.4.8)
54+
mime-types (1.16)
55+
mongo (1.3.1)
56+
bson (>= 1.3.1)
57+
mongoid (2.0.2)
58+
activemodel (~> 3.0)
59+
mongo (~> 1.3)
60+
tzinfo (~> 0.3.22)
61+
multi_xml (0.2.2)
62+
multipart-post (1.1.2)
63+
polyglot (0.3.1)
64+
rack (1.2.3)
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.8)
70+
actionmailer (= 3.0.8)
71+
actionpack (= 3.0.8)
72+
activerecord (= 3.0.8)
73+
activeresource (= 3.0.8)
74+
activesupport (= 3.0.8)
75+
bundler (~> 1.0)
76+
railties (= 3.0.8)
77+
railties (3.0.8)
78+
actionpack (= 3.0.8)
79+
activesupport (= 3.0.8)
80+
rake (>= 0.8.7)
81+
thor (~> 0.14.4)
82+
rake (0.9.2)
83+
scrumninja (0.1.1)
84+
faraday_middleware (~> 0.6.0)
85+
hashie (~> 1.0.0)
86+
multi_xml (~> 0.2.0)
87+
sqlite3 (1.3.3)
88+
thor (0.14.6)
89+
treetop (1.4.9)
90+
polyglot (>= 0.3.1)
91+
tzinfo (0.3.27)
92+
93+
PLATFORMS
94+
ruby
95+
96+
DEPENDENCIES
97+
bson_ext (~> 1.3)
98+
jquery-rails
99+
mongoid (~> 2.0)
100+
rails (= 3.0.8)
101+
scrumninja
102+
sqlite3

0 commit comments

Comments
 (0)