ice 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.markdown +1 -1
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -1
  4. data/ice.gemspec +4 -4
  5. metadata +3 -3
data/README.markdown CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  This project allows user-submitted templates to be written in the javascript programming language. It is similar to Liquid in terms of safety, but uses javascript to leverage the powers of a language most developers are familiar with.
4
4
 
5
- It runs the templates through an erb-ish parser and then uses the [TheRubyRacer Gem](http://github.com/cowboyd/therubyracer) to interpet the javascript using Google's V8 javascript engine. Your users can then write ice templates like:
5
+ It runs the templates through an erb-ish parser and then uses the [therubyracer](http://github.com/cowboyd/therubyracer) to interpet the javascript using Google's V8 javascript engine. Your users can then write ice templates like:
6
6
 
7
7
  <table>
8
8
  <tr><th>Name</th><th>Email</th></tr>
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ begin
12
12
  gem.authors = ["Nate Kidwell"]
13
13
  gem.add_development_dependency "rspec", ">= 1.2.9"
14
14
  gem.add_dependency "therubyracer", "0.7.0"
15
- gem.add_dependency "active_support", "2.2.0"
15
+ gem.add_dependency "active_support", ">= 2.2.0"
16
16
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
17
17
  end
18
18
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
data/ice.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ice}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Nate Kidwell"]
@@ -65,16 +65,16 @@ Gem::Specification.new do |s|
65
65
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
66
66
  s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
67
67
  s.add_runtime_dependency(%q<therubyracer>, ["= 0.7.0"])
68
- s.add_runtime_dependency(%q<active_support>, ["= 2.2.0"])
68
+ s.add_runtime_dependency(%q<active_support>, [">= 2.2.0"])
69
69
  else
70
70
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
71
71
  s.add_dependency(%q<therubyracer>, ["= 0.7.0"])
72
- s.add_dependency(%q<active_support>, ["= 2.2.0"])
72
+ s.add_dependency(%q<active_support>, [">= 2.2.0"])
73
73
  end
74
74
  else
75
75
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
76
76
  s.add_dependency(%q<therubyracer>, ["= 0.7.0"])
77
- s.add_dependency(%q<active_support>, ["= 2.2.0"])
77
+ s.add_dependency(%q<active_support>, [">= 2.2.0"])
78
78
  end
79
79
  end
80
80
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Nate Kidwell
@@ -50,7 +50,7 @@ dependencies:
50
50
  prerelease: false
51
51
  requirement: &id003 !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - "="
53
+ - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  segments:
56
56
  - 2