Skip to content

Commit 1d1331a

Browse files
committed
Deps update.
1 parent aa9aaf8 commit 1d1331a

File tree

11 files changed

+150
-62
lines changed

11 files changed

+150
-62
lines changed

police-dataflow/Gemfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ source 'https://rubygems.org'
33
gem 'police-vminfo', '>= 0.0.2', path: '../police-vminfo'
44

55
group :development do
6-
gem 'bundler', '>= 1.1.0'
7-
gem 'jeweler', '>= 1.8.3'
8-
gem 'minitest', '>= 2.11.2'
9-
gem 'rdoc', '>= 3.12'
10-
gem 'simplecov', '>= 0.6.1'
11-
gem 'yard', '>= 0.7'
6+
gem 'bundler', '>= 1.3.5'
7+
gem 'jeweler', '>= 1.8.7'
8+
gem 'minitest', '>= 5.0.7'
9+
gem 'simplecov', '>= 0.7.1'
10+
gem 'yard', '>= 0.8.7.1'
1211
end

police-dataflow/Gemfile.lock

Lines changed: 42 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,34 +6,63 @@ PATH
66
GEM
77
remote: https://rubygems.org/
88
specs:
9-
git (1.2.5)
10-
jeweler (1.8.4)
9+
addressable (2.3.5)
10+
builder (3.2.2)
11+
faraday (0.8.8)
12+
multipart-post (~> 1.2.0)
13+
git (1.2.6)
14+
github_api (0.10.1)
15+
addressable
16+
faraday (~> 0.8.1)
17+
hashie (>= 1.2)
18+
multi_json (~> 1.4)
19+
nokogiri (~> 1.5.2)
20+
oauth2
21+
hashie (2.0.5)
22+
highline (1.6.19)
23+
httpauth (0.2.0)
24+
jeweler (1.8.7)
25+
builder
1126
bundler (~> 1.0)
1227
git (>= 1.2.5)
28+
github_api (= 0.10.1)
29+
highline (>= 1.6.15)
30+
nokogiri (= 1.5.10)
1331
rake
1432
rdoc
15-
json (1.7.7)
16-
json (1.7.7-java)
17-
minitest (4.7.4)
33+
json (1.8.0)
34+
jwt (0.1.8)
35+
multi_json (>= 1.5)
36+
minitest (5.0.7)
1837
multi_json (1.7.3)
19-
rake (10.0.4)
38+
multi_xml (0.5.5)
39+
multipart-post (1.2.0)
40+
nokogiri (1.5.10)
41+
oauth2 (0.9.2)
42+
faraday (~> 0.8)
43+
httpauth (~> 0.2)
44+
jwt (~> 0.1.4)
45+
multi_json (~> 1.0)
46+
multi_xml (~> 0.5)
47+
rack (~> 1.2)
48+
rack (1.5.2)
49+
rake (10.1.0)
2050
rdoc (4.0.1)
2151
json (~> 1.4)
2252
simplecov (0.7.1)
2353
multi_json (~> 1.0)
2454
simplecov-html (~> 0.7.1)
2555
simplecov-html (0.7.1)
26-
yard (0.8.6.1)
56+
yard (0.8.7.1)
2757

2858
PLATFORMS
2959
java
3060
ruby
3161

3262
DEPENDENCIES
33-
bundler (>= 1.1.0)
34-
jeweler (>= 1.8.3)
35-
minitest (>= 2.11.2)
63+
bundler (>= 1.3.5)
64+
jeweler (>= 1.8.7)
65+
minitest (>= 5.0.7)
3666
police-vminfo (>= 0.0.2)!
37-
rdoc (>= 3.12)
38-
simplecov (>= 0.6.1)
39-
yard (>= 0.7)
67+
simplecov (>= 0.7.1)
68+
yard (>= 0.8.7.1)

police-dataflow/lib/police/dataflow/gating.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ def self.gate_instance_method(module_object, method)
6060
module_object.protected_method_defined?(alias_name)
6161
raise RuntimeError, "#{method.inspect} was already gated"
6262
end
63+
64+
# TODO(pwnall): finish this code
6365
end
6466
end # namespace Police::DataFlow::Guarding
6567

