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

Commit 3b62d91

Browse files
committed
Adding travis configuration
1 parent 7f7dd00 commit 3b62d91

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

Diff for: .travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: ruby
2+
rvm:
3+
- 1.9.2
4+
- 1.9.3
5+
- rbx-19mode

Diff for: Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ group :development do
77
gem "jeweler", "~> 1.8.3"
88
gem "activemodel", "~> 3.0"
99
gem "rack"
10+
gem "rake"
1011
end

Diff for: Gemfile.lock

+1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@ DEPENDENCIES
3535
bundler
3636
jeweler (~> 1.8.3)
3737
rack
38+
rake
3839
rdoc (~> 3.12)
3940
shoulda

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Obscenity
22

3-
Obscenity is a profanity filter gem for Ruby, Rails (through ActiveModel), and Rack middleware.
3+
Obscenity is a profanity filter gem for Ruby/Rubinius, Rails (through ActiveModel), and Rack middleware.
44

55
## Installation
66

@@ -24,7 +24,7 @@ gem install obscenity
2424

2525
## Compatibility
2626

27-
Obscenity is compatible with Ruby 1.9.X, 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, 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: Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Jeweler::Tasks.new do |gem|
2424
gem.email = "[email protected]"
2525
gem.homepage = "http://github.com/tjackiw/obscenity"
2626
gem.license = "MIT"
27-
gem.summary = %Q{ Obscenity is a profanity filter gem for Ruby, Rails (through ActiveModel), and Rack middleware }
28-
gem.description = %Q{ Obscenity is a profanity filter gem for Ruby, Rails (through ActiveModel), and Rack middleware }
27+
gem.summary = %Q{ Obscenity is a profanity filter gem for Ruby/Rubinius, Rails (through ActiveModel), and Rack middleware }
28+
gem.description = %Q{ Obscenity is a profanity filter gem for Ruby/Rubinius, Rails (through ActiveModel), and Rack middleware }
2929
gem.files = `git ls-files`.split("\n")
3030
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
3131
gem.require_paths = ["lib"]

Diff for: obscenity.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Thiago Jackiw"]
1212
s.date = "2012-05-28"
13-
s.description = " Obscenity is a profanity filter gem for Ruby, Rails (through ActiveModel), and Rack middleware "
13+
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 = [
1616
"LICENSE.txt",
@@ -47,7 +47,7 @@ Gem::Specification.new do |s|
4747
s.licenses = ["MIT"]
4848
s.require_paths = ["lib"]
4949
s.rubygems_version = "1.8.24"
50-
s.summary = "Obscenity is a profanity filter gem for Ruby, Rails (through ActiveModel), and Rack middleware"
50+
s.summary = "Obscenity is a profanity filter gem for Ruby/Rubinius, Rails (through ActiveModel), and Rack middleware"
5151
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"]
5252

5353
if s.respond_to? :specification_version then

0 commit comments

Comments
 (0)