-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomfy_carousel.gemspec
More file actions
112 lines (107 loc) · 3.91 KB
/
Copy pathcomfy_carousel.gemspec
File metadata and controls
112 lines (107 loc) · 3.91 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
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "comfy_carousel"
s.version = "0.0.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Oleg Khabarov", "The Working Group Inc."]
s.date = "2012-02-08"
s.description = ""
s.email = "oleg@twg.ca"
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"app/assets/javascripts/slides.jquery.js",
"app/assets/javascripts/slides.min.jquery.js",
"app/controllers/admin/carousel/base_controller.rb",
"app/controllers/admin/carousel/carousels_controller.rb",
"app/controllers/admin/carousel/slides_controller.rb",
"app/controllers/application_controller.rb",
"app/helpers/carousel/application_helper.rb",
"app/models/.gitkeep",
"app/models/carousel/carousel.rb",
"app/models/carousel/slide.rb",
"app/views/admin/carousel/_navigation.html.erb",
"app/views/admin/carousel/carousels/_form.html.erb",
"app/views/admin/carousel/carousels/edit.html.erb",
"app/views/admin/carousel/carousels/index.html.erb",
"app/views/admin/carousel/carousels/new.html.erb",
"app/views/admin/carousel/slides/_form.html.erb",
"app/views/admin/carousel/slides/edit.html.erb",
"app/views/admin/carousel/slides/index.html.erb",
"app/views/admin/carousel/slides/new.html.erb",
"app/views/layouts/application.html.erb",
"comfy_carousel.gemspec",
"config.ru",
"config/application.rb",
"config/boot.rb",
"config/database.yml",
"config/environment.rb",
"config/environments/development.rb",
"config/environments/test.rb",
"config/initializers/comfy_carousel.rb",
"config/locales/en.yml",
"config/routes.rb",
"db/migrate/01_create_comfy_carousel.rb",
"db/schema.rb",
"doc/README_FOR_APP",
"lib/comfy_carousel.rb",
"lib/comfy_carousel/configuration.rb",
"lib/comfy_carousel/engine.rb",
"lib/comfy_carousel/form_builder.rb",
"lib/generators/comfy/carousel/README",
"lib/generators/comfy/carousel/carousel_generator.rb",
"lib/tasks/.gitkeep",
"lib/tasks/comfy_carousel.rake",
"log/.gitkeep",
"script/rails",
"test/fixtures/.gitkeep",
"test/fixtures/carousel/carousels.yml",
"test/fixtures/carousel/slides.yml",
"test/fixtures/files/image.jpg",
"test/functional/.gitkeep",
"test/functional/admin/carousel/carousels_controller_test.rb",
"test/functional/admin/carousel/slides_controller_test.rb",
"test/integration/.gitkeep",
"test/performance/browsing_test.rb",
"test/test_helper.rb",
"test/unit/.gitkeep",
"test/unit/carousel_test.rb",
"test/unit/configuration_test.rb",
"test/unit/slide_test.rb",
"vendor/assets/javascripts/.gitkeep",
"vendor/assets/stylesheets/.gitkeep",
"vendor/plugins/.gitkeep"
]
s.homepage = "http://github.com/comfy/comfy_carousel"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.10"
s.summary = "ComfyCarousel is a carousel engine for Rails 3.1+ apps (and ComfortableMexicanSofa)"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rails>, [">= 3.1.0"])
s.add_runtime_dependency(%q<jquery-rails>, [">= 1.0.0"])
s.add_runtime_dependency(%q<paperclip>, [">= 2.3.0"])
else
s.add_dependency(%q<rails>, [">= 3.1.0"])
s.add_dependency(%q<jquery-rails>, [">= 1.0.0"])
s.add_dependency(%q<paperclip>, [">= 2.3.0"])
end
else
s.add_dependency(%q<rails>, [">= 3.1.0"])
s.add_dependency(%q<jquery-rails>, [">= 1.0.0"])
s.add_dependency(%q<paperclip>, [">= 2.3.0"])
end
end