ruby-bbcode 1.0.0 → 1.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a10490262219dacfe057278e730b307e8c274c08
4
+ data.tar.gz: fc45b4491f2127baffe4d8c73e0a5480e858b9c0
5
+ SHA512:
6
+ metadata.gz: e6e07a60e19708e13f1245a4a15874a00b138fb2af64a3d6ae494ea80d4eb90eee84587d3f6d65405b86b1d69100720b67b42af76b4bda81ae676279ae48df50
7
+ data.tar.gz: 3873a68c9f3e06de06ff07001507573513b7f219599c8b3d5be460127101eaf4735617d294dbb1cc3146f32d38d7b1378dbaab1f3b0c36093b417c21e2df8475
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ Version 1.0.1 - 04-Jan-2015
2
+
3
+ * Allow any version of activesupport since 3.2.3
4
+
1
5
  Version 1.0.0 - 11-Oct-2014
2
6
  ---------------------------
3
7
 
data/README.textile CHANGED
@@ -13,7 +13,7 @@ h2. Example
13
13
 
14
14
  h2. Installing
15
15
 
16
- Add the folling line to the Gemfile of your application:
16
+ Add the following line to the Gemfile of your application:
17
17
  <pre><code>gem 'ruby-bbcode'</code></pre>
18
18
 
19
19
  Or to use the source code from the repository:
@@ -2,5 +2,5 @@ module RubyBBCode
2
2
  # Version of RubyBBCode
3
3
  #
4
4
  # Follows semantic versioning: http://semver.org/
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.1"
6
6
  end
metadata CHANGED
@@ -1,46 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-bbcode
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
5
- prerelease:
4
+ version: 1.0.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Maarten Bezemer
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-10-10 00:00:00.000000000 Z
11
+ date: 2015-01-04 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: activesupport
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
- version: '0'
19
+ version: 3.2.3
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
- version: '0'
26
+ version: 3.2.3
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rake
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  description: Convert BBCode to HTML and check whether the BBCode is valid.
@@ -52,53 +47,52 @@ extra_rdoc_files:
52
47
  - CHANGELOG.md
53
48
  - MIT-LICENSE
54
49
  files:
50
+ - CHANGELOG.md
51
+ - MIT-LICENSE
52
+ - README.textile
53
+ - Rakefile
55
54
  - lib/ruby-bbcode.rb
56
- - lib/ruby-bbcode/tag_collection.rb
57
55
  - lib/ruby-bbcode/bbtree.rb
58
- - lib/ruby-bbcode/tag_node.rb
56
+ - lib/ruby-bbcode/tag_collection.rb
59
57
  - lib/ruby-bbcode/tag_info.rb
60
- - lib/ruby-bbcode/version.rb
58
+ - lib/ruby-bbcode/tag_node.rb
61
59
  - lib/ruby-bbcode/tag_sifter.rb
60
+ - lib/ruby-bbcode/version.rb
62
61
  - lib/tags/tags.rb
63
- - MIT-LICENSE
64
- - Rakefile
65
- - README.textile
66
- - CHANGELOG.md
67
- - test/test_helper.rb
68
62
  - test/current_test.rb
69
- - test/unit/tag_sifter_test.rb
70
- - test/unit/debugging_test.rb
71
63
  - test/debugging.rb
72
64
  - test/ruby_bbcode_test.rb
65
+ - test/test_helper.rb
66
+ - test/unit/debugging_test.rb
67
+ - test/unit/tag_sifter_test.rb
73
68
  homepage: http://github.com/veger/ruby-bbcode
74
69
  licenses:
75
70
  - MIT
71
+ metadata: {}
76
72
  post_install_message:
77
73
  rdoc_options:
78
- - --title
74
+ - "--title"
79
75
  - Ruby BBCode
80
- - --main
76
+ - "--main"
81
77
  - README.md
82
78
  require_paths:
83
79
  - lib
84
80
  required_ruby_version: !ruby/object:Gem::Requirement
85
- none: false
86
81
  requirements:
87
- - - ! '>='
82
+ - - ">="
88
83
  - !ruby/object:Gem::Version
89
84
  version: '0'
90
85
  required_rubygems_version: !ruby/object:Gem::Requirement
91
- none: false
92
86
  requirements:
93
- - - ! '>='
87
+ - - ">="
94
88
  - !ruby/object:Gem::Version
95
89
  version: '0'
96
90
  requirements: []
97
91
  rubyforge_project:
98
- rubygems_version: 1.8.23
92
+ rubygems_version: 2.4.5
99
93
  signing_key:
100
- specification_version: 3
101
- summary: ruby-bbcode-1.0.0
94
+ specification_version: 4
95
+ summary: ruby-bbcode-1.0.1
102
96
  test_files:
103
97
  - test/test_helper.rb
104
98
  - test/current_test.rb