Update poltergeist and should-matchers
This commit is contained in:
parent
5f7f35e8fe
commit
bbaa0fccfa
3 changed files with 14 additions and 24 deletions
4
Gemfile
4
Gemfile
|
@ -171,14 +171,14 @@ group :development, :test do
|
|||
gem 'rb-inotify', require: linux_only('rb-inotify')
|
||||
|
||||
# PhantomJS driver for Capybara
|
||||
gem 'poltergeist', git: 'https://github.com/jonleighton/poltergeist.git', ref: '9645b52009e258921b860d3b7601d00008b22c45'
|
||||
gem 'poltergeist', '~> 1.3.0'
|
||||
|
||||
gem 'spork', '~> 1.0rc'
|
||||
end
|
||||
|
||||
group :test do
|
||||
gem "simplecov", require: false
|
||||
gem "shoulda-matchers", "1.3.0"
|
||||
gem "shoulda-matchers", "~> 2.1.0"
|
||||
gem 'email_spec'
|
||||
gem "webmock"
|
||||
gem 'test_after_commit'
|
||||
|
|
30
Gemfile.lock
30
Gemfile.lock
|
@ -12,16 +12,6 @@ GIT
|
|||
specs:
|
||||
raphael-rails (2.1.0)
|
||||
|
||||
GIT
|
||||
remote: https://github.com/jonleighton/poltergeist.git
|
||||
revision: 9645b52009e258921b860d3b7601d00008b22c45
|
||||
ref: 9645b52009e258921b860d3b7601d00008b22c45
|
||||
specs:
|
||||
poltergeist (1.1.0)
|
||||
capybara (~> 2.0, >= 2.0.1)
|
||||
faye-websocket (~> 0.4, >= 0.4.4)
|
||||
http_parser.rb (~> 0.5.3)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
|
@ -103,7 +93,7 @@ GEM
|
|||
thor
|
||||
crack (0.3.2)
|
||||
daemons (1.1.9)
|
||||
database_cleaner (0.9.1)
|
||||
database_cleaner (1.0.1)
|
||||
debug_inspector (0.0.2)
|
||||
descendants_tracker (0.0.1)
|
||||
devise (2.2.4)
|
||||
|
@ -203,7 +193,7 @@ GEM
|
|||
lumberjack (>= 1.0.2)
|
||||
pry (>= 0.9.10)
|
||||
thor (>= 0.14.6)
|
||||
guard-rspec (2.6.0)
|
||||
guard-rspec (3.0.0)
|
||||
guard (>= 1.8)
|
||||
rspec (~> 2.13)
|
||||
guard-spinach (0.0.2)
|
||||
|
@ -246,7 +236,7 @@ GEM
|
|||
letter_opener (1.1.0)
|
||||
launchy (~> 2.2.0)
|
||||
libv8 (3.11.8.17)
|
||||
listen (1.0.3)
|
||||
listen (1.1.3)
|
||||
rb-fsevent (>= 0.9.3)
|
||||
rb-inotify (>= 0.9)
|
||||
rb-kqueue (>= 0.2)
|
||||
|
@ -293,9 +283,13 @@ GEM
|
|||
omniauth-oauth (~> 1.0)
|
||||
orm_adapter (0.4.0)
|
||||
pg (0.15.1)
|
||||
poltergeist (1.3.0)
|
||||
capybara (~> 2.1.0)
|
||||
faye-websocket (>= 0.4.4, < 0.5.0)
|
||||
http_parser.rb (~> 0.5.3)
|
||||
polyglot (0.3.3)
|
||||
posix-spawn (0.3.6)
|
||||
pry (0.9.12.1)
|
||||
pry (0.9.12.2)
|
||||
coderay (~> 1.0.5)
|
||||
method_source (~> 0.8)
|
||||
slop (~> 3.4)
|
||||
|
@ -414,7 +408,7 @@ GEM
|
|||
thor (~> 0.14)
|
||||
settingslogic (2.0.9)
|
||||
sexp_processor (4.2.1)
|
||||
shoulda-matchers (1.3.0)
|
||||
shoulda-matchers (2.1.0)
|
||||
activesupport (>= 3.0.0)
|
||||
sidekiq (2.12.0)
|
||||
celluloid (>= 0.14.0)
|
||||
|
@ -435,7 +429,7 @@ GEM
|
|||
slim (1.3.8)
|
||||
temple (~> 0.6.3)
|
||||
tilt (~> 1.3.3)
|
||||
slop (3.4.4)
|
||||
slop (3.4.5)
|
||||
spinach (0.8.2)
|
||||
colorize (= 0.5.8)
|
||||
gherkin-ruby (~> 0.3.0)
|
||||
|
@ -554,7 +548,7 @@ DEPENDENCIES
|
|||
omniauth-google-oauth2
|
||||
omniauth-twitter
|
||||
pg
|
||||
poltergeist!
|
||||
poltergeist (~> 1.3.0)
|
||||
pry
|
||||
puma (~> 2.0.1)
|
||||
quiet_assets (~> 1.0.1)
|
||||
|
@ -573,7 +567,7 @@ DEPENDENCIES
|
|||
seed-fu
|
||||
select2-rails
|
||||
settingslogic
|
||||
shoulda-matchers (= 1.3.0)
|
||||
shoulda-matchers (~> 2.1.0)
|
||||
sidekiq
|
||||
simplecov
|
||||
sinatra
|
||||
|
|
|
@ -61,10 +61,6 @@ describe Project do
|
|||
it { should ensure_length_of(:path).is_within(0..255) }
|
||||
it { should ensure_length_of(:description).is_within(0..2000) }
|
||||
it { should validate_presence_of(:creator) }
|
||||
it { should ensure_inclusion_of(:issues_enabled).in_array([true, false]) }
|
||||
it { should ensure_inclusion_of(:wall_enabled).in_array([true, false]) }
|
||||
it { should ensure_inclusion_of(:merge_requests_enabled).in_array([true, false]) }
|
||||
it { should ensure_inclusion_of(:wiki_enabled).in_array([true, false]) }
|
||||
it { should ensure_length_of(:issues_tracker_id).is_within(0..255) }
|
||||
|
||||
it "should not allow new projects beyond user limits" do
|
||||
|
|
Loading…
Reference in a new issue