Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository has been archived by the owner. It is now read-only.

Commit 4a8b323

Browse files
committed
First commit
0 parents  commit 4a8b323

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

+1356
-0
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
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

.rspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--color

.rvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rvm use 1.9.3@libertador --create

Gemfile

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.11'
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+
14+
group :development, :test do
15+
gem 'rspec-rails'
16+
gem 'capybara', :git => 'git://github.com/jnicklas/capybara.git'
17+
gem 'factory_girl_rails'
18+
gem 'launchy'
19+
gem 'database_cleaner'
20+
end
21+
22+
group :assets do
23+
gem 'sass-rails', '~> 3.2.3'
24+
gem 'coffee-rails', '~> 3.2.1'
25+
26+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
27+
# gem 'therubyracer', :platforms => :ruby
28+
29+
gem 'uglifier', '>= 1.0.3'
30+
end
31+
32+
gem 'jquery-rails'
33+
34+
# To use ActiveModel has_secure_password
35+
# gem 'bcrypt-ruby', '~> 3.0.0'
36+
37+
# To use Jbuilder templates for JSON
38+
# gem 'jbuilder'
39+
40+
# Use unicorn as the app server
41+
# gem 'unicorn'
42+
43+
# Deploy with Capistrano
44+
# gem 'capistrano'
45+
46+
# To use debugger
47+
# gem 'debugger'

Gemfile.lock

Lines changed: 163 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
GIT
2+
remote: git://github.com/jnicklas/capybara.git
3+
revision: 8368069cfd059fbb5d04e2dff0e610005a476fa6
4+
specs:
5+
capybara (2.0.2)
6+
mime-types (>= 1.16)
7+
nokogiri (>= 1.3.3)
8+
rack (>= 1.0.0)
9+
rack-test (>= 0.5.4)
10+
selenium-webdriver (~> 2.0)
11+
xpath (~> 1.0.0)
12+
13+
GEM
14+
remote: https://rubygems.org/
15+
specs:
16+
actionmailer (3.2.11)
17+
actionpack (= 3.2.11)
18+
mail (~> 2.4.4)
19+
actionpack (3.2.11)
20+
activemodel (= 3.2.11)
21+
activesupport (= 3.2.11)
22+
builder (~> 3.0.0)
23+
erubis (~> 2.7.0)
24+
journey (~> 1.0.4)
25+
rack (~> 1.4.0)
26+
rack-cache (~> 1.2)
27+
rack-test (~> 0.6.1)
28+
sprockets (~> 2.2.1)
29+
activemodel (3.2.11)
30+
activesupport (= 3.2.11)
31+
builder (~> 3.0.0)
32+
activerecord (3.2.11)
33+
activemodel (= 3.2.11)
34+
activesupport (= 3.2.11)
35+
arel (~> 3.0.2)
36+
tzinfo (~> 0.3.29)
37+
activeresource (3.2.11)
38+
activemodel (= 3.2.11)
39+
activesupport (= 3.2.11)
40+
activesupport (3.2.11)
41+
i18n (~> 0.6)
42+
multi_json (~> 1.0)
43+
addressable (2.3.2)
44+
arel (3.0.2)
45+
builder (3.0.4)
46+
childprocess (0.3.6)
47+
ffi (~> 1.0, >= 1.0.6)
48+
coffee-rails (3.2.2)
49+
coffee-script (>= 2.2.0)
50+
railties (~> 3.2.0)
51+
coffee-script (2.2.0)
52+
coffee-script-source
53+
execjs
54+
coffee-script-source (1.4.0)
55+
database_cleaner (0.9.1)
56+
diff-lcs (1.1.3)
57+
erubis (2.7.0)
58+
execjs (1.4.0)
59+
multi_json (~> 1.0)
60+
factory_girl (4.1.0)
61+
activesupport (>= 3.0.0)
62+
factory_girl_rails (4.1.0)
63+
factory_girl (~> 4.1.0)
64+
railties (>= 3.0.0)
65+
ffi (1.3.1)
66+
hike (1.2.1)
67+
i18n (0.6.1)
68+
journey (1.0.4)
69+
jquery-rails (2.2.0)
70+
railties (>= 3.0, < 5.0)
71+
thor (>= 0.14, < 2.0)
72+
json (1.7.6)
73+
launchy (2.1.2)
74+
addressable (~> 2.3)
75+
mail (2.4.4)
76+
i18n (>= 0.4.0)
77+
mime-types (~> 1.16)
78+
treetop (~> 1.4.8)
79+
mime-types (1.19)
80+
multi_json (1.5.0)
81+
nokogiri (1.5.6)
82+
polyglot (0.3.3)
83+
rack (1.4.4)
84+
rack-cache (1.2)
85+
rack (>= 0.4)
86+
rack-ssl (1.3.2)
87+
rack
88+
rack-test (0.6.2)
89+
rack (>= 1.0)
90+
rails (3.2.11)
91+
actionmailer (= 3.2.11)
92+
actionpack (= 3.2.11)
93+
activerecord (= 3.2.11)
94+
activeresource (= 3.2.11)
95+
activesupport (= 3.2.11)
96+
bundler (~> 1.0)
97+
railties (= 3.2.11)
98+
railties (3.2.11)
99+
actionpack (= 3.2.11)
100+
activesupport (= 3.2.11)
101+
rack-ssl (~> 1.3.2)
102+
rake (>= 0.8.7)
103+
rdoc (~> 3.4)
104+
thor (>= 0.14.6, < 2.0)
105+
rake (10.0.3)
106+
rdoc (3.12)
107+
json (~> 1.4)
108+
rspec-core (2.12.2)
109+
rspec-expectations (2.12.1)
110+
diff-lcs (~> 1.1.3)
111+
rspec-mocks (2.12.1)
112+
rspec-rails (2.12.2)
113+
actionpack (>= 3.0)
114+
activesupport (>= 3.0)
115+
railties (>= 3.0)
116+
rspec-core (~> 2.12.0)
117+
rspec-expectations (~> 2.12.0)
118+
rspec-mocks (~> 2.12.0)
119+
rubyzip (0.9.9)
120+
sass (3.2.5)
121+
sass-rails (3.2.6)
122+
railties (~> 3.2.0)
123+
sass (>= 3.1.10)
124+
tilt (~> 1.3)
125+
selenium-webdriver (2.29.0)
126+
childprocess (>= 0.2.5)
127+
multi_json (~> 1.0)
128+
rubyzip
129+
websocket (~> 1.0.4)
130+
sprockets (2.2.2)
131+
hike (~> 1.2)
132+
multi_json (~> 1.0)
133+
rack (~> 1.0)
134+
tilt (~> 1.1, != 1.3.0)
135+
sqlite3 (1.3.7)
136+
thor (0.16.0)
137+
tilt (1.3.3)
138+
treetop (1.4.12)
139+
polyglot
140+
polyglot (>= 0.3.1)
141+
tzinfo (0.3.35)
142+
uglifier (1.3.0)
143+
execjs (>= 0.3.0)
144+
multi_json (~> 1.0, >= 1.0.2)
145+
websocket (1.0.6)
146+
xpath (1.0.0)
147+
nokogiri (~> 1.3)
148+
149+
PLATFORMS
150+
ruby
151+
152+
DEPENDENCIES
153+
capybara!
154+
coffee-rails (~> 3.2.1)
155+
database_cleaner
156+
factory_girl_rails
157+
jquery-rails
158+
launchy
159+
rails (= 3.2.11)
160+
rspec-rails
161+
sass-rails (~> 3.2.3)
162+
sqlite3
163+
uglifier (>= 1.0.3)

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)