formatize 1.0.1 → 1.1.0rc1

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE CHANGED
@@ -19,4 +19,5 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
19
  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
20
  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
21
  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
- OTHER DEALINGS IN THE SOFTWARE.
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
data/README.md CHANGED
@@ -58,18 +58,29 @@ before conversion:
58
58
  Compatibility
59
59
  -------------
60
60
 
61
- I'll maintain compatibility with the latest Ruby 1.8 and 1.9 versions, which
62
- for the moment being means Ruby 1.8.7 and 1.9.2. It might work with others but
63
- it's not guaranteed. Patches welcome.
61
+ Feel free to try other versions. Minor patches to support other versions
62
+ are welcome.
64
63
 
65
- As for Rails, I'll make sure Formatize works with the latest 3.x versions,
66
- which for the moment being just means Rails 3.0.0. If, say, the latest 3.0
67
- version was 3.0.5 and the latest 3.1 version was 3.1.1, Formatize would work
68
- with both.
64
+ ### Ruby versions
65
+ * 1.9.3-p125
66
+ * 1.8.7-p358
67
+
68
+ Latest versions in the 1.8 and 1.9 series. Generally, Formatize will not
69
+ jump through hoops to support other versions. 1.8 support may be dropped
70
+ eventually.
71
+
72
+ ### Rails versions
73
+ * 3.2.1
74
+ * 3.1.3
75
+ * 3.0.11
76
+
77
+ The latest versions in all the 3.0 series. This is likely to change when
78
+ 4.0 is released.
69
79
 
70
80
  Copyright & Licensing
71
81
  ---------------------
72
82
 
73
- Copyright (c) 2010 David Trasbo
83
+ Copyright (c) 2012 David Trasbo
84
+
85
+ Released under the MIT License. See LICENSE for details.
74
86
 
75
- Released under the MIT License. See LICENSE for details.
@@ -2,4 +2,5 @@ require 'formatize/helper'
2
2
 
3
3
  ActiveSupport.on_load(:action_view) do
4
4
  include Formatize::Helper
5
- end
5
+ end
6
+
@@ -88,4 +88,5 @@ module Formatize
88
88
  (text.blank? ? "" : BlueCloth.new(text).to_html).html_safe
89
89
  end
90
90
  end
91
- end
91
+ end
92
+
@@ -1,3 +1,4 @@
1
1
  module Formatize
2
- VERSION = '1.0.1'
3
- end
2
+ VERSION = '1.1.0rc1'
3
+ end
4
+
metadata CHANGED
@@ -1,109 +1,83 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: formatize
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 0
8
- - 1
9
- version: 1.0.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0rc1
5
+ prerelease: 5
10
6
  platform: ruby
11
- authors:
7
+ authors:
12
8
  - David Trasbo
13
9
  autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
-
17
- date: 2010-10-15 00:00:00 +02:00
18
- default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2012-02-29 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: RedCloth
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &2164634400 !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
18
+ requirements:
26
19
  - - ~>
27
- - !ruby/object:Gem::Version
28
- segments:
29
- - 4
30
- - 2
31
- version: "4.2"
20
+ - !ruby/object:Gem::Version
21
+ version: '4.2'
32
22
  type: :runtime
33
- version_requirements: *id001
34
- - !ruby/object:Gem::Dependency
35
- name: bluecloth
36
23
  prerelease: false
37
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: *2164634400
25
+ - !ruby/object:Gem::Dependency
26
+ name: bluecloth
27
+ requirement: &2164633780 !ruby/object:Gem::Requirement
38
28
  none: false
39
- requirements:
29
+ requirements:
40
30
  - - ~>
41
- - !ruby/object:Gem::Version
42
- segments:
43
- - 2
44
- - 0
45
- version: "2.0"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.2'
46
33
  type: :runtime
47
- version_requirements: *id002
48
- - !ruby/object:Gem::Dependency
49
- name: actionpack
50
34
  prerelease: false
51
- requirement: &id003 !ruby/object:Gem::Requirement
35
+ version_requirements: *2164633780
36
+ - !ruby/object:Gem::Dependency
37
+ name: actionpack
38
+ requirement: &2164633300 !ruby/object:Gem::Requirement
52
39
  none: false
53
- requirements:
40
+ requirements:
54
41
  - - ~>
55
- - !ruby/object:Gem::Version
56
- segments:
57
- - 3
58
- - 0
59
- version: "3.0"
42
+ - !ruby/object:Gem::Version
43
+ version: '3.0'
60
44
  type: :runtime
61
- version_requirements: *id003
45
+ prerelease: false
46
+ version_requirements: *2164633300
62
47
  description:
63
48
  email: me@dtrasbo.com
64
49
  executables: []
65
-
66
50
  extensions: []
67
-
68
51
  extra_rdoc_files: []
69
-
70
- files:
52
+ files:
71
53
  - lib/formatize/helper.rb
72
54
  - lib/formatize/version.rb
73
55
  - lib/formatize.rb
74
56
  - LICENSE
75
57
  - README.md
76
- has_rdoc: true
77
58
  homepage: http://github.com/dtrasbo/formatize
78
59
  licenses: []
79
-
80
60
  post_install_message:
81
61
  rdoc_options: []
82
-
83
- require_paths:
62
+ require_paths:
84
63
  - lib
85
- required_ruby_version: !ruby/object:Gem::Requirement
64
+ required_ruby_version: !ruby/object:Gem::Requirement
86
65
  none: false
87
- requirements:
88
- - - ">="
89
- - !ruby/object:Gem::Version
90
- segments:
91
- - 0
92
- version: "0"
93
- required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
71
  none: false
95
- requirements:
96
- - - ">="
97
- - !ruby/object:Gem::Version
98
- segments:
99
- - 0
100
- version: "0"
72
+ requirements:
73
+ - - ! '>'
74
+ - !ruby/object:Gem::Version
75
+ version: 1.3.1
101
76
  requirements: []
102
-
103
77
  rubyforge_project:
104
- rubygems_version: 1.3.7
78
+ rubygems_version: 1.8.16
105
79
  signing_key:
106
80
  specification_version: 3
107
- summary: Gem containing the textilize, textilize_without_paragraph, and markdown helper methods removed from Rails.
81
+ summary: Gem containing the textilize, textilize_without_paragraph, and markdown helper
82
+ methods removed from Rails.
108
83
  test_files: []
109
-