jinda 0.7.0.4 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e005b8c5e10b6bea34554b5539ecd3b6d9e8ef8f5077d7dccff000523b59f04c
4
- data.tar.gz: 5f92f912934ae5936edd5ab9a6b2bc0dd5ba4a497e13b78ec89ebc3f35f8c9eb
3
+ metadata.gz: d49fa24aa2e25021a773b5736e482b5d8478b3a96440c9655fa5f858b59ca4a4
4
+ data.tar.gz: 50fcacd6f6bb71d63703c1db158b2722b5a1302f98682308f0d22a905a5dadb9
5
5
  SHA512:
6
- metadata.gz: 2ed46b40d167ec06f330f745982dde313379e44049b3cd752db9913818ff4b92042ffe730a53e62231fac887b80ac467987a291c9dd8b1891eb0a2fee354c944
7
- data.tar.gz: 7bb1ddc0a2d39f131020e5bb18ec6f58e97d9f251c5f1df10f3dae5577a56115ebdbbc8f8f57d5c838d4172227bf616d15d535d7bc772c2fed01a0bacc52b5db
6
+ metadata.gz: 401cb729865c3138c92668151db6af90f53e5e1c6d3583d35b9e0730e7be1b391a0d862cb9e810cf083678557e7ed3a0726749e44537883c0b9aa9c020e81f91
7
+ data.tar.gz: 6ef731fb5b4d44c08c6fdfe21a552a3c6a881fbd0ec6578fe78cb56d93903da34ec1bbf42ef9b7474893a6f47bc6f8f9930ff5bff8140c36afdae85d3ae974d7
data/README.md CHANGED
@@ -15,7 +15,7 @@ Rails Application Generator using Freemind
15
15
  These versions works for sure but others may do.
16
16
 
17
17
  * Ruby 2.7.1
18
- * Rails 6.0.3
18
+ * Rails 6.1.0
19
19
  * MongoDB 6
20
20
  * Freemind 1.0.1
21
21
 
@@ -18,9 +18,12 @@ module JindaRunConcern
18
18
  # Check if help file available for this form
19
19
  ###############################################################################################
20
20
  @help = File.read(fhelp) if File.exists?(fhelp)
21
- f= "app/views/#{service.module.code}/#{service.code}/#{@runseq.code}.html.erb"
22
- if File.file?(f)
23
- @ui= File.read(f)
21
+ f1= "app/views/#{service.module.code}/#{service.code}/#{@runseq.code}.html.erb"
22
+ f2= "app/views/#{service.module.code}/#{service.code}/#{@runseq.code}.html.haml"
23
+ if File.file?(f1)
24
+ @ui= File.read(f1)
25
+ elsif File.file?(f2)
26
+ @ui= File.read(f2)
24
27
  else
25
28
  # flash[:notice]= "Error: Can not find the view file for this controller"
26
29
  ma_log "Error: Can not find the view file for this controller"
@@ -20,7 +20,7 @@
20
20
  %b Recently tested with:
21
21
  %ul
22
22
  %li Rubygems 2.7.1
23
- %li Rails 6.0.3
23
+ %li Rails 6.1.0
24
24
  %div.col-lg-4.col-md-4.col-xs-12
25
25
  %div.small-box.bg-yellow
26
26
  %div.inner
@@ -17,7 +17,7 @@ module Jinda
17
17
  gem 'jquery-turbolinks', '2.1.0'
18
18
  gem 'mongo', '2.11.3'
19
19
  gem 'bson', '4.4.2'
20
- gem 'mongoid', '7.1.0.rc0'
20
+ gem 'mongoid', git: 'git@github.com:kul1/mongoid.git'
21
21
  gem 'turbolinks_render'
22
22
  gem 'nokogiri', '~> 1.11.0'
23
23
  gem 'haml', '~> 5.1', '>= 5.1.2'
@@ -32,7 +32,7 @@ module Jinda
32
32
  gem 'omniauth-identity', '~> 1.1.1'
33
33
  gem 'omniauth-facebook', '6.0.0'
34
34
  gem 'omniauth-google-oauth2', '0.8.0'
35
- gem 'dotenv-rails', '2.7.5'
35
+ gem 'dotenv-rails'
36
36
  gem 'cloudinary', '1.13.2'
37
37
  gem 'kaminari', '1.2.0'
38
38
  gem 'kaminari-mongoid', '1.0.1'
@@ -1,3 +1,3 @@
1
1
  module Jinda
2
- VERSION = "0.7.0.4"
2
+ VERSION = "0.7.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jinda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0.4
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prateep Kul
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2021-01-11 00:00:00.000000000 Z
12
+ date: 2021-01-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -59,20 +59,6 @@ dependencies:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: 7.1.0
62
- - !ruby/object:Gem::Dependency
63
- name: rails
64
- requirement: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "<"
67
- - !ruby/object:Gem::Version
68
- version: '6.1'
69
- type: :runtime
70
- prerelease: false
71
- version_requirements: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "<"
74
- - !ruby/object:Gem::Version
75
- version: '6.1'
76
62
  description: 'Generate Rails workflow from mind map: Freemind'
77
63
  email:
78
64
  - 1.0@kul.asia