public
Description: The Lightweight Static Content framework
Homepage: http://www.staticmatic.net
Clone URL: git://github.com/staticmatic/staticmatic.git
staticmatic / staticmatic.gemspec
100644 114 lines (109 sloc) 4.434 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{staticmatic}
  s.version = "0.10.6"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Stephen Bartholomew"]
  s.date = %q{2009-10-08}
  s.default_executable = %q{staticmatic}
  s.description = %q{Lightweight Static Site Framework}
  s.email = %q{steve@curve21.com}
  s.executables = ["staticmatic"]
  s.extra_rdoc_files = [
    "LICENSE",
     "README.markdown"
  ]
  s.files = [
    "LICENSE",
     "README.markdown",
     "Rakefile",
     "VERSION.yml",
     "bin/staticmatic",
     "lib/staticmatic.rb",
     "lib/staticmatic/base.rb",
     "lib/staticmatic/configuration.rb",
     "lib/staticmatic/error.rb",
     "lib/staticmatic/helpers.rb",
     "lib/staticmatic/mixins/build.rb",
     "lib/staticmatic/mixins/helpers.rb",
     "lib/staticmatic/mixins/render.rb",
     "lib/staticmatic/mixins/rescue.rb",
     "lib/staticmatic/mixins/server.rb",
     "lib/staticmatic/mixins/setup.rb",
     "lib/staticmatic/server.rb",
     "lib/staticmatic/template_error.rb",
     "lib/staticmatic/templates/default/application.haml",
     "lib/staticmatic/templates/default/application.sass",
     "lib/staticmatic/templates/default/index.haml",
     "lib/staticmatic/templates/rescues/default.haml",
     "lib/staticmatic/templates/rescues/template.haml",
     "spec/base_spec.rb",
     "spec/helpers_spec.rb",
     "spec/render_spec.rb",
     "spec/rescue_spec.rb",
     "spec/sandbox/test_site/configuration.rb",
     "spec/sandbox/test_site/site/index",
     "spec/sandbox/test_site/site/index.html",
     "spec/sandbox/test_site/site/layout_test",
     "spec/sandbox/test_site/site/page_with_error",
     "spec/sandbox/test_site/site/page_with_partial_error",
     "spec/sandbox/test_site/site/stylesheets/application.css",
     "spec/sandbox/test_site/site/sub_folder/another_sub_folder/index.html",
     "spec/sandbox/test_site/site/sub_folder/another_sub_folder/index.html.html",
     "spec/sandbox/test_site/site/sub_folder/index.html",
     "spec/sandbox/test_site/src/helpers/application_helper.rb",
     "spec/sandbox/test_site/src/layouts/alternate_layout.haml",
     "spec/sandbox/test_site/src/layouts/application.haml",
     "spec/sandbox/test_site/src/layouts/projects.haml",
     "spec/sandbox/test_site/src/pages/hello_world.erb",
     "spec/sandbox/test_site/src/pages/index.haml",
     "spec/sandbox/test_site/src/pages/layout_test.haml",
     "spec/sandbox/test_site/src/pages/page_with_error.haml",
     "spec/sandbox/test_site/src/pages/page_with_partial_error.haml",
     "spec/sandbox/test_site/src/partials/menu.haml",
     "spec/sandbox/test_site/src/partials/partial_with_error.haml",
     "spec/sandbox/test_site/src/stylesheets/application.sass",
     "spec/sandbox/test_site/src/stylesheets/css_with_error.sass",
     "spec/sandbox/test_site/src/stylesheets/nested/a_nested_stylesheet.sass",
     "spec/sandbox/test_site/src/stylesheets/partials/_forms.sass",
     "spec/server_spec.rb",
     "spec/setup_spec.rb",
     "spec/spec_helper.rb",
     "spec/template_error_spec.rb"
  ]
  s.homepage = %q{http://staticmatic.net}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{staticmatic}
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{Lightweight Static Site Framework}
  s.test_files = [
    "spec/base_spec.rb",
     "spec/helpers_spec.rb",
     "spec/render_spec.rb",
     "spec/rescue_spec.rb",
     "spec/sandbox/test_site/configuration.rb",
     "spec/sandbox/test_site/src/helpers/application_helper.rb",
     "spec/server_spec.rb",
     "spec/setup_spec.rb",
     "spec/spec_helper.rb",
     "spec/template_error_spec.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<haml>, [">= 2.0.0"])
      s.add_runtime_dependency(%q<mongrel>, [">= 1.1.5"])
    else
      s.add_dependency(%q<haml>, [">= 2.0.0"])
      s.add_dependency(%q<mongrel>, [">= 1.1.5"])
    end
  else
    s.add_dependency(%q<haml>, [">= 2.0.0"])
    s.add_dependency(%q<mongrel>, [">= 1.1.5"])
  end
end