forked from AlchemyCMS/alchemy_cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alchemy_cms.gemspec
71 lines (58 loc) · 3.39 KB
/
alchemy_cms.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'alchemy/version'
Gem::Specification.new do |gem|
gem.name = 'alchemy_cms'
gem.version = Alchemy::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ['Thomas von Deyen', 'Robin Boening', 'Marc Schettke', 'Hendrik Mans', 'Carsten Fregin', 'Martin Meyerhoff']
gem.email = ['[email protected]']
gem.homepage = 'https://alchemy-cms.com'
gem.summary = 'A powerful, userfriendly and flexible CMS for Rails 4'
gem.description = 'Alchemy is a powerful, userfriendly and flexible Rails 4 CMS.'
gem.requirements << 'ImageMagick (libmagick), v6.6 or greater.'
gem.required_ruby_version = '>= 2.0.0'
gem.license = 'BSD New'
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^spec/}) }
gem.require_paths = ['lib']
gem.add_runtime_dependency 'active_model_serializers', ['~> 0.9.0']
gem.add_runtime_dependency 'acts_as_list', ['~> 0.3']
gem.add_runtime_dependency 'acts-as-taggable-on', ['~> 4.0']
gem.add_runtime_dependency 'awesome_nested_set', ['~> 3.1']
gem.add_runtime_dependency 'bourbon', ['~> 4.2']
gem.add_runtime_dependency 'cancancan', ['~> 1.9']
gem.add_runtime_dependency 'coffee-rails', ['~> 4.0']
gem.add_runtime_dependency 'dragonfly', ['~> 1.0.7']
gem.add_runtime_dependency 'dragonfly_svg', ['~> 0.0.4']
gem.add_runtime_dependency 'handlebars_assets', ['~> 0.23']
gem.add_runtime_dependency 'jquery-rails', ['~> 4.0']
gem.add_runtime_dependency 'jquery-ui-rails', ['~> 5.0.0']
gem.add_runtime_dependency 'kaminari', ['~> 0.15']
gem.add_runtime_dependency 'magiclabs-userstamp', ['~> 3.0']
gem.add_runtime_dependency 'non-stupid-digest-assets', ['~> 1.0.8']
gem.add_runtime_dependency 'rails', ['>= 4.2.0', '< 5.0']
gem.add_runtime_dependency 'ransack', ['~> 1.4']
gem.add_runtime_dependency 'request_store', ['~> 1.2']
gem.add_runtime_dependency 'responders', ['~> 2.0']
gem.add_runtime_dependency 'select2-rails', ['>= 3.5.9.1', '< 4.0']
gem.add_runtime_dependency 'simple_form', ['~> 3.0']
gem.add_runtime_dependency 'turbolinks', ['>= 2.5']
gem.post_install_message = <<-MSG
-------------------------------------------------------------
Thank you for installing Alchemy CMS
-------------------------------------------------------------
- Create a new standalone Alchemy project:
$ alchemy new my_project_name
- Complete the installation in an existing Rails application:
$ bin/rake alchemy:install
- Complete the upgrade of an existing Alchemy installation:
$ bin/rake alchemy:upgrade
and follow the onscreen instructions.
Need help? Try:
* http://stackoverflow.com/questions/tagged/alchemy-cms
* http://groups.google.com/group/alchemy-cms
* irc://irc.freenode.net#alchemy_cms
-------------------------------------------------------------
MSG
end