ritter 0.0.88 → 0.0.89

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTJkNGRlMThjZDA2NDZmYzVlNTM2ZmVlNmY4NmVjNGQ1YzE1NzY0ZA==
4
+ NmUyMjZiMTAzODAxNTdlZTE4NDdhOGFhYjZkNmJkOThhODZhMGM3Mg==
5
5
  data.tar.gz: !binary |-
6
- NzFkMjc0Zjk2ZDJiM2E0MWMzNWU4ZTY3NDJmOWZhZDc3ZWFlNmFjOA==
6
+ MWUyODdkY2FlYjFlNDRkZjY3MTRiZDNlYTQ1ZTMwMjU1NDU4MTIyMg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NzJkNDVjMTc2MTJkMDUxMmM4YjI3Yzc5YjAyMjQzNTNhNGViMzdhNTRlODlj
10
- ZGU5ZGNmNDhiN2U1MWYxYjFjZjVkMDJiZDE3YzA4ZTJhYmJhMTM2MDhhMTdh
11
- MTliNjVhYzZlOGYwMWQ2MjQzYzc4Y2ViYzA4MzM4YTkyYWY5ZWE=
9
+ NmI0MDRmN2UwNjA4MzVlMzUxNTgxNzNkNjZiZDQwOTljZDU2NGYwNzU4ZmEy
10
+ MDg4NzBkZTEzZmZmZjJmYjA4MjMzODcwZWU3MTUzNTdkZDQxNDQ4N2U5Mzli
11
+ YTM1MjhiOGYwNDc2NDU0MmQ0MzA4YjIwM2RkMjhiZDA4N2IxNGI=
12
12
  data.tar.gz: !binary |-
13
- NTkxYjhkM2ZlZjI5MDVkY2JhMjM5ZGM2NDgzNDM2ZWQzNGMyZjVlZWFjN2Qy
14
- MDA2ZTBhNzI5MzFkYjRkODZmZDJmZjJhM2E0M2Q0ODFkYjgyOTIzNDI5NWU3
15
- MTZiMjdkNGFlZmRiZmM0MjBlY2E1MTVmYTg4NGNkMTFmODlmMzU=
13
+ OWIwYzZlN2VlNTZkZjE1YzYxMmNiNTg5MmYxZWVhMDA2MzM1N2Y3MDhkZTgz
14
+ ZWNjMGRkMGE0MDM1MDgwMmIwZjNjMjY1ZTQ4NWJjZGMwNjdmZWUwY2ZlYTYy
15
+ M2ZjMDhjMjU2ZTIzNGRjOTk1Y2U3ODA0Zjc5YWE2MjNhYzFkMTM=
@@ -1,7 +1,7 @@
1
1
  # encoding: UTF-8
2
2
 
3
3
  require 'set'
4
- require 'twitter-text/hash_helper'
4
+ require 'ritter-text/hash_helper'
5
5
 
6
6
  module Twitter
7
7
  # A module for including Tweet auto-linking in a class. The primary use of this is for helpers/views so they can auto-link
@@ -18,5 +18,5 @@ end
18
18
  validation
19
19
  hit_highlighter
20
20
  ).each do |name|
21
- require "twitter-text/#{name}"
21
+ require "ritter-text/#{name}"
22
22
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "ritter"
5
- s.version = "0.0.88"
5
+ s.version = "0.0.89"
6
6
  s.authors = ["Fernando Paladini", "Matt Sanford", "Patrick Ewing", "Ben Cherry", "Britt Selvitelle",
7
7
  "Raffi Krikorian", "J.P. Cummins", "Yoshimasa Niwa", "Keita Fujii", "James Koval"]
8
8
  s.email = ["fernando.paladini@techsempre.com","matt@twitter.com", "patrick.henry.ewing@gmail.com", "bcherry@gmail.com", "bs@brittspace.com",
data/spec/spec_helper.rb CHANGED
@@ -14,7 +14,7 @@ SimpleCov.start do
14
14
  add_group 'Libraries', 'lib'
15
15
  end
16
16
 
17
- require File.expand_path('../../lib/twitter-text', __FILE__)
17
+ require File.expand_path('../../lib/ritter-text', __FILE__)
18
18
  require File.expand_path('../test_urls', __FILE__)
19
19
 
20
20
  RSpec.configure do |config|
@@ -14,7 +14,7 @@ if major.to_i == 1 && minor.to_i < 9
14
14
 
15
15
  it "should raise with invalid KCODE on Ruby < 1.9" do
16
16
  lambda do
17
- require 'twitter-text'
17
+ require 'ritter'
18
18
  end.should raise_error
19
19
  end
20
20
  end
@@ -9,7 +9,7 @@ if major.to_i == 1 && minor.to_i < 9
9
9
  $KCODE='u'
10
10
  end
11
11
 
12
- require File.expand_path('../../lib/twitter-text', __FILE__)
12
+ require File.expand_path('../../lib/ritter-text', __FILE__)
13
13
 
14
14
  class ConformanceTest < Test::Unit::TestCase
15
15
  include Twitter::Extractor
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ritter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.88
4
+ version: 0.0.89
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Paladini
@@ -143,16 +143,17 @@ files:
143
143
  - LICENSE
144
144
  - README.rdoc
145
145
  - Rakefile
146
- - lib/twitter-text.rb
147
- - lib/twitter-text/autolink.rb
148
- - lib/twitter-text/deprecation.rb
149
- - lib/twitter-text/extractor.rb
150
- - lib/twitter-text/hash_helper.rb
151
- - lib/twitter-text/hit_highlighter.rb
152
- - lib/twitter-text/regex.rb
153
- - lib/twitter-text/rewriter.rb
154
- - lib/twitter-text/unicode.rb
155
- - lib/twitter-text/validation.rb
146
+ - lib/ritter-text/autolink.rb
147
+ - lib/ritter-text/deprecation.rb
148
+ - lib/ritter-text/extractor.rb
149
+ - lib/ritter-text/hash_helper.rb
150
+ - lib/ritter-text/hit_highlighter.rb
151
+ - lib/ritter-text/regex.rb
152
+ - lib/ritter-text/rewriter.rb
153
+ - lib/ritter-text/unicode.rb
154
+ - lib/ritter-text/validation.rb
155
+ - lib/ritter.rb
156
+ - ritter.gemspec
156
157
  - script/destroy
157
158
  - script/generate
158
159
  - spec/autolinking_spec.rb
@@ -166,7 +167,6 @@ files:
166
167
  - spec/unicode_spec.rb
167
168
  - spec/validation_spec.rb
168
169
  - test/conformance_test.rb
169
- - twitter-text.gemspec
170
170
  homepage: http://www.noise.com
171
171
  licenses: []
172
172
  metadata: {}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes