public
Description: Simple HTML mockup framework for designers using ERB
Homepage:
Clone URL: git://github.com/scharfie/bones.git
bones / scharfie-bones.gemspec
100644 83 lines (78 sloc) 2.593 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
Gem::Specification.new do |s|
  s.name = "scharfie-bones"
  s.version = "0.2.5"
  s.date = "2009-10-27"
  s.authors = ["Chris Scharf", "Ryan Heath"]
  s.email = "scharfie@gmail.com"
 
  s.summary = "Simple HTML mockup framework for designers using ERB"
  s.description = "Simple HTML mockup framework for designers using ERB"
  s.homepage = "http://github.com/scharfie/bones"
  
  s.has_rdoc = false
 
  s.require_paths = ['lib']
  s.executables = ['bones']
  s.default_executable = 'bones'
  
  s.files = [
    'bin',
    'bin/bones',
    'scharfie-bones.gemspec',
    'lib/bones',
    'lib/bones/cache.rb',
    'lib/bones/initializer.rb',
    'lib/bones/proxy.rb',
    'lib/bones/release.rb',
    'lib/bones/server.rb',
    'lib/bones/static.rb',
    'lib/bones/template.rb',
    'lib/bones/versioned_release.rb',
    'lib/bones/bones.rb',
    'lib/bones/boot.rb',
    'lib/bones/extensions.rb',
    'lib/bones.rb',
    'lib/helpers',
    'lib/helpers/application_helper.rb',
    'lib/helpers/core_helper.rb',
    'lib/layouts',
    'lib/layouts/application.html.erb',
    'lib/pages/directory.html.erb',
    'lib/pages/intro.html.erb',
    'lib/tasks',
    'lib/tasks/bones.rb',
    'Rakefile',
    'README',
    'test',
    'test/example_site',
    'test/example_site/helpers',
    'test/example_site/helpers/custom_helper.rb',
    'test/example_site/layouts',
    'test/example_site/layouts/example_layout.html.erb',
    'test/example_site/pages',
    'test/example_site/pages/about.html.erb',
    'test/example_site/pages/index.html.erb',
    'test/example_site/pages/partials',
    'test/example_site/pages/partials/common',
    'test/example_site/pages/partials/common/_footer.html.erb',
    'test/example_site/pages/things',
    'test/example_site/pages/things/a.html.erb',
    'test/example_site/public',
    'test/example_site/public/images',
    'test/example_site/public/images/.gitignore',
    'test/example_site/public/javascripts',
    'test/example_site/public/javascripts/.gitignore',
    'test/example_site/public/stylesheets',
    'test/example_site/public/stylesheets/.gitignore',
    'test/example_site/public/videos',
    'test/example_site/public/videos/.gitignore',
    'test/test_bones.rb',
    'test/test_cache.rb',
    'test/test_template.rb',
    'test/test_example_site.rb',
    'test/test_helper.rb',
    'pushables',
    'pushables/boot.rb',
    'pushables/config.ru',
    'pushables/Rakefile'
  ]
 
  # Dependencies
  s.add_dependency("rack", [">= 0.3.0"])
  s.add_dependency("activesupport", [">= 2.1.0"])
end