bonsai 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ -c
2
+ --format progress
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm 1.9.2@bonsai
data/Gemfile CHANGED
@@ -1,12 +1,16 @@
1
+ source 'http://rubygems.org'
2
+
1
3
  gem 'jeweler'
2
- gem 'rspec'
4
+ gem 'rspec', '~> 2.3'
3
5
  gem 'yard'
4
- gem 'tilt'
5
- gem 'mustache'
6
+
7
+ gem 'tilt', '~> 0.9.0'
8
+ gem 'mustache', '~> 0.7.0'
6
9
  gem 'builder'
7
10
  gem 'watch'
8
11
  gem 'sinatra'
9
12
  gem 'maruku'
10
13
  gem 'less'
11
14
  gem 'launchy'
12
- gem 'activesupport'
15
+ gem 'activesupport'
16
+ gem 'i18n'
data/Gemfile.lock CHANGED
@@ -1,44 +1,45 @@
1
1
  GEM
2
+ remote: http://rubygems.org/
2
3
  specs:
3
- activesupport (2.3.5)
4
- builder (2.1.2)
5
- configuration (1.1.0)
6
- gemcutter (0.2.0)
7
- json_pure
8
- net-scp
4
+ activesupport (3.0.3)
5
+ builder (3.0.0)
6
+ configuration (1.2.0)
7
+ diff-lcs (1.1.2)
9
8
  git (1.2.5)
10
- jeweler (1.4.0)
11
- gemcutter (>= 0.1.0)
9
+ i18n (0.5.0)
10
+ jeweler (1.5.2)
11
+ bundler (~> 1.0.0)
12
12
  git (>= 1.2.5)
13
- rubyforge (>= 2.0.0)
14
- json_pure (1.4.3)
13
+ rake
15
14
  launchy (0.3.7)
16
15
  configuration (>= 0.0.5)
17
16
  rake (>= 0.8.1)
18
- less (1.2.20)
17
+ less (1.2.21)
19
18
  mutter (>= 0.4.2)
20
19
  treetop (>= 1.4.2)
21
20
  maruku (0.6.0)
22
21
  syntax (>= 1.0.0)
23
- mustache (0.6.0)
24
- mutter (0.5.2)
25
- net-scp (1.0.2)
26
- net-ssh (>= 1.99.1)
27
- net-ssh (2.0.15)
22
+ mustache (0.7.0)
23
+ mutter (0.5.3)
28
24
  polyglot (0.3.1)
29
25
  rack (1.2.1)
30
26
  rake (0.8.7)
31
- rspec (1.3.0)
32
- rubyforge (2.0.4)
33
- json_pure (>= 1.1.7)
27
+ rspec (2.3.0)
28
+ rspec-core (~> 2.3.0)
29
+ rspec-expectations (~> 2.3.0)
30
+ rspec-mocks (~> 2.3.0)
31
+ rspec-core (2.3.1)
32
+ rspec-expectations (2.3.0)
33
+ diff-lcs (~> 1.1.2)
34
+ rspec-mocks (2.3.0)
34
35
  sinatra (1.0)
35
36
  rack (>= 1.0)
36
37
  syntax (1.0.0)
37
- tilt (0.8)
38
- treetop (1.4.8)
38
+ tilt (0.9)
39
+ treetop (1.4.9)
39
40
  polyglot (>= 0.3.1)
40
41
  watch (0.1.0)
41
- yard (0.2.2)
42
+ yard (0.6.4)
42
43
 
43
44
  PLATFORMS
44
45
  ruby
@@ -46,13 +47,14 @@ PLATFORMS
46
47
  DEPENDENCIES
47
48
  activesupport
48
49
  builder
50
+ i18n
49
51
  jeweler
50
52
  launchy
51
53
  less
52
54
  maruku
53
- mustache
54
- rspec
55
+ mustache (~> 0.7.0)
56
+ rspec (~> 2.3)
55
57
  sinatra
