bb-ruby 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 1.8.7
data/History.txt CHANGED
@@ -1,3 +1,11 @@
1
+ == 1.0.2 2013-10-08
2
+
3
+ * Add MIT license information
4
+
5
+ == 1.0.1 2013-09-30
6
+
7
+ * Fix bug with [quote] tags and :enable/:disable flags
8
+
1
9
  == 1.0 2013-05-9
2
10
 
3
11
  * Enable Procs to be used in custom defined replacements
data/License.txt ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2008 Craig P Jolicoeur
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/bb-ruby.gemspec CHANGED
@@ -1,17 +1,20 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/bb-ruby/version', __FILE__)
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bb-ruby/version'
3
5
 
4
6
  Gem::Specification.new do |gem|
7
+ gem.name = "bb-ruby"
8
+ gem.version = BBRuby::VERSION
5
9
  gem.authors = ["Craig P. Jolicoeur"]
6
10
  gem.email = ["cpjolicoeur@gmail.com"]
7
11
  gem.description = %q{BBCode for Ruby}
8
12
  gem.summary = %q{BBRuby is a BBCode implementation for Ruby. It will convert strings with BBCode markup to their HTML equivalent}
9
- gem.homepage = ""
13
+ gem.homepage = "http://cpjolicoeur.github.io/bb-ruby/"
14
+ gem.license = 'MIT'
10
15
 
11
- gem.files = `git ls-files`.split($\)
16
+ gem.files = `git ls-files`.split($/)
12
17
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
18
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
- gem.name = "bb-ruby"
15
19
  gem.require_paths = ["lib"]
16
- gem.version = BBRuby::VERSION
17
20
  end
@@ -1,3 +1,3 @@
1
1
  module BBRuby
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bb-ruby
3
3
  version: !ruby/object:Gem::Version
4
+ version: 1.0.2
4
5
  prerelease:
5
- version: 1.0.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Craig P. Jolicoeur
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-09-30 00:00:00.000000000 Z
12
+ date: 2013-10-08 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: BBCode for Ruby
15
15
  email:
@@ -19,9 +19,11 @@ extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
21
  - .gitignore
22
+ - .travis.yml
22
23
  - Gemfile
23
24
  - Gemfile.lock
24
25
  - History.txt
26
+ - License.txt
25
27
  - README.rdoc
26
28
  - Rakefile
27
29
  - bb-ruby.gemspec
@@ -29,24 +31,25 @@ files:
29
31
  - lib/bb-ruby/version.rb
30
32
  - test/bb-ruby_test.rb
31
33
  - test/test_helper.rb
32
- homepage: ''
33
- licenses: []
34
+ homepage: http://cpjolicoeur.github.io/bb-ruby/
35
+ licenses:
36
+ - MIT
34
37
  post_install_message:
35
38
  rdoc_options: []
36
39
  require_paths:
37
40
  - lib
38
41
  required_ruby_version: !ruby/object:Gem::Requirement
42
+ none: false
39
43
  requirements:
40
44
  - - ! '>='
41
45
  - !ruby/object:Gem::Version
42
46
  version: '0'
43
- none: false
44
47
  required_rubygems_version: !ruby/object:Gem::Requirement
48
+ none: false
45
49
  requirements:
46
50
  - - ! '>='
47
51
  - !ruby/object:Gem::Version
48
52
  version: '0'
49
- none: false
50
53
  requirements: []
51
54
  rubyforge_project:
52
55
  rubygems_version: 1.8.23