rails_autolink 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0eb027e35c46aaa9fbb8cdea840c2781b32e8954
4
+ data.tar.gz: 75d8046d1919f2460dc9be6672d98d2c86480d62
5
+ SHA512:
6
+ metadata.gz: 2cae5a7c7e52b92a11f023a7327870980861e4374ff927c9e184e21d151ec4f25901e9fea4e6d374d9d60722e2a76f6103ca5589851695df38a48c2b9911cb5d
7
+ data.tar.gz: 3e8fbd1fa381a369612b23ae9667d4ab8c77da5bacbd704c35eabd07c98b3d617cb16092793183fbd2dc88b26f2db307b2b5c8d55f325b61213c377fa4d2f926
@@ -0,0 +1,8 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'autotest/restart'
4
+
5
+ Autotest.add_hook :initialize do |at|
6
+ at.testlib = 'minitest/autorun'
7
+ at.find_directories = ARGV unless ARGV.empty?
8
+ end
@@ -1,3 +1,7 @@
1
+ === 1.1.3 / 2013-09-12
2
+
3
+ * Updates gemspec to work with latest rubygems
4
+
1
5
  === 1.1.1 / 2013-09-12
2
6
 
3
7
  * Improved email regex to allow especial chars: !#$%&'*+-/=?^_`{|}~
@@ -0,0 +1,3 @@
1
+ module RailsAutolink
2
+ VERSION = '1.1.3'
3
+ end
@@ -1,6 +1,9 @@
1
+ require File.expand_path "#{File.dirname(__FILE__)}/lib/rails_autolink/version"
2
+
1
3
  Gem::Specification.new do |s|
2
4
  s.name = 'rails_autolink'
3
- s.version = '1.1.2'
5
+ s.version = RailsAutolink::VERSION
6
+ s.date = Time.now.strftime('%Y-%m-%d')
4
7
  s.authors = ['Aaron Patterson', 'Juanjo Bazan', 'Akira Matsuda']
5
8
  s.email = 'aaron@tenderlovemaking.com'
6
9
  s.homepage = 'https://github.com/tenderlove/rails_autolink'
@@ -9,5 +12,5 @@ Gem::Specification.new do |s|
9
12
 
10
13
  s.add_dependency 'rails', '> 3.1'
11
14
 
12
- s.files = Dir["#{File.dirname(__FILE__)}/**/*"]
15
+ s.files = Dir.glob("{test,lib/**/*}") + `git ls-files -z`.split("\0")
13
16
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_autolink
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
5
- prerelease:
4
+ version: 1.1.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Aaron Patterson
@@ -16,7 +15,6 @@ dependencies:
16
15
  - !ruby/object:Gem::Dependency
17
16
  name: rails
18
17
  requirement: !ruby/object:Gem::Requirement
19
- none: false
20
18
  requirements:
21
19
  - - '>'
22
20
  - !ruby/object:Gem::Version
@@ -24,7 +22,6 @@ dependencies:
24
22
  type: :runtime
25
23
  prerelease: false
26
24
  version_requirements: !ruby/object:Gem::Requirement
27
- none: false
28
25
  requirements:
29
26
  - - '>'
30
27
  - !ruby/object:Gem::Version
@@ -37,37 +34,38 @@ executables: []
37
34
  extensions: []
38
35
  extra_rdoc_files: []
39
36
  files:
40
- - ./CHANGELOG.rdoc
41
- - ./Gemfile
42
- - ./Gemfile.lock
43
- - ./lib/rails_autolink/helpers.rb
44
- - ./lib/rails_autolink.rb
45
- - ./rails_autolink.gemspec
46
- - ./Rakefile
47
- - ./README.rdoc
48
- - ./test/test_rails_autolink.rb
37
+ - lib/rails_autolink/helpers.rb
38
+ - lib/rails_autolink/version.rb
39
+ - lib/rails_autolink.rb
40
+ - .autotest
41
+ - CHANGELOG.rdoc
42
+ - Gemfile
43
+ - Gemfile.lock
44
+ - README.rdoc
45
+ - Rakefile
46
+ - rails_autolink.gemspec
47
+ - test/test_rails_autolink.rb
49
48
  homepage: https://github.com/tenderlove/rails_autolink
50
49
  licenses: []
50
+ metadata: {}
51
51
  post_install_message:
52
52
  rdoc_options: []
53
53
  require_paths:
54
54
  - lib
55
55
  required_ruby_version: !ruby/object:Gem::Requirement
56
- none: false
57
56
  requirements:
58
57
  - - '>='
59
58
  - !ruby/object:Gem::Version
60
59
  version: '0'
61
60
  required_rubygems_version: !ruby/object:Gem::Requirement
62
- none: false
63
61
  requirements:
64
62
  - - '>='
65
63
  - !ruby/object:Gem::Version
66
64
  version: '0'
67
65
  requirements: []
68
66
  rubyforge_project:
69
- rubygems_version: 1.8.25
67
+ rubygems_version: 2.1.2
70
68
  signing_key:
71
- specification_version: 3
69
+ specification_version: 4
72
70
  summary: Automatic generation of html links in texts
73
71
  test_files: []