jinda 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d9ea8a9eb5447dcf631c54baa7447fe32d8c95d9f64c02fa31fa9efaa0efbf5
4
- data.tar.gz: dde9f196a7afa3935920460380a0211c4c5200eb334f233023c4ff0e0a611f79
3
+ metadata.gz: 13e65da953b86be80782472a639ce0db6c7241306be1bc9123fe5ae867d2640f
4
+ data.tar.gz: ca89e71e50c928433c7eacc43a1c25aca60831c1fd0283629205a22eae9d9bb1
5
5
  SHA512:
6
- metadata.gz: cc8b39e406bdf1257ab4bf2aab7988dabf0f3b3702f18ac36edf83047d0d1b875d11cb5690d0804b46ad423af4fb09f64356f98bc10392cf68d81e9f4c02522e
7
- data.tar.gz: 399b2d90cb3a41ad1c22c035d8fc31bb62780a5d84560e35a693280d1978072df3002e4268b2f0779aa0195cc783a5bebe32e720c746b41411bf7e76b4339023
6
+ metadata.gz: af36be7388480e92742cac5a882c154791e6949c65402b45876b35758f0ba928d6428192facd47a6c52f90ef1eda738696617fc07b3468021d33ed13bb3a45b7
7
+ data.tar.gz: d5eb257e524d2233a316af7b87770c537a0de19ac64e6c0dc32993eeb45e30136f7136dce45ea87a6fddd6375651b1dba078c2f7139ac2ff99fd09427a7c1955
data/README.md CHANGED
@@ -36,7 +36,7 @@ app without ActiveRecord
36
36
 
37
37
  ## Add jinda to your Gemfile:
38
38
 
39
- gem 'jinda', '~> 0.3.1'
39
+ gem 'jinda', '~> 0.3.2'
40
40
 
41
41
  For Development (most updated)
42
42
 
@@ -84,7 +84,7 @@ module Jinda
84
84
  route "post '/jinda/pending' => 'jinda#index'"
85
85
  route "post '/jinda/init' => 'jinda#init'"
86
86
  route "jinda_methods.each do \|aktion\| get \"/jinda/\#\{aktion\}\" => \"jinda#\#\{aktion\}\" end"
87
- route "jinda_methods += ['init','run','run_do','run_form','end_form']"
87
+ route "jinda_methods += ['init','run','run_do','run_form','end_form','error_logs']"
88
88
  route "jinda_methods = ['pending','status','search','doc','logs','ajax_notice']"
89
89
  route "\# start jiinda method routes"
90
90
  end
@@ -18,7 +18,7 @@
18
18
  //= require jqm/iscroll-wrapper
19
19
  //= require jqm/iscroll
20
20
  //= require jqm/jinda
21
- //= require turbolinks
21
+ // require turbolinks
22
22
  //= require jqm/disable_enter_key.js
23
23
  //= require ckeditor/init
24
24
 
@@ -1,4 +1,4 @@
1
1
  <div class="field" data-role="fieldcontain">
2
2
  <%= label_tag :code, 'User code' %>
3
- <%= select_tag :code, options_from_collection_for_select(User.all.asc(:code), :code, :code), "data-native-menu"=>"false" %>
3
+ <%= select_tag :code, options_from_collection_for_select(Jinda::User.all.asc(:code), :code, :code), "data-native-menu"=>"false" %>
4
4
  </div>
