Skip to content

Commit

Permalink
Install RSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
vaski committed Aug 13, 2012
1 parent 26e907d commit 6297297
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Expand Up @@ -7,6 +7,9 @@ gem 'rails', '3.2.7'

gem 'sqlite3'

group :development, :test do
gem 'rspec-rails', '~> 2.0'
end

# Gems used only for assets and not required
# in production environments by default.
Expand All @@ -20,6 +23,10 @@ group :assets do
gem 'uglifier', '>= 1.0.3'
end

group :test do
gem 'capybara', '~> 1.1.2'
end

gem 'jquery-rails'

# To use ActiveModel has_secure_password
Expand Down
38 changes: 38 additions & 0 deletions Gemfile.lock
Expand Up @@ -28,31 +28,46 @@ GEM
activesupport (3.2.7)
i18n (~> 0.6)
multi_json (~> 1.0)
addressable (2.3.2)
arel (3.0.2)
builder (3.0.0)
capybara (1.1.2)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
selenium-webdriver (~> 2.0)
xpath (~> 0.1.4)
childprocess (0.3.5)
ffi (~> 1.0, >= 1.0.6)
coffee-rails (3.2.2)
coffee-script (>= 2.2.0)
railties (~> 3.2.0)
coffee-script (2.2.0)
coffee-script-source
execjs
coffee-script-source (1.3.3)
diff-lcs (1.1.3)
erubis (2.7.0)
execjs (1.4.0)
multi_json (~> 1.0)
ffi (1.1.4)
hike (1.2.1)
i18n (0.6.0)
journey (1.0.4)
jquery-rails (2.0.2)
railties (>= 3.2.0, < 5.0)
thor (~> 0.14)
json (1.7.4)
libwebsocket (0.1.5)
addressable
mail (2.4.4)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.19)
multi_json (1.3.6)
nokogiri (1.5.5)
polyglot (0.3.3)
rack (1.4.1)
rack-cache (1.2)
Expand All @@ -79,11 +94,30 @@ GEM
rake (0.9.2.2)
rdoc (3.12)
json (~> 1.4)
rspec (2.11.0)
rspec-core (~> 2.11.0)
rspec-expectations (~> 2.11.0)
rspec-mocks (~> 2.11.0)
rspec-core (2.11.1)
rspec-expectations (2.11.1)
diff-lcs (~> 1.1.3)
rspec-mocks (2.11.1)
rspec-rails (2.11.0)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
rspec (~> 2.11.0)
rubyzip (0.9.9)
sass (3.2.0)
sass-rails (3.2.5)
railties (~> 3.2.0)
sass (>= 3.1.10)
tilt (~> 1.3)
selenium-webdriver (2.25.0)
childprocess (>= 0.2.5)
libwebsocket (~> 0.1.3)
multi_json (~> 1.0)
rubyzip
sprockets (2.1.3)
hike (~> 1.2)
rack (~> 1.0)
Expand All @@ -98,14 +132,18 @@ GEM
uglifier (1.2.7)
execjs (>= 0.3.0)
multi_json (~> 1.3)
xpath (0.1.4)
nokogiri (~> 1.3)

PLATFORMS
ruby

DEPENDENCIES
capybara (~> 1.1.2)
coffee-rails (~> 3.2.1)
jquery-rails
rails (= 3.2.7)
rspec-rails (~> 2.0)
sass-rails (~> 3.2.3)
sqlite3
uglifier (>= 1.0.3)

0 comments on commit 6297297

Please sign in to comment.