-
Notifications
You must be signed in to change notification settings - Fork 10
/
refinerycms-theming.gemspec
88 lines (85 loc) · 3.62 KB
/
refinerycms-theming.gemspec
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
Gem::Specification.new do |s|
s.name = %q{refinerycms-theming}
s.version = %q{1.0.1}
s.description = %q{Theming functionality for the Refinery CMS project, extracted from Refinery CMS core.}
s.date = %q{2011-04-05}
s.summary = %q{Theming functionality for the Refinery CMS project.}
s.email = %q{[email protected]}
s.homepage = %q{http://refinerycms.com}
s.authors = %w(Resolve\ Digital)
s.license = %q{MIT}
s.require_paths = %w(lib)
s.files = [
'features',
'features/step_definitions',
'features/step_definitions/theme_generator_steps.rb',
'features/theme_generator.feature',
'lib',
'lib/gemspec.rb',
'lib/generators',
'lib/generators/refinery_theme',
'lib/generators/refinery_theme/Rakefile',
'lib/generators/refinery_theme/README',
'lib/generators/refinery_theme/refinery_theme_generator.rb',
'lib/generators/refinery_theme/templates',
'lib/generators/refinery_theme/templates/javascripts',
'lib/generators/refinery_theme/templates/javascripts/application.js',
'lib/generators/refinery_theme/templates/stylesheets',
'lib/generators/refinery_theme/templates/stylesheets/application.css',
'lib/generators/refinery_theme/templates/stylesheets/formatting.css',
'lib/generators/refinery_theme/templates/stylesheets/home.css',
'lib/generators/refinery_theme/templates/views',
'lib/generators/refinery_theme/templates/views/layouts',
'lib/generators/refinery_theme/templates/views/layouts/application.html.erb',
'lib/generators/refinery_theme/templates/views/pages',
'lib/generators/refinery_theme/templates/views/pages/home.html.erb',
'lib/generators/refinery_theme/templates/views/pages/show.html.erb',
'lib/generators/refinery_theme/USAGE',
'lib/refinery',
'lib/refinery/theme_server.rb',
'lib/refinerycms-theming.rb',
'lib/theme.rb',
'lib/theming.rb',
'license.md',
'readme.md',
'refinerycms-theming.gemspec',
'themes',
'themes/demolicious',
'themes/demolicious/images',
'themes/demolicious/images/footer_background.png',
'themes/demolicious/images/header_background.png',
'themes/demolicious/LICENSE',
'themes/demolicious/README',
'themes/demolicious/stylesheets',
'themes/demolicious/stylesheets/application.css',
'themes/demolicious/stylesheets/formatting.css',
'themes/demolicious/stylesheets/home.css',
'themes/demolicious/stylesheets/ie6.css',
'themes/demolicious/stylesheets/ie7.css',
'themes/demolicious/views',
'themes/demolicious/views/layouts',
'themes/demolicious/views/layouts/application.html.erb',
'themes/demolicious/views/pages',
'themes/demolicious/views/pages/home.html.erb',
'themes/demolicious/views/pages/show.html.erb',
'themes/hemingway',
'themes/hemingway/images',
'themes/hemingway/images/archives.gif',
'themes/hemingway/images/footer_black.gif',
'themes/hemingway/images/kyle-header.jpg',
'themes/hemingway/images/readon_black.gif',
'themes/hemingway/images/search.gif',
'themes/hemingway/images/spinner.gif',
'themes/hemingway/images/trackback_pingback.gif',
'themes/hemingway/LICENSE',
'themes/hemingway/README',
'themes/hemingway/stylesheets',
'themes/hemingway/stylesheets/application.css',
'themes/hemingway/stylesheets/formatting.css',
'themes/hemingway/stylesheets/home.css',
'themes/hemingway/views',
'themes/hemingway/views/layouts',
'themes/hemingway/views/layouts/application.html.erb'
]
s.add_dependency('refinerycms-core', '>= 0.9.9.15')
end