@@ -1,40 +1,41 @@
1
- %div(style="text-align:center")
2
- = image_tag "logo_jinda.png"
3
-
4
-
5
- %h2 Current gems version found:
6
- %ul
7
- %li Ruby Version #{RUBY_VERSION }
8
- %li Rails Version #{Rails.version }
9
- %li gem jinda #{Gem.loaded_specs['jinda'].version}
10
-
11
-
12
-
13
- %h2 Recently tested with:
14
- %ul
15
- %li Rubygems 2.5.0
16
- %li Rails 5.2.1
17
- %li rails new YOURAPP --skip-test-unit --skip-bundle --skip-active-record
18
- %li (rails new YOURAPP -BOT)
19
-
20
-
21
- %h2 Installation
22
- %ul
23
- %li add gem 'jinda', '0.3.1'
24
- %li bundle
25
- %li rails generate jinda:install
26
- %li bundle
27
- %li rails generate jinda:config
28
- %li rails jinda:seed, will create initial user:password admin:secret
29
- %li when update app/jinda/index.mm, run rake jinda:update
30
-
31
- %h2 Option: Themes available: Jinda_adminbsb, Jinda_adminlte
32
- %ul
33
- %li To install gem 'jinda_adminlte'
34
- %li Install
35
- %li gem 'jinda_adminlte'
36
- %li Then
37
- %li $ bundle
38
- %li $ rails generate jinda_adminlte:install
1
+ .container
2
+ %div(style="text-align:center")
3
+ = image_tag "logo_jinda.png"
4
+
5
+
6
+ %h2 Current gems version found:
7
+ %ul
8
+ %li Ruby Version #{RUBY_VERSION }
9
+ %li Rails Version #{Rails.version }
10
+ %li gem jinda #{Gem.loaded_specs['jinda'].version}
11
+
12
+
13
+
14
+ %h2 Recently tested with:
15
+ %ul
16
+ %li Rubygems 2.5.0
17
+ %li Rails 5.2.1
18
+ %li rails new YOURAPP --skip-test-unit --skip-bundle --skip-active-record
19
+ %li (rails new YOURAPP -BOT)
20
+
21
+
22
+ %h2 Installation
23
+ %ul
24
+ %li add gem 'jinda', '0.3.2'
25
+ %li bundle
26
+ %li rails generate jinda:install
27
+ %li bundle
28
+ %li rails generate jinda:config
29
+ %li rails jinda:seed, will create initial user:password admin:secret
30
+ %li when update app/jinda/index.mm, run rake jinda:update
31
+
32
+ %h2 Option: Themes available: Jinda_adminbsb, Jinda_adminlte
33
+ %ul
34
+ %li To install gem 'jinda_adminlte'
35
+ %li Install
36
+ %li gem 'jinda_adminlte'
37
+ %li Then
38
+ %li $ bundle
39
+ %li $ rails generate jinda_adminlte:install
39
40
 
40
41
 
@@ -47,8 +47,8 @@ module Jinda
47
47
  # skip #
48
48
  # Rails 5.2 not allow to use js inline call
49
49
  render inline: "<script>window.location.replace('#{url}')</script>"
50
- #redirect_to url
51
- #render js: "window.location.replace(\'#{url}\')"
50
+ # redirect_to url
51
+ # render js: "window.location.replace(\'#{url}\')"
52
52
  end
53
53
 
54
54
  # def refresh_to
@@ -1,3 +1,3 @@
1
1
  module Jinda
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
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.3.1
4
+ version: 0.3.2
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: 2018-10-29 00:00:00.000000000 Z
12
+ date: 2019-03-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -111,40 +111,40 @@ dependencies:
111
111
  name: activesupport
112
112
  requirement: !ruby/object:Gem::Requirement
113
113
  requirements:
114
- - - "~>"
114
+ - - ">="
115
115
  - !ruby/object:Gem::Version
116
116
  version: 4.1.11
117
- - - ">="
117
+ - - "~>"
118
118
  - !ruby/object:Gem::Version
119
119
  version: 4.1.11
120
120
  type: :development
121
121
  prerelease: false
122
122
  version_requirements: !ruby/object:Gem::Requirement
123
123
  requirements:
124
- - - "~>"
124
+ - - ">="
125
125
  - !ruby/object:Gem::Version
126
126
  version: 4.1.11
127
- - - ">="
127
+ - - "~>"
128
128
  - !ruby/object:Gem::Version
129
129
  version: 4.1.11
130
130
  - !ruby/object:Gem::Dependency
131
131
  name: mongoid
132
132
  requirement: !ruby/object:Gem::Requirement
133
133
  requirements:
134
- - - "~>"
134
+ - - ">="
135
135
  - !ruby/object:Gem::Version
136
136
  version: 4.1.11
137
- - - ">="
137
+ - - "~>"
138
138
  - !ruby/object:Gem::Version
139
139
  version: 4.1.11
140
140
  type: :development
141
141
  prerelease: false
142
142
  version_requirements: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - "~>"
144
+ - - ">="
145
145
  - !ruby/object:Gem::Version
146
146
  version: 4.1.11
147
- - - ">="
147
+ - - "~>"
148
148
  - !ruby/object:Gem::Version
149
149
  version: 4.1.11
150
150
  - !ruby/object:Gem::Dependency
@@ -465,7 +465,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
465
465
  version: '0'
466
466
  requirements: []
467
467
  rubyforge_project:
468
- rubygems_version: 2.7.4
468
+ rubygems_version: 2.7.9
469
469
  signing_key:
470
470
  specification_version: 4
471
471
  summary: 'Rails workflow from mind map: Freemind'