police-dataflow/test/helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
$stderr.puts "Run `bundle install` to install missing gems"
88
exit e.status_code
99
end
10-
require 'minitest/unit'
10+
require 'minitest/autorun'
1111
require 'minitest/spec'
1212

1313
$LOAD_PATH.unshift(File.dirname(__FILE__))

police-rack/Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ group :development do
99
gem 'jeweler', '>= 1.8.3'
1010
gem 'minitest', '>= 2.11.2'
1111
gem 'rack-test', '>= 0.6.1'
12-
gem 'rdoc', '>= 3.12'
1312
gem 'simplecov', '>= 0.6.1'
1413
gem 'yard', '>= 0.7'
1514
end

police-rack/Gemfile.lock

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,5 @@ DEPENDENCIES
4343
police-labels (>= 0.0.1)!
4444
rack (>= 1.4.1)
4545
rack-test (>= 0.6.1)
46-
rdoc (>= 3.12)
4746
simplecov (>= 0.6.1)
4847
yard (>= 0.7)

police-vminfo/Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ source 'https://rubygems.org'
22

33
group :development do
44
gem 'bundler', '>= 1.3.5'
5-
gem 'jeweler', '>= 1.8.4'
6-
gem 'minitest', '>= 4.7.4'
5+
gem 'jeweler', '>= 1.8.7'
6+
gem 'minitest', '>= 5.0.7'
77
gem 'simplecov', '>= 0.7.1'
8-
gem 'yard', '>= 0.8.6.1'
8+
gem 'yard', '>= 0.8.7.1'
99
end

police-vminfo/Gemfile.lock

Lines changed: 41 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,61 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
git (1.2.5)
5-
jeweler (1.8.4)
4+
addressable (2.3.5)
5+
builder (3.2.2)
6+
faraday (0.8.8)
7+
multipart-post (~> 1.2.0)
8+
git (1.2.6)
9+
github_api (0.10.1)
10+
addressable
11+
faraday (~> 0.8.1)
12+
hashie (>= 1.2)
13+
multi_json (~> 1.4)
14+
nokogiri (~> 1.5.2)
15+
oauth2
16+
hashie (2.0.5)
17+
highline (1.6.19)
18+
httpauth (0.2.0)
19+
jeweler (1.8.7)
20+
builder
621
bundler (~> 1.0)
722
git (>= 1.2.5)
23+
github_api (= 0.10.1)
24+
highline (>= 1.6.15)
25+
nokogiri (= 1.5.10)
826
rake
927
rdoc
10-
json (1.7.7)
11-
minitest (4.7.4)
12-
multi_json (1.7.3)
13-
rake (10.0.4)
28+
json (1.8.0)
29+
jwt (0.1.8)
30+
multi_json (>= 1.5)
31+
minitest (5.0.7)
32+
multi_json (1.8.0)
33+
multi_xml (0.5.5)
34+
multipart-post (1.2.0)
35+
nokogiri (1.5.10)
36+
oauth2 (0.9.2)
37+
faraday (~> 0.8)
38+
httpauth (~> 0.2)
39+
jwt (~> 0.1.4)
40+
multi_json (~> 1.0)
41+
multi_xml (~> 0.5)
42+
rack (~> 1.2)
43+
rack (1.5.2)
44+
rake (10.1.0)
1445
rdoc (4.0.1)
1546
json (~> 1.4)
1647
simplecov (0.7.1)
1748
multi_json (~> 1.0)
1849
simplecov-html (~> 0.7.1)
1950
simplecov-html (0.7.1)
20-
yard (0.8.6.1)
51+
yard (0.8.7.1)
2152

2253
PLATFORMS
2354
ruby
2455

2556
DEPENDENCIES
2657
bundler (>= 1.3.5)
27-
jeweler (>= 1.8.4)
28-
minitest (>= 4.7.4)
58+
jeweler (>= 1.8.7)
59+
minitest (>= 5.0.7)
2960
simplecov (>= 0.7.1)
30-
yard (>= 0.8.6.1)
61+
yard (>= 0.8.7.1)

police-vminfo/test/helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
$stderr.puts "Run `bundle install` to install missing gems"
88
exit e.status_code
99
end
10-
require 'minitest/unit'
10+
require 'minitest/autorun'
1111
require 'minitest/spec'
1212

