-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchemistry.gemspec
More file actions
38 lines (32 loc) · 1.18 KB
/
chemistry.gemspec
File metadata and controls
38 lines (32 loc) · 1.18 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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "chemistry/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "chemistry"
s.version = Chemistry::VERSION
s.authors = ["Will Ross"]
s.email = ["will@spanner.org"]
s.homepage = "https://spanner.org/os/chemistry"
s.summary = "A compact and modern content management system."
s.description = "Add chemistry to your site for a modern and lightweight page-editing toolkit."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails"
s.add_dependency 'cancancan'
s.add_dependency 'paperclip', "~> 6.0"
s.add_dependency "paperclip-av-transcoder"
s.add_dependency 'aws-sdk-s3'
s.add_dependency 'video_info'
s.add_dependency "kaminari"
s.add_dependency 'jsonapi-serializer'
s.add_dependency 'acts_as_list'
s.add_dependency 'colorize'
s.add_dependency 'settingslogic'
s.add_dependency 'searchkick'
s.add_dependency 'mustache'
# UI
s.add_dependency "haml"
s.add_dependency 'haml_coffee_assets'
s.add_development_dependency "sqlite3"
end