Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 4 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
[submodule "card/mod/machines/vendor/jquery_rails"]
path = card/mod/machines/vendor/jquery_rails
url = https://github.com/rails/jquery-rails
[submodule "card/mod/date/vendor/moment"]
path = card/mod/date/vendor/moment
[submodule "card/gem_mods/date/vendor/moment"]
path = card/gem_mods/date/vendor/moment
url = https://github.com/moment/moment
[submodule "card/mod/date/vendor/tempusdominus"]
path = card/mod/date/vendor/tempusdominus
[submodule "card/gem_mods/date/vendor/tempusdominus"]
path = card/gem_mods/date/vendor/tempusdominus
url = https://github.com/tempusdominus/bootstrap-4
[submodule "card/mod/machines/vendor/jquery_file_upload"]
path = card/mod/machines/vendor/jquery_file_upload
Expand Down
8 changes: 8 additions & 0 deletions card/card.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ Gem::Specification.new do |s|

[
["cardname", version],

# card modules in decko core gems:
["card-mod-date", "~>0.1"],
["card-mod-edit", "~>0.1"],
["card-mod-ace_editor", "~>0.1"],
["card-mod-prosemirror_editor", "~>0.1"],
["card-mod-tinymce_editor", "~>0.1"],

["haml", "~> 5.0"], # markup language used in view API
["jwt", "~> 2.2"], # used in token.rb
["uuid", "~> 2.3"], # universally unique identifier.
Expand Down
21 changes: 21 additions & 0 deletions card/gem_mods/ace_editor/card-mod-ace_editor.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- encoding : utf-8 -*-

Gem::Specification.new do |s|
s.name = "card-mod-ace_editor"
s.version = "0.1"

s.authors = ["Ethan McCutchen", "Philipp Kühl"]
s.email = ["info@decko.org"]

s.summary = "Calendar editor"
s.description = ""
s.homepage = "http://decko.org"
s.licenses = ["GPL-2.0", "GPL-3.0"]

s.files = Dir["VERSION", "README.rdoc", "LICENSE", "GPL", ".yardopts",
"{config,db,lib,set}/**/*"]

s.required_ruby_version = ">= 2.3.0"
s.metadata = { "card-mod" => "ace_editor" }
s.add_runtime_dependency "card-mod-edit", "~> 0.1"
end
Loading