Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ gem 'haml'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
gem 'less-rails'
gem "therubyracer"
gem 'faker'

group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
Expand All @@ -46,6 +47,19 @@ gem 'pry-rails'

gem 'ruby-progressbar'

group :test do
gem 'database_cleaner'
gem 'rspec'
gem 'rspec-rails'
gem 'capybara'
gem 'capybara-webkit'
gem 'capybara-firebug'
gem "selenium-webdriver"
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'shoulda-matchers'
end

# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

Expand Down
64 changes: 64 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,20 @@ GEM
arel (4.0.0)
atomic (1.1.9)
builder (3.1.4)
capybara (2.1.0)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
xpath (~> 2.0)
capybara-firebug (2.0.0)
capybara (>= 1.0, < 3.0)
selenium-webdriver
capybara-webkit (1.0.0)
capybara (~> 2.0, >= 2.0.2)
json
childprocess (0.3.9)
ffi (~> 1.0, >= 1.0.11)
coderay (1.0.9)
coffee-rails (4.0.0)
coffee-script (>= 2.2.0)
Expand All @@ -47,9 +61,19 @@ GEM
execjs
coffee-script-source (1.6.2)
commonjs (0.2.6)
database_cleaner (1.2.0)
diff-lcs (1.2.4)
erubis (2.7.0)
execjs (1.4.0)
multi_json (~> 1.0)
factory_girl (4.2.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.2.1)
factory_girl (~> 4.2.0)
railties (>= 3.0.0)
faker (1.2.0)
i18n (~> 0.5)
ffi (1.9.0)
haml (4.0.3)
tilt
hike (1.2.2)
Expand All @@ -71,8 +95,11 @@ GEM
treetop (~> 1.4.8)
method_source (0.8.1)
mime-types (1.23)
mini_portile (0.5.2)
minitest (4.7.4)
multi_json (1.7.4)
nokogiri (1.6.0)
mini_portile (~> 0.5.0)
pg (0.15.1)
polyglot (0.3.3)
pry (0.9.12.2)
Expand Down Expand Up @@ -104,7 +131,23 @@ GEM
rdoc (3.12.2)
json (~> 1.4)
ref (1.0.5)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
rspec-core (2.14.6)
rspec-expectations (2.14.3)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.4)
rspec-rails (2.14.0)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
ruby-progressbar (1.1.1)
rubyzip (1.0.0)
sass (3.2.9)
sass-rails (4.0.0.rc1)
railties (>= 4.0.0.beta, < 5.0)
Expand All @@ -114,6 +157,13 @@ GEM
sdoc (0.3.20)
json (>= 1.1.3)
rdoc (~> 3.10)
selenium-webdriver (2.37.0)
childprocess (>= 0.2.5)
multi_json (~> 1.0)
rubyzip (~> 1.0.0)
websocket (~> 1.0.4)
shoulda-matchers (2.4.0)
activesupport (>= 3.0.0)
slop (3.4.5)
sprockets (2.10.0)
hike (~> 1.2)
Expand Down Expand Up @@ -141,13 +191,23 @@ GEM
uglifier (2.1.1)
execjs (>= 0.3.0)
multi_json (~> 1.0, >= 1.0.2)
websocket (1.0.7)
xpath (2.0.0)
nokogiri (~> 1.3)
yard (0.8.7)

PLATFORMS
ruby

DEPENDENCIES
capybara
capybara-firebug
capybara-webkit
coffee-rails (~> 4.0.0)
database_cleaner
factory_girl
factory_girl_rails
faker
haml
jbuilder (~> 1.0.1)
jquery-rails
Expand All @@ -157,9 +217,13 @@ DEPENDENCIES
pry-doc
pry-rails
rails (= 4.0.0.rc1)
rspec
rspec-rails
ruby-progressbar
sass-rails (~> 4.0.0.rc1)
sdoc
selenium-webdriver
shoulda-matchers
sqlite3
therubyracer
turbolinks
Expand Down
Loading