Skip to content

Commit ce2c31b

Browse files
committed
Version bump to 0.0.1
1 parent fc4d197 commit ce2c31b

File tree

5 files changed

+41
-14
lines changed

5 files changed

+41
-14
lines changed

police-labels/police-labels.gemspec

+18-4
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,38 @@
55

66
Gem::Specification.new do |s|
77
s.name = "police-labels"
8-
s.version = "0.0.0"
8+
s.version = "0.0.1"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Victor Costan"]
12-
s.date = "2012-03-18"
12+
s.date = "2012-03-28"
1313
s.description = "Supplies labels impelementing safety and privacy policies"
1414
s.email = "[email protected]"
1515
s.extra_rdoc_files = [
1616
"LICENSE.txt",
1717
"README.markdown"
1818
]
1919
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"
2135
]
2236
s.homepage = "http://github.com/csail/police"
2337
s.licenses = ["MIT"]
2438
s.require_paths = ["lib"]
25-
s.rubygems_version = "1.8.17"
39+
s.rubygems_version = "1.8.21"
2640
s.summary = "Collection of label implementations for policed applications"
2741

2842
if s.respond_to? :specification_version then

police-rack/Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source :rubygems
22

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'
55
gem 'rack', '>= 1.4.1'
66

77
group :development do

police-rack/Gemfile.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
PATH
22
remote: ../police-dataflow
33
specs:
4-
police-dataflow (0.0.0)
4+
police-dataflow (0.0.1)
55

66
PATH
77
remote: ../police-labels
88
specs:
9-
police-labels (0.0.0)
9+
police-labels (0.0.1)
1010

1111
GEM
1212
remote: http://rubygems.org/
@@ -39,8 +39,8 @@ DEPENDENCIES
3939
bundler (>= 1.1.0)
4040
jeweler (>= 1.8.3)
4141
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)!
4444
rack (>= 1.4.1)
4545
rack-test (>= 0.6.1)
4646
rdoc (>= 3.12)

police-rack/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.0
1+
0.0.1

police-rack/police-rack.gemspec

+16-3
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,33 @@ Gem::Specification.new do |s|
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Victor Costan"]
12-
s.date = "2012-03-18"
12+
s.date = "2012-03-28"
1313
s.description = "Labels HTTP input with police labels and provides hooks for filtering the application output"
1414
s.email = "[email protected]"
1515
s.extra_rdoc_files = [
1616
"LICENSE.txt",
1717
"README.markdown"
1818
]
1919
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"
2134
]
2235
s.homepage = "http://github.com/csail/police"
2336
s.licenses = ["MIT"]
2437
s.require_paths = ["lib"]
25-
s.rubygems_version = "1.8.17"
38+
s.rubygems_version = "1.8.21"
2639
s.summary = "Rack middleware that integrates police"
2740

2841
if s.respond_to? :specification_version then

0 commit comments

Comments
 (0)