-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheffective_regions.gemspec
More file actions
23 lines (19 loc) · 1.03 KB
/
effective_regions.gemspec
File metadata and controls
23 lines (19 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require 'effective_regions/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "effective_regions"
s.version = EffectiveRegions::VERSION
s.email = ["info@codeandeffect.com"]
s.authors = ["Code and Effect"]
s.homepage = "https://github.com/code-and-effect/effective_regions"
s.summary = "Create editable content regions within your existing, ordinary ActionView::Base views, and update content with an actually-good full-screen WYSIWYG editor."
s.description = "Create editable content regions within your existing, ordinary ActionView::Base views, and update content with an actually-good full-screen WYSIWYG editor."
s.licenses = ['MIT']
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", '>= 3.2.0'
s.add_dependency 'effective_resources'
s.add_dependency 'effective_ckeditor'
s.add_dependency 'sassc'
end