dumb_quotes 1.1 → 1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +10 -5
- metadata +34 -7
data/README.rdoc
CHANGED
@@ -32,14 +32,19 @@ the following changes to your model attributes before validation:
|
|
32
32
|
|
33
33
|
=== Installation
|
34
34
|
|
35
|
-
|
35
|
+
1. On rails 2.3
|
36
36
|
|
37
|
-
gem install
|
38
|
-
add
|
37
|
+
* gem install strip_control_chars
|
38
|
+
* add the following to your environment.rb
|
39
39
|
|
40
|
-
|
40
|
+
config.gem 'dumb_quotes', version => < 2.0"
|
41
41
|
|
42
|
-
|
42
|
+
2. On rails 3
|
43
|
+
|
44
|
+
* gem install strip_control_chars
|
45
|
+
* add the following to your Gemfile
|
46
|
+
|
47
|
+
gem 'dumb_quotes', ">=2.0"
|
43
48
|
|
44
49
|
=== Caveats
|
45
50
|
|
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dumb_quotes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 11
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
version: "1.2"
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- James Healy
|
@@ -9,10 +14,24 @@ autorequire:
|
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
16
|
|
12
|
-
date:
|
17
|
+
date: 2010-08-17 00:00:00 +10:00
|
13
18
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: activerecord
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - <=
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 197
|
29
|
+
segments:
|
30
|
+
- 2
|
31
|
+
- 99
|
32
|
+
version: "2.99"
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
16
35
|
description: a small ActiveRecord plugin that converts 'smart quotes' to their ASCII equivalents
|
17
36
|
email: james@yob.id.au
|
18
37
|
executables: []
|
@@ -28,6 +47,8 @@ files:
|
|
28
47
|
- Rakefile
|
29
48
|
- MIT-LICENSE
|
30
49
|
- README.rdoc
|
50
|
+
- test/dumb_quotes_test.rb
|
51
|
+
- test/test_helper.rb
|
31
52
|
has_rdoc: true
|
32
53
|
homepage: http://github.com/yob/dumb_quotes/tree/master
|
33
54
|
licenses: []
|
@@ -40,21 +61,27 @@ rdoc_options:
|
|
40
61
|
require_paths:
|
41
62
|
- lib
|
42
63
|
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
43
65
|
requirements:
|
44
66
|
- - ">="
|
45
67
|
- !ruby/object:Gem::Version
|
68
|
+
hash: 3
|
69
|
+
segments:
|
70
|
+
- 0
|
46
71
|
version: "0"
|
47
|
-
version:
|
48
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
49
74
|
requirements:
|
50
75
|
- - ">="
|
51
76
|
- !ruby/object:Gem::Version
|
77
|
+
hash: 3
|
78
|
+
segments:
|
79
|
+
- 0
|
52
80
|
version: "0"
|
53
|
-
version:
|
54
81
|
requirements: []
|
55
82
|
|
56
83
|
rubyforge_project: yob-projects
|
57
|
-
rubygems_version: 1.3.
|
84
|
+
rubygems_version: 1.3.7
|
58
85
|
signing_key:
|
59
86
|
specification_version: 3
|
60
87
|
summary: a small ActiveRecord plugin that converts 'smart quotes' to their ASCII equivalents
|