Skip to content

Commit 1e777a4

Browse files
committed
Converting into an engine
1 parent af3844f commit 1e777a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+387
-692
lines changed

.escualo/install/after

-11
This file was deleted.

.escualo/install/first

-11
This file was deleted.

.escualo/jobs/events

-3
This file was deleted.

.escualo/jobs/messages

-3
This file was deleted.

.gitignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@ saml_idp.crt
1818

1919
# Ignore all logfiles and tempfiles.
2020
*.log
21-
/log/*.log
21+
**/log/*.log
2222
**/*~
23-
/tmp
23+
**/tmp/**
2424
*.db
2525

26+
Gemfile.lock
27+
2628
.idea
2729

2830
# Others
@@ -31,3 +33,4 @@ public/assets
3133
coverage/
3234

3335
vendor/cache/**
36+
*.cache

Gemfile

+4-19
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
source 'https://rubygems.org'
2-
ruby '~> 2.3'
3-
4-
gem 'rails', '~> 5.1.3'
2+
gemspec
53

6-
gem 'pg', '~> 0.18.0'
4+
ruby '~> 2.3'
75

86
gem 'uglifier', '~> 2.7'
97

@@ -18,27 +16,14 @@ source 'https://rails-assets.org' do
1816
gem 'rails-assets-momentjs'
1917
end
2018

21-
gem 'mumuki-styles', '~> 1.16'
22-
2319
gem 'puma'
2420

2521
gem 'rails-i18n', '~> 4.0.0'
2622

27-
gem 'font-awesome-rails', '~> 4.7'
2823
gem 'nprogress-rails'
24+
gem 'mumuki-styles', '~> 1.16'
2925

30-
gem 'mumukit-content-type', '~> 1.3'
31-
gem 'mumukit-auth', '~> 7.1'
32-
gem 'mumukit-core', '~> 1.2'
33-
gem 'mumukit-bridge', '~> 3.4'
34-
gem 'mumukit-inspection', '~> 3.1'
35-
gem 'mumukit-nuntius', '~> 6.0'
36-
gem 'mumukit-platform', '~> 0.12'
37-
gem 'mumukit-login', '~> 4.3'
38-
gem 'mumukit-directives', '~>0.3'
39-
40-
gem 'rack', '~> 2.0'
41-
gem 'omniauth', '~> 1.4.0'
26+
gem 'font-awesome-rails', '~> 4.7'
4227

4328
group :test do
4429
gem 'rspec-rails', '~> 3.6'

0 commit comments

Comments
 (0)