1313
$LOAD_PATH.unshift(File.dirname(__FILE__))

police/Gemfile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
source :rubygems
1+
source 'https://rubygems.org'
22

33
gem 'police-dataflow', '>= 0.0.1', path: '../police-dataflow'
44
gem 'police-vminfo', '>= 0.0.1', path: '../police-vminfo'
55

66
group :development do
7-
gem 'bundler', '>= 1.1.0'
8-
gem 'jeweler', '>= 1.8.3'
9-
gem 'minitest', '>= 2.11.2'
10-
gem 'rdoc', '>= 3.12'
11-
gem 'simplecov', '>= 0.6.1'
12-
gem 'yard', '>= 0.7'
7+
gem 'bundler', '>= 1.3.5'
8+
gem 'jeweler', '>= 1.8.7'
9+
gem 'minitest', '>= 5.0.7'
10+
gem 'simplecov', '>= 0.7.1'
11+
gem 'yard', '>= 0.8.7.1'
1312
end

police/Gemfile.lock

Lines changed: 49 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,38 +6,68 @@ PATH
66
PATH
77
remote: ../police-vminfo
88
specs:
9-
police-vminfo (0.0.1)
9+
police-vminfo (0.0.4)
1010

1111
GEM
12-
remote: http://rubygems.org/
12+
remote: https://rubygems.org/
1313
specs:
14-
git (1.2.5)
15-
jeweler (1.8.3)
14+
addressable (2.3.5)
15+
builder (3.2.2)
16+
faraday (0.8.8)
17+
multipart-post (~> 1.2.0)
18+
git (1.2.6)
19+
github_api (0.10.1)
20+
addressable
21+
faraday (~> 0.8.1)
22+
hashie (>= 1.2)
23+
multi_json (~> 1.4)
24+
nokogiri (~> 1.5.2)
25+
oauth2
26+
hashie (2.0.5)
27+
highline (1.6.19)
28+
httpauth (0.2.0)
29+
jeweler (1.8.7)
30+
builder
1631
bundler (~> 1.0)
1732
git (>= 1.2.5)
33+
github_api (= 0.10.1)
34+
highline (>= 1.6.15)
35+
nokogiri (= 1.5.10)
1836
rake
1937
rdoc
20-
json (1.6.5)
21-
minitest (2.11.2)
22-
multi_json (1.1.0)
23-
rake (0.9.2.2)
24-
rdoc (3.12)
38+
json (1.8.0)
39+
jwt (0.1.8)
40+
multi_json (>= 1.5)
41+
minitest (5.0.7)
42+
multi_json (1.8.0)
43+
multi_xml (0.5.5)
44+
multipart-post (1.2.0)
45+
nokogiri (1.5.10)
46+
oauth2 (0.9.2)
47+
faraday (~> 0.8)
48+
httpauth (~> 0.2)
49+
jwt (~> 0.1.4)
50+
multi_json (~> 1.0)
51+
multi_xml (~> 0.5)
52+
rack (~> 1.2)
53+
rack (1.5.2)
54+
rake (10.1.0)
55+
rdoc (4.0.1)
2556
json (~> 1.4)
26-
simplecov (0.6.1)
57+
simplecov (0.7.1)
2758
multi_json (~> 1.0)
28-
simplecov-html (~> 0.5.3)
29-
simplecov-html (0.5.3)
30-
yard (0.7.5)
59+
simplecov-html (~> 0.7.1)
60+
simplecov-html (0.7.1)
61+
yard (0.8.7.1)
3162

3263
PLATFORMS
3364
ruby
3465

3566
DEPENDENCIES
36-
bundler (>= 1.1.0)
37-
jeweler (>= 1.8.3)
38-
minitest (>= 2.11.2)
67+
bundler (>= 1.3.5)
68+
jeweler (>= 1.8.7)
69+
minitest (>= 5.0.7)
3970
police-dataflow (>= 0.0.1)!
4071
police-vminfo (>= 0.0.1)!
41-
rdoc (>= 3.12)
42-
simplecov (>= 0.6.1)
43-
yard (>= 0.7)
72+
simplecov (>= 0.7.1)
73+
yard (>= 0.8.7.1)

0 commit comments

Comments
 (0)