Skip to content

Commit

Permalink
Merge pull request #83 from tsellers-r7/update_recog
Browse files Browse the repository at this point in the history
Require Recog 2.3.8
  • Loading branch information
tsellers-r7 committed Jun 3, 2020
2 parents 8266da5 + 1e5c42d commit fe6f3f8
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 27 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Expand Up @@ -4,3 +4,13 @@

# Ignore geoip data file
data/geoip.dat

/pkg/

## Environment normalization:
/.bundle/
/vendor/bundle
/lib/bundler/man/

# Misc
**/.DS_Store
1 change: 1 addition & 0 deletions Dockerfile
@@ -1,5 +1,6 @@
FROM ubuntu:latest

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y \
ca-certificates \
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.testing
@@ -1,6 +1,8 @@
FROM ubuntu:18.04

ENV TEST_DIR /opt/bats_testing

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y build-essential ca-certificates curl git jq libffi-dev libgeoip-dev libxml2-dev wget zlib1g-dev

Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Expand Up @@ -6,10 +6,10 @@ gem 'net-dns'
gem 'bit-struct'
gem 'geoip-c'
gem 'maxmind-db', '~> 1.0.0'
gem 'recog', '>=2.3.0'
gem 'recog', '>=2.3.8'

group :test do
gem 'rspec', '~> 3.1.0'
gem 'rspec', '~> 3.9.0'
gem 'cucumber', '~> 1.3.16'
gem 'aruba', '~> 0.6.1'
end
45 changes: 22 additions & 23 deletions Gemfile.lock
Expand Up @@ -6,43 +6,42 @@ GEM
cucumber (>= 1.1.1)
rspec-expectations (>= 2.7.0)
bit-struct (0.16)
builder (3.2.2)
childprocess (0.5.8)
ffi (~> 1.0, >= 1.0.11)
builder (3.2.4)
childprocess (3.0.0)
cucumber (1.3.20)
builder (>= 2.1.2)
diff-lcs (>= 1.1.3)
gherkin (~> 2.12)
multi_json (>= 1.7.5, < 2.0)
multi_test (>= 0.1.2)
diff-lcs (1.2.5)
ffi (1.11.3)
diff-lcs (1.3)
geoip-c (0.9.1)
gherkin (2.12.2)
multi_json (~> 1.3)
htmlentities (4.3.4)
maxmind-db (1.0.0)
mini_portile2 (2.4.0)
multi_json (1.11.2)
multi_json (1.14.1)
multi_test (0.1.2)
net-dns (0.9.0)
nokogiri (1.10.8)
nokogiri (1.10.9)
mini_portile2 (~> 2.4.0)
oj (3.7.9)
recog (2.3.0)
oj (3.10.6)
recog (2.3.8)
nokogiri
rspec (3.1.0)
rspec-core (~> 3.1.0)
rspec-expectations (~> 3.1.0)
rspec-mocks (~> 3.1.0)
rspec-core (3.1.7)
rspec-support (~> 3.1.0)
rspec-expectations (3.1.2)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.2)
rspec-support (~> 3.9.3)
rspec-expectations (3.9.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.1.0)
rspec-mocks (3.1.3)
rspec-support (~> 3.1.0)
rspec-support (3.1.2)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.3)

PLATFORMS
ruby
Expand All @@ -56,8 +55,8 @@ DEPENDENCIES
maxmind-db (~> 1.0.0)
net-dns
oj
recog (>= 2.3.0)
rspec (~> 3.1.0)
recog (>= 2.3.8)
rspec (~> 3.9.0)

BUNDLED WITH
2.0.1
2.0.2
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -19,4 +19,4 @@ Cucumber::Rake::Task.new(:features) do |t|
end

task :default => [ :spec, :features, :yard ]

task :tests => [ :spec ]
2 changes: 1 addition & 1 deletion lib/dap/version.rb
@@ -1,3 +1,3 @@
module Dap
VERSION = "1.2.6"
VERSION = "1.2.7"
end

0 comments on commit fe6f3f8

Please sign in to comment.