radius 0.7.0 → 0.7.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.
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
+ Gemfile.lock
1
2
  doc
2
3
  *.dot
3
4
  pkg
data/CHANGELOG CHANGED
@@ -1,6 +1,9 @@
1
1
  = Change Log
2
2
 
3
- == 0.7
3
+ == 0.7.1
4
+ * Running tests with bundler requires 'rake' to be specified [jgay]
5
+
6
+ == 0.7.0
4
7
  * Improve performance by switching back to regular expression parsing [jfahrenkrug]
5
8
  * Support for Rubinius [jlong]
6
9
  * Support for Ruby 1.9 [aemadrid]
@@ -1,5 +1,5 @@
1
1
  module Radius #:nodoc:
2
- VERSION = "0.7.0"
2
+ VERSION = "0.7.1"
3
3
  def self.version
4
4
  VERSION
5
5
  end
@@ -25,8 +25,10 @@ Gem::Specification.new do |s|
25
25
 
26
26
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
27
  s.add_development_dependency(%q<RedCloth>, [">= 0"])
28
+ s.add_development_dependency('rake', ['~> 0.8.7'])
28
29
  else
29
30
  s.add_dependency(%q<RedCloth>, [">= 0"])
31
+ s.add_dependency('rake', ['~> 0.8.7'])
30
32
  end
31
33
  end
32
34
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radius
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3
4
+ hash: 1
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 7
9
- - 0
10
- version: 0.7.0
9
+ - 1
10
+ version: 0.7.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - John W. Long (me@johnwlong.com)
@@ -34,6 +34,22 @@ dependencies:
34
34
  version: "0"
35
35
  type: :development
36
36
  version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: rake
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ hash: 49
46
+ segments:
47
+ - 0
48
+ - 8
49
+ - 7
50
+ version: 0.8.7
51
+ type: :development
52
+ version_requirements: *id002
37
53
  description: Radius is a powerful tag-based template language for Ruby inspired by the template languages used in MovableType and TextPattern. It uses tags similar to XML, but can be used to generate any form of plain text (HTML, e-mail, etc...).
38
54
  email: me@johnwlong.com
39
55
  executables: []