Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit 638e146

Browse files
committed
Preparing a new point version release
1 parent 25f7f79 commit 638e146

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

Diff for: .travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ language: ruby
22
rvm:
33
- 1.9.2
44
- 1.9.3
5+
- 2.0.0
56
- rbx-19mode

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ gem install obscenity
2424

2525
## Compatibility
2626

27-
Obscenity is compatible with Ruby 1.9.X, Rubinius 1.9, Rails 3.X, and Rack as a middleware. Starting with Rails 3, the profanity validation works with any ORM supported by ActiveModel, e.g: ActiveRecord, MongoMapper, Mongoid, etc.
27+
Obscenity is compatible with Ruby 1.9.X, Ruby 2.0.X, Rubinius 1.9, Rails 3.X, and Rack as a middleware. Starting with Rails 3, the profanity validation works with any ORM supported by ActiveModel, e.g: ActiveRecord, MongoMapper, Mongoid, etc.
2828

2929
## Using Obscenity
3030

Diff for: lib/obscenity/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Obscenity
22

3-
VERSION = '1.0.1'
3+
VERSION = '1.0.2'
44

55
end

Diff for: obscenity.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
Gem::Specification.new do |s|
77
s.name = "obscenity"
8-
s.version = "1.0.1"
8+
s.version = "1.0.2"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Thiago Jackiw"]
12-
s.date = "2012-11-22"
12+
s.date = "2013-05-30"
1313
s.description = " Obscenity is a profanity filter gem for Ruby/Rubinius, Rails (through ActiveModel), and Rack middleware "
1414
s.email = "[email protected]"
1515
s.extra_rdoc_files = [
@@ -48,7 +48,7 @@ Gem::Specification.new do |s|
4848
s.homepage = "http://github.com/tjackiw/obscenity"
4949
s.licenses = ["MIT"]
5050
s.require_paths = ["lib"]
51-
s.rubygems_version = "1.8.24"
51+
s.rubygems_version = "1.8.25"
5252
s.summary = "Obscenity is a profanity filter gem for Ruby/Rubinius, Rails (through ActiveModel), and Rack middleware"
5353
s.test_files = ["test/helper.rb", "test/static/422.html", "test/test_active_model.rb", "test/test_base.rb", "test/test_config.rb", "test/test_obscenity.rb", "test/test_rack.rb", "test/test_version.rb"]
5454

Diff for: test/test_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
class TestVersion < Test::Unit::TestCase
44

55
should "return the correct product version" do
6-
assert_equal '1.0.1', Obscenity::VERSION
6+
assert_equal '1.0.2', Obscenity::VERSION
77
end
88

99
end

0 commit comments

Comments
 (0)