File tree 5 files changed +41
-14
lines changed
5 files changed +41
-14
lines changed Original file line number Diff line number Diff line change 5
5
6
6
Gem ::Specification . new do |s |
7
7
s . name = "police-labels"
8
- s . version = "0.0.0 "
8
+ s . version = "0.0.1 "
9
9
10
10
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
11
11
s . authors = [ "Victor Costan" ]
12
- s . date = "2012-03-18 "
12
+ s . date = "2012-03-28 "
13
13
s . description = "Supplies labels impelementing safety and privacy policies"
14
14
15
15
s . extra_rdoc_files = [
16
16
"LICENSE.txt" ,
17
17
"README.markdown"
18
18
]
19
19
s . files = [
20
- "VERSION"
20
+ ".document" ,
21
+ "Gemfile" ,
22
+ "Gemfile.lock" ,
23
+ "LICENSE.txt" ,
24
+ "README.markdown" ,
25
+ "Rakefile" ,
26
+ "VERSION" ,
27
+ "lib/police-labels.rb" ,
28
+ "lib/police/labels.rb" ,
29
+ "lib/police/labels/unsafe_stream.rb" ,
30
+ "lib/police/labels/unsafe_string.rb" ,
31
+ "police-labels.gemspec" ,
32
+ "test/helper.rb" ,
33
+ "test/helpers/proxying_fixture.rb" ,
34
+ "test/labels/unsafe_stream_test.rb"
21
35
]
22
36
s . homepage = "http://github.com/csail/police"
23
37
s . licenses = [ "MIT" ]
24
38
s . require_paths = [ "lib" ]
25
- s . rubygems_version = "1.8.17 "
39
+ s . rubygems_version = "1.8.21 "
26
40
s . summary = "Collection of label implementations for policed applications"
27
41
28
42
if s . respond_to? :specification_version then
Original file line number Diff line number Diff line change 1
1
source :rubygems
2
2
3
- gem 'police-dataflow' , '>= 0.0.0 ' , path : '../police-dataflow'
4
- gem 'police-labels' , '>= 0.0.0 ' , path : '../police-labels'
3
+ gem 'police-dataflow' , '>= 0.0.1 ' , path : '../police-dataflow'
4
+ gem 'police-labels' , '>= 0.0.1 ' , path : '../police-labels'
5
5
gem 'rack' , '>= 1.4.1'
6
6
7
7
group :development do
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: ../police-dataflow
3
3
specs:
4
- police-dataflow (0.0.0 )
4
+ police-dataflow (0.0.1 )
5
5
6
6
PATH
7
7
remote: ../police-labels
8
8
specs:
9
- police-labels (0.0.0 )
9
+ police-labels (0.0.1 )
10
10
11
11
GEM
12
12
remote: http://rubygems.org/
@@ -39,8 +39,8 @@ DEPENDENCIES
39
39
bundler (>= 1.1.0 )
40
40
jeweler (>= 1.8.3 )
41
41
minitest (>= 2.11.2 )
42
- police-dataflow (>= 0.0.0 )!
43
- police-labels (>= 0.0.0 )!
42
+ police-dataflow (>= 0.0.1 )!
43
+ police-labels (>= 0.0.1 )!
44
44
rack (>= 1.4.1 )
45
45
rack-test (>= 0.6.1 )
46
46
rdoc (>= 3.12 )
Original file line number Diff line number Diff line change 1
- 0.0.0
1
+ 0.0.1
Original file line number Diff line number Diff line change @@ -9,20 +9,33 @@ Gem::Specification.new do |s|
9
9
10
10
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
11
11
s . authors = [ "Victor Costan" ]
12
- s . date = "2012-03-18 "
12
+ s . date = "2012-03-28 "
13
13
s . description = "Labels HTTP input with police labels and provides hooks for filtering the application output"
14
14
15
15
s . extra_rdoc_files = [
16
16
"LICENSE.txt" ,
17
17
"README.markdown"
18
18
]
19
19
s . files = [
20
- "VERSION"
20
+ ".document" ,
21
+ "Gemfile" ,
22
+ "Gemfile.lock" ,
23
+ "LICENSE.txt" ,
24
+ "README.markdown" ,
25
+ "Rakefile" ,
26
+ "VERSION" ,
27
+ "lib/police-rack.rb" ,
28
+ "lib/police/rack.rb" ,
29
+ "lib/police/rack/middleware.rb" ,
30
+ "police-rack.gemspec" ,
31
+ "test/helper.rb" ,
32
+ "test/helpers/app_fixture.rb" ,
33
+ "test/rack/middleware_test.rb"
21
34
]
22
35
s . homepage = "http://github.com/csail/police"
23
36
s . licenses = [ "MIT" ]
24
37
s . require_paths = [ "lib" ]
25
- s . rubygems_version = "1.8.17 "
38
+ s . rubygems_version = "1.8.21 "
26
39
s . summary = "Rack middleware that integrates police"
27
40
28
41
if s . respond_to? :specification_version then
You can’t perform that action at this time.
0 commit comments