56
- tilt
58
+ tilt (~> 0.9.0)
57
59
  watch
58
60
  yard
data/Rakefile CHANGED
@@ -1,19 +1,4 @@
1
1
  # coding: utf-8
2
- begin
3
- require "rubygems"
4
- require "bundler"
5
- Bundler.setup
6
- rescue LoadError
7
- raise <<-HELP
8
- Bonsai uses the gem bundler to handle its development dependencies under
9
- multiple environments. So if you're testing under 1.8, 1.9.x, jruby or otherwise
10
- you should ensure that you have the `bundler` gem installed.
11
-
12
- Then run `gem bundle`. Following going through these steps you should
13
- not see this error message. If you do, please contact me or raise an issue.
14
- (http://github.com/benschwarz/bonsai/issues)
15
- HELP
16
- end
17
2
 
18
3
  require 'rake'
19
4
 
@@ -32,16 +17,16 @@ begin
32
17
 
33
18
  gem.add_development_dependency "rspec", ">= 1.3.0"
34
19
  gem.add_development_dependency "yard", ">= 0"
35
- gem.add_dependency "tilt", "= 0.5"
36
- gem.add_dependency "mustache", "= 0.5.0"
37
- gem.add_dependency "builder", "= 2.1.2"
38
- gem.add_dependency "watch", "= 0.1.0"
39
- gem.add_dependency "sinatra", "= 0.9.4"
40
- gem.add_dependency "maruku", "= 0.6.0"
41
- gem.add_dependency "less", "= 1.2.17"
42
- gem.add_dependency "rack", "= 1.1.0"
43
- gem.add_dependency "launchy", "= 0.3.3"
44
- gem.add_dependency "activesupport", "= 2.3.5"
20
+ gem.add_dependency "tilt", ">= 0.5"
21
+ gem.add_dependency "mustache", ">= 0.5.0"
22
+ gem.add_dependency "builder", ">= 2.1.2"
23
+ gem.add_dependency "watch", ">= 0.1.0"
24
+ gem.add_dependency "sinatra", ">= 0.9.4"
25
+ gem.add_dependency "maruku", ">= 0.6.0"
26
+ gem.add_dependency "less", ">= 1.2.17"
27
+ gem.add_dependency "rack", ">= 1.2.1"
28
+ gem.add_dependency "launchy", ">= 0.3.3"
29
+ gem.add_dependency "activesupport", ">= 2.3.5"
45
30
 
46
31
  gem.post_install_message = %q{
47
32
 
@@ -60,20 +45,15 @@ rescue LoadError
60
45
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
61
46
  end
62
47
 
63
- require 'spec/rake/spectask'
64
- Spec::Rake::SpecTask.new(:spec) do |spec|
65
- spec.libs << 'lib' << 'spec'
66
- spec.spec_files = FileList['spec/**/*_spec.rb']
67
- end
48
+ require 'rspec/core/rake_task'
49
+
50
+ RSpec::Core::RakeTask.new('spec')
68
51
 
69
- Spec::Rake::SpecTask.new(:rcov) do |spec|
70
- spec.libs << 'lib' << 'spec'
71
- spec.pattern = 'spec/**/*_spec.rb'
52
+ RSpec::Core::RakeTask.new('rcov') do |spec|
72
53
  spec.rcov = true
54
+ spec.rcov_opts = %w[--exclude spec]
73
55
  end
74
56
 
75
- task :spec => :check_dependencies
76
-
77
57
  task :default => :spec
78
58
 
79
59
  begin
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.1
1
+ 1.3.2
@@ -1,4 +1,6 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../lib/bonsai")
1
+ $LOAD_PATH << File.dirname(__FILE__) + "/../lib"
2
+
3
+ require 'bonsai'
2
4
  require 'benchmark'
3
5
 
4
6
  Bonsai.root_dir = File.dirname(__FILE__) + "/../spec/support"
data/bin/bonsai CHANGED
@@ -1,8 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
2
  # coding: utf-8
3
3
 
4
+ require 'bundler/setup'
5
+
4
6
  require 'optparse'
5
- require 'bonsai'
7
+ require File.join(File.dirname(File.dirname(__FILE__)), 'lib/bonsai')
6
8
 
7
9
  banner = %q{
8
10
 
data/bonsai.gemspec CHANGED
@@ -1,136 +1,123 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{bonsai}
8
- s.version = "1.3.1"
8
+ s.version = "1.3.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ben Schwarz"]
12
- s.date = %q{2010-08-03}
12
+ s.date = %q{2010-12-28}
13
13
  s.default_executable = %q{bonsai}
14
14
  s.description = %q{A static site generator that uses the best toolset available}
15
15
  s.email = %q{ben.schwarz@gmail.com}
16
16
  s.executables = ["bonsai"]
17
17
  s.extra_rdoc_files = [
18
18
  "LICENSE",
19
- "README.md"
19
+ "README.md"
20
20
  ]
21
21
  s.files = [
22
22
  ".bundle/config",
23
- ".document",
24
- ".gitignore",
25
- ".kick",
26
- "CHANGES",
27
- "Gemfile",
28
- "Gemfile.lock",
29
- "LICENSE",
30
- "README.md",
31
- "Rakefile",
32
- "VERSION",
33
- "benchmark/associations.rb",
34
- "bin/bonsai",
35
- "bonsai.gemspec",
36
- "lib/bonsai.rb",
37
- "lib/bonsai/console.rb",
38
- "lib/bonsai/exporter.rb",
39
- "lib/bonsai/generate.rb",
40
- "lib/bonsai/navigation.rb",
41
- "lib/bonsai/page.rb",
42
- "lib/bonsai/sitemap.rb",
43
- "lib/bonsai/template.rb",
44
- "lib/bonsai/templates/.gitignore",
45
- "lib/bonsai/templates/content/1.varieties/1.fig/default.yml",
46
- "lib/bonsai/templates/content/1.varieties/2.maple/default.yml",
47
- "lib/bonsai/templates/content/1.varieties/3.magic/images/magic.jpg",
48
- "lib/bonsai/templates/content/1.varieties/3.magic/magic.yml",
49
- "lib/bonsai/templates/content/1.varieties/products.yml",
50
- "lib/bonsai/templates/content/2.cultivation/default.yml",
51
- "lib/bonsai/templates/content/3.history/default.yml",
52
- "lib/bonsai/templates/content/index/default.yml",
53
- "lib/bonsai/templates/public/.htaccess",
54
- "lib/bonsai/templates/public/css/base.less",
55
- "lib/bonsai/templates/public/robots.txt",
56
- "lib/bonsai/templates/site.yml",
57
- "lib/bonsai/templates/templates/default.mustache",
58
- "lib/bonsai/templates/templates/magic.mustache",
59
- "lib/bonsai/templates/templates/products.mustache",
60
- "lib/bonsai/templates/templates/shared/analytics.mustache",
61
- "lib/bonsai/templates/templates/shared/breadcrumbs.mustache",
62
- "lib/bonsai/templates/templates/shared/footer.mustache",
63
- "lib/bonsai/templates/templates/shared/head.mustache",
64
- "lib/bonsai/templates/templates/shared/header.mustache",
65
- "lib/bonsai/templates/templates/shared/nav.mustache",
66
- "lib/bonsai/webserver.rb",
67
- "lib/bonsai/webserver/error.erb",
68
- "lib/core_ext/string.rb",
69
- "spec/bonsai/console_spec.rb",
70
- "spec/bonsai/exporter_spec.rb",
71
- "spec/bonsai/generate_spec.rb",
72
- "spec/bonsai/navigation_spec.rb",
73
- "spec/bonsai/page_spec.rb",
74
- "spec/bonsai/sitemap_spec.rb",
75
- "spec/bonsai/template_spec.rb",
76
- "spec/bonsai_spec.rb",
77
- "spec/spec.opts",
78
- "spec/spec_helper.rb",
79
- "spec/support/broken/content/broken_page/demo-template.yml",
80
- "spec/support/broken/public/empty.txt",
81
- "spec/support/broken/site.yml",
82
- "spec/support/broken/templates/content/index/default.yml",
83
- "spec/support/broken/templates/public/.htaccess",
84
- "spec/support/broken/templates/public/docs/css/base.less",
85
- "spec/support/broken/templates/public/robots.txt",
86
- "spec/support/broken/templates/templates/default.mustache",
87
- "spec/support/content/1.about-us/1.contact/1.child/a_file_asset.txt",
88
- "spec/support/content/1.about-us/1.contact/1.child/demo-template.yml",
89
- "spec/support/content/1.about-us/1.contact/demo-template.yml",
90
- "spec/support/content/1.about-us/1.contact/images/image001.jpg",
91
- "spec/support/content/1.about-us/1.contact/magic/image001.jpg",
92
- "spec/support/content/1.about-us/1.contact/magic/image002.jpg",
93
- "spec/support/content/1.about-us/demo-template.yml",
94
- "spec/support/content/1.about-us/history/001.jpg",
95
- "spec/support/content/1.about-us/history/1_a_file_asset.txt",
96
- "spec/support/content/1.about-us/history/child/a_file_asset.txt",
97
- "spec/support/content/1.about-us/history/child/demo-template.yml",
98
- "spec/support/content/1.about-us/history/demo-template.yml",
99
- "spec/support/content/1.about-us/history/images/image001.jpg",
100
- "spec/support/content/1.about-us/history/magic/image001.jpg",
101
- "spec/support/content/1.about-us/history/magic/image002.jpg",
102
- "spec/support/content/10.many-pages/demo-template.yml",
103
- "spec/support/content/2.products/1.product-a/demo-template.yml",
104
- "spec/support/content/2.products/2.product-b/demo-template.yml",
105
- "spec/support/content/2.products/demo-template.yml",
106
- "spec/support/content/index/demo-template.yml",
107
- "spec/support/content/legals/terms-and-conditions/demo-template.yml",
108
- "spec/support/public/.htaccess",
109
- "spec/support/public/js/script.js",
110
- "spec/support/public/stylesheets/brokenless.less",
111
- "spec/support/public/stylesheets/brokensass.sass",
112
- "spec/support/public/stylesheets/lesscss.css",
113
- "spec/support/public/stylesheets/lesscss.less",
114
- "spec/support/public/stylesheets/sassy.css",
115
- "spec/support/public/stylesheets/sassy.sass",
116
- "spec/support/site.yml",
117
- "spec/support/templates/demo-template.mustache",
118
- "spec/support/templates/partials/inserted.mustache",
119
- "vendor/cache/activesupport-2.3.5.gem",
120
- "vendor/cache/builder-2.1.2.gem",
121
- "vendor/cache/configuration-1.1.0.gem",
122
- "vendor/cache/gemcutter-0.5.0.gem",
123
- "vendor/cache/git-1.2.5.gem",
124
- "vendor/cache/jeweler-1.4.0.gem",
125
- "vendor/cache/json_pure-1.2.3.gem",
126
- "vendor/cache/maruku-0.6.0.gem",
127
- "vendor/cache/rake-0.8.7.gem",
128
- "vendor/cache/rspec-1.3.0.gem",
129
- "vendor/cache/rubyforge-2.0.4.gem",
130
- "vendor/cache/syntax-1.0.0.gem",
131
- "vendor/cache/watch-0.1.0.gem",
132
- "vendor/cache/yard-0.2.2.gem"
23
+ ".document",
24
+ ".kick",
25
+ "CHANGES",
26
+ "Gemfile",
27
+ "Gemfile.lock",
28
+ "LICENSE",
29
+ "README.md",
30
+ "Rakefile",
31
+ "VERSION",
32
+ "benchmark/associations.rb",
33
+ "bin/bonsai",
34
+ "bonsai.gemspec",
35
+ "lib/bonsai.rb",
36
+ "lib/bonsai/console.rb",
37
+ "lib/bonsai/exporter.rb",
38
+ "lib/bonsai/generate.rb",
39
+ "lib/bonsai/navigation.rb",
40
+ "lib/bonsai/page.rb",
41
+ "lib/bonsai/sitemap.rb",
42
+ "lib/bonsai/template.rb",
43
+ "lib/bonsai/templates/.gitignore",
44
+ "lib/bonsai/templates/content/1.varieties/1.fig/default.yml",
45
+ "lib/bonsai/templates/content/1.varieties/2.maple/default.yml",
46
+ "lib/bonsai/templates/content/1.varieties/3.magic/images/magic.jpg",
47
+ "lib/bonsai/templates/content/1.varieties/3.magic/magic.yml",
48
+ "lib/bonsai/templates/content/1.varieties/products.yml",
49
+ "lib/bonsai/templates/content/2.cultivation/default.yml",
50
+ "lib/bonsai/templates/content/3.history/default.yml",
51
+ "lib/bonsai/templates/content/index/default.yml",
52
+ "lib/bonsai/templates/public/.htaccess",
53
+ "lib/bonsai/templates/public/css/base.less",
54
+ "lib/bonsai/templates/public/robots.txt",
55
+ "lib/bonsai/templates/site.yml",
56
+ "lib/bonsai/templates/templates/default.mustache",
57
+ "lib/bonsai/templates/templates/magic.mustache",
58
+ "lib/bonsai/templates/templates/products.mustache",
59
+ "lib/bonsai/templates/templates/shared/analytics.mustache",
60
+ "lib/bonsai/templates/templates/shared/breadcrumbs.mustache",
61
+ "lib/bonsai/templates/templates/shared/footer.mustache",
62
+ "lib/bonsai/templates/templates/shared/head.mustache",
63
+ "lib/bonsai/templates/templates/shared/header.mustache",
64
+ "lib/bonsai/templates/templates/shared/nav.mustache",
65
+ "lib/bonsai/webserver.rb",
66
+ "lib/bonsai/webserver/error.erb",
67
+ "lib/core_ext/string.rb",
68
+ "spec/bonsai/console_spec.rb",
69
+ "spec/bonsai/exporter_spec.rb",
70
+ "spec/bonsai/generate_spec.rb",
71
+ "spec/bonsai/navigation_spec.rb",
72
+ "spec/bonsai/page_spec.rb",
73
+ "spec/bonsai/sitemap_spec.rb",
74
+ "spec/bonsai/template_spec.rb",
75
+ "spec/bonsai_spec.rb",
76
+ "spec/spec.opts",
77
+ "spec/spec_helper.rb",
78
+ "spec/support/broken/content/broken_page/demo-template.yml",
79
+ "spec/support/broken/public/empty.txt",
80
+ "spec/support/broken/site.yml",
81
+ "spec/support/broken/templates/content/index/default.yml",
82
+ "spec/support/broken/templates/public/.htaccess",
83
+ "spec/support/broken/templates/public/docs/css/base.less",
84
+ "spec/support/broken/templates/public/robots.txt",
85
+ "spec/support/broken/templates/templates/default.mustache",
86
+ "spec/support/content/1.about-us/1.contact/1.child/a_file_asset.txt",
87
+ "spec/support/content/1.about-us/1.contact/1.child/demo-template.yml",
88
+ "spec/support/content/1.about-us/1.contact/demo-template.yml",
89
+ "spec/support/content/1.about-us/1.contact/images/image001.jpg",
90
+ "spec/support/content/1.about-us/1.contact/magic/image001.jpg",
91
+ "spec/support/content/1.about-us/1.contact/magic/image002.jpg",
92
+ "spec/support/content/1.about-us/demo-template.yml",
93
+ "spec/support/content/1.about-us/history/001.jpg",
94
+ "spec/support/content/1.about-us/history/1_a_file_asset.txt",
95
+ "spec/support/content/1.about-us/history/child/a_file_asset.txt",
96
+ "spec/support/content/1.about-us/history/child/demo-template.yml",
97
+ "spec/support/content/1.about-us/history/demo-template.yml",
98
+ "spec/support/content/1.about-us/history/images/image001.jpg",
99
+ "spec/support/content/1.about-us/history/magic/image001.jpg",
100
+ "spec/support/content/1.about-us/history/magic/image002.jpg",
101
+ "spec/support/content/10.many-pages/demo-template.yml",
102
+ "spec/support/content/2.products/1.product-a/demo-template.yml",
103
+ "spec/support/content/2.products/2.product-b/demo-template.yml",
104
+ "spec/support/content/2.products/demo-template.yml",
105
+ "spec/support/content/index/demo-template.yml",
106
+ "spec/support/content/legals/terms-and-conditions/demo-template.yml",
107
+ "spec/support/public/.htaccess",
108
+ "spec/support/public/js/script.js",
109
+ "spec/support/public/stylesheets/brokenless.less",
110
+ "spec/support/public/stylesheets/brokensass.sass",
111
+ "spec/support/public/stylesheets/lesscss.css",
112
+ "spec/support/public/stylesheets/lesscss.less",
113
+ "spec/support/public/stylesheets/sassy.css",
114
+ "spec/support/public/stylesheets/sassy.sass",
115
+ "spec/support/site.yml",
116
+ "spec/support/templates/demo-template.mustache",
117
+ "spec/support/templates/partials/inserted.mustache",
118
+ "vendor/yui-compressor/yuicompressor-2.4.2.jar"
133
119
  ]
120
+ s.has_rdoc = false
134
121
  s.homepage = %q{http://github.com/benschwarz/bonsai}
135
122
  s.post_install_message = %q{
136
123
 
@@ -141,20 +128,19 @@ Gem::Specification.new do |s|
141
128
 
142
129
  type `bonsai --help` to get started
143
130
  }
144
- s.rdoc_options = ["--charset=UTF-8"]
145
131
  s.require_paths = ["lib"]
146
132
  s.rubygems_version = %q{1.3.7}
147
133
  s.summary = %q{A static site generator that uses the best toolset available}
148
134
  s.test_files = [
149
135
  "spec/bonsai/console_spec.rb",
150
- "spec/bonsai/exporter_spec.rb",
151
- "spec/bonsai/generate_spec.rb",
152
- "spec/bonsai/navigation_spec.rb",
153
- "spec/bonsai/page_spec.rb",
154
- "spec/bonsai/sitemap_spec.rb",
155
- "spec/bonsai/template_spec.rb",
156
- "spec/bonsai_spec.rb",
157
- "spec/spec_helper.rb"
136
+ "spec/bonsai/exporter_spec.rb",
137
+ "spec/bonsai/generate_spec.rb",
138
+ "spec/bonsai/navigation_spec.rb",
139
+ "spec/bonsai/page_spec.rb",
140
+ "spec/bonsai/sitemap_spec.rb",
141
+ "spec/bonsai/template_spec.rb",
142
+ "spec/bonsai_spec.rb",
143
+ "spec/spec_helper.rb"
158
144
  ]
159
145
 
160
146
  if s.respond_to? :specification_version then
@@ -162,45 +148,84 @@ Gem::Specification.new do |s|
162
148
  s.specification_version = 3
163
149
 
164
150
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
151
+ s.add_runtime_dependency(%q<jeweler>, [">= 0"])
152
+ s.add_runtime_dependency(%q<rspec>, [">= 0"])
153
+ s.add_runtime_dependency(%q<yard>, [">= 0"])
154
+ s.add_runtime_dependency(%q<tilt>, ["~> 0.5.0"])
155
+ s.add_runtime_dependency(%q<mustache>, ["~> 0.5.0"])
156
+ s.add_runtime_dependency(%q<builder>, [">= 0"])
157
+ s.add_runtime_dependency(%q<watch>, [">= 0"])
158
+ s.add_runtime_dependency(%q<sinatra>, [">= 0"])
159
+ s.add_runtime_dependency(%q<maruku>, [">= 0"])
160
+ s.add_runtime_dependency(%q<less>, [">= 0"])
161
+ s.add_runtime_dependency(%q<launchy>, [">= 0"])
162
+ s.add_runtime_dependency(%q<activesupport>, [">= 0"])
163
+ s.add_runtime_dependency(%q<i18n>, [">= 0"])
165
164
  s.add_development_dependency(%q<rspec>, [">= 1.3.0"])
166
165
  s.add_development_dependency(%q<yard>, [">= 0"])
167
- s.add_runtime_dependency(%q<tilt>, ["= 0.5"])
168
- s.add_runtime_dependency(%q<mustache>, ["= 0.5.0"])
169
- s.add_runtime_dependency(%q<builder>, ["= 2.1.2"])
170
- s.add_runtime_dependency(%q<watch>, ["= 0.1.0"])
171
- s.add_runtime_dependency(%q<sinatra>, ["= 0.9.4"])
172
- s.add_runtime_dependency(%q<maruku>, ["= 0.6.0"])
173
- s.add_runtime_dependency(%q<less>, ["= 1.2.17"])
174
- s.add_runtime_dependency(%q<rack>, ["= 1.1.0"])
175
- s.add_runtime_dependency(%q<launchy>, ["= 0.3.3"])
176
- s.add_runtime_dependency(%q<activesupport>, ["= 2.3.5"])
166
+ s.add_runtime_dependency(%q<tilt>, [">= 0.5"])
167
+ s.add_runtime_dependency(%q<mustache>, [">= 0.5.0"])
168
+ s.add_runtime_dependency(%q<builder>, [">= 2.1.2"])
169
+ s.add_runtime_dependency(%q<watch>, [">= 0.1.0"])
170
+ s.add_runtime_dependency(%q<sinatra>, [">= 0.9.4"])
171
+ s.add_runtime_dependency(%q<maruku>, [">= 0.6.0"])
172
+ s.add_runtime_dependency(%q<less>, [">= 1.2.17"])
173
+ s.add_runtime_dependency(%q<rack>, [">= 1.2.1"])
174
+ s.add_runtime_dependency(%q<launchy>, [">= 0.3.3"])
175
+ s.add_runtime_dependency(%q<activesupport>, [">= 2.3.5"])
177
176
  else
177
+ s.add_dependency(%q<jeweler>, [">= 0"])
178
+ s.add_dependency(%q<rspec>, [">= 0"])
179
+ s.add_dependency(%q<yard>, [">= 0"])
180
+ s.add_dependency(%q<tilt>, ["~> 0.5.0"])
181
+ s.add_dependency(%q<mustache>, ["~> 0.5.0"])
182
+ s.add_dependency(%q<builder>, [">= 0"])
183
+ s.add_dependency(%q<watch>, [">= 0"])
184
+ s.add_dependency(%q<sinatra>, [">= 0"])
185
+ s.add_dependency(%q<maruku>, [">= 0"])
186
+ s.add_dependency(%q<less>, [">= 0"])
187
+ s.add_dependency(%q<launchy>, [">= 0"])
188
+ s.add_dependency(%q<activesupport>, [">= 0"])
189
+ s.add_dependency(%q<i18n>, [">= 0"])
178
190
  s.add_dependency(%q<rspec>, [">= 1.3.0"])
179
191
  s.add_dependency(%q<yard>, [">= 0"])
180
- s.add_dependency(%q<tilt>, ["= 0.5"])
181
- s.add_dependency(%q<mustache>, ["= 0.5.0"])
182
- s.add_dependency(%q<builder>, ["= 2.1.2"])
183
- s.add_dependency(%q<watch>, ["= 0.1.0"])
184
- s.add_dependency(%q<sinatra>, ["= 0.9.4"])
185
- s.add_dependency(%q<maruku>, ["= 0.6.0"])
186
- s.add_dependency(%q<less>, ["= 1.2.17"])
187
- s.add_dependency(%q<rack>, ["= 1.1.0"])
188
- s.add_dependency(%q<launchy>, ["= 0.3.3"])
189
- s.add_dependency(%q<activesupport>, ["= 2.3.5"])
192
+ s.add_dependency(%q<tilt>, [">= 0.5"])
193
+ s.add_dependency(%q<mustache>, [">= 0.5.0"])
194
+ s.add_dependency(%q<builder>, [">= 2.1.2"])
195
+ s.add_dependency(%q<watch>, [">= 0.1.0"])
196
+ s.add_dependency(%q<sinatra>, [">= 0.9.4"])
197
+ s.add_dependency(%q<maruku>, [">= 0.6.0"])
198
+ s.add_dependency(%q<less>, [">= 1.2.17"])
199
+ s.add_dependency(%q<rack>, [">= 1.2.1"])
200
+ s.add_dependency(%q<launchy>, [">= 0.3.3"])
201
+ s.add_dependency(%q<activesupport>, [">= 2.3.5"])
190
202
  end
191
203
  else
204
+ s.add_dependency(%q<jeweler>, [">= 0"])
205
+ s.add_dependency(%q<rspec>, [">= 0"])
206
+ s.add_dependency(%q<yard>, [">= 0"])
207
+ s.add_dependency(%q<tilt>, ["~> 0.5.0"])
208
+ s.add_dependency(%q<mustache>, ["~> 0.5.0"])
209
+ s.add_dependency(%q<builder>, [">= 0"])
210
+ s.add_dependency(%q<watch>, [">= 0"])
211
+ s.add_dependency(%q<sinatra>, [">= 0"])
212
+ s.add_dependency(%q<maruku>, [">= 0"])
213
+ s.add_dependency(%q<less>, [">= 0"])
214
+ s.add_dependency(%q<launchy>, [">= 0"])
215
+ s.add_dependency(%q<activesupport>, [">= 0"])
216
+ s.add_dependency(%q<i18n>, [">= 0"])
192
217
  s.add_dependency(%q<rspec>, [">= 1.3.0"])
193
218
  s.add_dependency(%q<yard>, [">= 0"])
194
- s.add_dependency(%q<tilt>, ["= 0.5"])
195
- s.add_dependency(%q<mustache>, ["= 0.5.0"])
196
- s.add_dependency(%q<builder>, ["= 2.1.2"])
197
- s.add_dependency(%q<watch>, ["= 0.1.0"])
198
- s.add_dependency(%q<sinatra>, ["= 0.9.4"])
199
- s.add_dependency(%q<maruku>, ["= 0.6.0"])
200
- s.add_dependency(%q<less>, ["= 1.2.17"])
201
- s.add_dependency(%q<rack>, ["= 1.1.0"])
202
- s.add_dependency(%q<launchy>, ["= 0.3.3"])
203
- s.add_dependency(%q<activesupport>, ["= 2.3.5"])
219
+ s.add_dependency(%q<tilt>, [">= 0.5"])
220
+ s.add_dependency(%q<mustache>, [">= 0.5.0"])
221
+ s.add_dependency(%q<builder>, [">= 2.1.2"])
222
+ s.add_dependency(%q<watch>, [">= 0.1.0"])
223
+ s.add_dependency(%q<sinatra>, [">= 0.9.4"])
224
+ s.add_dependency(%q<maruku>, [">= 0.6.0"])
225
+ s.add_dependency(%q<less>, [">= 1.2.17"])
226
+ s.add_dependency(%q<rack>, [">= 1.2.1"])
227
+ s.add_dependency(%q<launchy>, [">= 0.3.3"])
228
+ s.add_dependency(%q<activesupport>, [">= 2.3.5"])
204
229
  end
205
230
  end
206
231