jinda 0.7.5.3 → 0.7.5.4

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: 913d3ff0fb61e74a15477a65eb7f16806ca9fa364cdadb57a6746d4e3176dd69
4
- data.tar.gz: ca642e667d15990c4e7648a569b55de894b1ecf4fc884265db9b1a523c1b8480
3
+ metadata.gz: ee2a5a7ffea60abcbb7b1a2e7fac2fd16cd90f4aa77887eafa3363c66f677cc6
4
+ data.tar.gz: 61a2f45ac00392816e11fab72d79dd6c162b8cade1ea46740ce9eaeb64c539f6
5
5
  SHA512:
6
- metadata.gz: 0d74c12ca10291f6665f50da4ada71d3f7b965354f50fb90f097072cb80bd8cd5d9c53e3fff0239dbf8b7f9c81a5b4c9a5a9591f033f163c09bf53880cb0990c
7
- data.tar.gz: 9a8e647a0e30efb91bae8f91e93b2e7fd45a6e7548d3d8aad277e641893279be5d4d15e33338f4af09340edbf2193037b1f0559b4aab4b98c953e7c38214f611
6
+ metadata.gz: 4e703d4c8fcd6aed9b09a4e51b75c1418b86e850ee2177094a177cd2e9360bf967fad78141d59b59e42e075286a8ebc1a523abacca157d557255d3632adfd51a
7
+ data.tar.gz: d17fdccc2c4787d1cd8dff612c310ec39a07139ac7e8a03311c7ddf7ca2713f95d7177eeb42afb788fa8c15a610c75f03545cfe83d99d93bea668e233f09637b
@@ -35,6 +35,7 @@ module Jinda
35
35
  ["cloudinary", "1.13.2"],
36
36
  ["kaminari", "1.2.0"],
37
37
  ["jquery-rails", "4.3.5"],
38
+ ["mongoid"],
38
39
  ["rexml", "~> 3.2.4"]
39
40
 
40
41
  ]
@@ -43,8 +44,7 @@ module Jinda
43
44
  [
44
45
  ["mongoid-paperclip", require: "mongoid_paperclip"],
45
46
  ["kaminari-mongoid", "1.0.1"],
46
- ["nokogiri", "~> 1.11.0"],
47
- ["mongoid", git: "git@github.com:kul1/mongoid.git"]
47
+ ["nokogiri", "~> 1.11.0"]
48
48
  ]
49
49
 
50
50
  jinda_dev_gem =
@@ -56,7 +56,7 @@ module Jinda
56
56
  ["binding_of_caller"],
57
57
  ["pry-byebug"],
58
58
  ["factory_bot_rails"],
59
- ["database_cleaner"],
59
+ ["database_cleaner-mongoid"],
60
60
  ["guard"],
61
61
  ["guard-rspec"],
62
62
  ["guard-minitest"],
@@ -1,26 +1,32 @@
1
1
  <%
2
2
  doc = Jinda::Doc.new :issue_on=> Date.today, :process_at => Time.now
3
- %>
3
+ %>
4
4
  <%= fields_for doc do |f| %>
5
- <%= f.label :category, "Category" %>
6
- <%= f.select :category, [["Book", "book"], ["Letter", "letter"], ["Brochure", "brochure"]] %>
7
- <!--div>
8
- </div-->
5
+ <div class="form-group">
6
+ <%= f.label :category, "Category" %>
7
+ <%= f.select :category, [["Book", "book"], ["Letter", "letter"], ["Brochure", "brochure"]] %>
8
+ </div>
9
+ <div class="form-group">
9
10
  <%= f.label :issue_on, "Dated" %>
10
11
  <%= f.date_field :issue_on, "blackDays"=>[0,6] %>
11
-
12
+ </div>
13
+ <div class="form-group">
12
14
  <%= f.label :dscan, "Attached document" %>
15
+ </div>
16
+ <div class="form-group">
13
17
  <%= f.file_field :dscan %>
14
- <% end %>
15
- <div>
18
+ </div>
19
+ <% end %>
20
+ <div class="form-group">
16
21
  <%= label_tag :description, "Description" %>
17
22
  <%= text_field_tag :description %>
18
- </div>
19
- <div>
20
- <%= label_tag :ma_display, "Display", :class=>"ui-input-text" %>
21
- <%= select_tag :ma_display, options_for_select([['Yes', 'y'], ['No', 'n']],'y'), 'data-role'=>"slider" %>
22
- </div>
23
- <div>
23
+ </div>
24
+ <div class="form-group">
25
+ <%= label_tag :ma_display, "Display", :class=>"ui-input-text" %>
26
+ <%= select_tag :ma_display, options_for_select([['Yes', 'y'], ['No', 'n']],'y'), 'data-role'=>"slider" %>
27
+ </div>
28
+ <div class="form-group">
29
+ <%= label_tag :ma_display, "Display", :class=>"ui-input-text" %>
24
30
  <%= label_tag :keywords, "Search Keywords" %>
25
31
  <%= text_field_tag :keywords %>
26
- </div>
32
+ </div>
@@ -22,14 +22,15 @@ describe SessionsController, type: :controller do
22
22
  session[:user_id].should_not be_nil
23
23
  end
24
24
 
25
- it "should redirect the user to the articles/my url" do
25
+ it "should redirect the user to root_path " do
26
26
  post :create, params: {provider: :google_oauth2}
27
- response.should redirect_to articles_my_path
27
+ response.should redirect_to root_path
28
28
  end
29
29
 
30
30
  end
31
31
 
32
- describe "#destroy", js: true do
32
+ #describe "#destroy", js: true do
33
+ describe "#destroy" do
33
34
  before do
34
35
  post :create, params: {provider: :google_oauth2}
35
36
  end
@@ -49,7 +50,8 @@ describe SessionsController, type: :controller do
49
50
  end
50
51
  end
51
52
 
52
- describe "Facebook" do
53
+ skip describe "Facebook" do
54
+ # skip or finish at config facebook
53
55
 
54
56
  before do
55
57
  @request.env['omniauth.auth'] = OmniAuth.config.mock_auth[:facebook]
@@ -71,7 +73,7 @@ describe SessionsController, type: :controller do
71
73
 
72
74
  end
73
75
 
74
- describe "#destroy", js: true do
76
+ describe "#destroy" do
75
77
  before do
76
78
  post :create, params: {provider: :facebook}
77
79
  end
@@ -2,13 +2,13 @@ require 'rails_helper'
2
2
 
3
3
  RSpec.feature "Userlogins", type: :feature do
4
4
  scenario "Admin User Sign In" do
5
- visit "/sessions/new"
5
+ skip visit "/sessions/new"
6
6
 
7
7
  fill_in "User name", :with => "admin"
8
8
  fill_in "Password", :with => "secret1"
9
9
  click_button "Sign In"
10
10
 
11
- expect(page).to have_text("My Articles")
11
+ xexpect(page).to have_text("My Articles")
12
12
  end
13
13
 
14
14
  scenario "Google User Sign In" do
@@ -6,8 +6,6 @@ Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f } # Add this a
6
6
  abort("The Rails environment is running in production mode!") if Rails.env.production?
7
7
  require 'rspec/rails'
8
8
  require 'spec_helper'
9
- require 'support/factory_bot'
10
- Dir[Rails.root.join('spec', 'support', '**', '*.rb')].each { |f| require f }
11
9
 
12
10
  RSpec.configure do |config|
13
11
 
@@ -8,6 +8,9 @@ require 'valid_attribute'
8
8
 
9
9
  # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
10
10
  RSpec.configure do |config|
11
+ config.filter_run focus: true
12
+ config.run_all_when_everything_filtered = true
13
+
11
14
  # config.include SpecTestHelper, :type => :controller
12
15
  config.expect_with :rspec do |expectations|
13
16
  expectations.include_chain_clauses_in_custom_matcher_descriptions = true
@@ -42,12 +45,12 @@ RSpec.configure do |config|
42
45
  uncommitted transaction data setup over the spec's database connection.
43
46
  MSG
44
47
  end
45
- DatabaseCleaner.clean_with(:truncation)
48
+ DatabaseCleaner.clean_with(:deletion)
46
49
  end
47
50
 
48
51
  config.before(:each, :js => true) do
49
52
  #DatabaseCleaner.strategy = :transaction
50
- DatabaseCleaner.strategy = :truncation
53
+ DatabaseCleaner.strategy = :deletion
51
54
  end
52
55
 
53
56
  config.before(:each, type: :feature) do
@@ -60,7 +63,7 @@ RSpec.configure do |config|
60
63
  # under test that does *not* share a database connection with the
61
64
  # specs, so use truncation strategy.
62
65
  # DatabaseCleaner.strategy = :truncation
63
- DatabaseCleaner[:mongoid].strategy = :truncation
66
+ DatabaseCleaner[:mongoid].strategy = :deletion
64
67
 
65
68
  end
66
69
  end
@@ -0,0 +1,13 @@
1
+ RSpec.configure do |config|
2
+ config.before(:suite) do
3
+ DatabaseCleaner[:mongoid].strategy = :deletion
4
+ end
5
+
6
+ config.before(:each) do
7
+ DatabaseCleaner[:mongoid].start
8
+ end
9
+
10
+ config.after(:each) do
11
+ DatabaseCleaner[:mongoid].clean
12
+ end
13
+ end
data/lib/jinda/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jinda
2
- VERSION = "0.7.5.3"
2
+ VERSION = "0.7.5.4"
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.5.3
4
+ version: 0.7.5.4
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-03-14 00:00:00.000000000 Z
12
+ date: 2021-03-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -29,20 +29,20 @@ dependencies:
29
29
  name: activesupport
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - "~>"
32
+ - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: 4.1.11
35
- - - ">="
35
+ - - "~>"
36
36
  - !ruby/object:Gem::Version
37
37
  version: 4.1.11
38
38
  type: :development
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
41
41
  requirements:
42
- - - "~>"
42
+ - - ">="
43
43
  - !ruby/object:Gem::Version
44
44
  version: 4.1.11
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 4.1.11
48
48
  - !ruby/object:Gem::Dependency
@@ -388,6 +388,7 @@ files:
388
388
  - lib/generators/jinda/templates/spec/rails_helper.rb
389
389
  - lib/generators/jinda/templates/spec/spec_helper.rb
390
390
  - lib/generators/jinda/templates/spec/support/authentication_helper.rb
391
+ - lib/generators/jinda/templates/spec/support/databasecleaner.rb
391
392
  - lib/generators/jinda/templates/spec/support/factory_bot.rb
392
393
  - lib/generators/jinda/templates/spec/support/omniauth_macros.rb
393
394
  - lib/generators/jinda/templates/spec/support/request_spec_helper.rb
@@ -487,7 +488,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
487
488
  - !ruby/object:Gem::Version
488
489
  version: '0'
489
490
  requirements: []
490
- rubygems_version: 3.2.3
491
+ rubygems_version: 3.0.9
491
492
  signing_key:
492
493
  specification_version: 4
493
494
  summary: 'Rails workflow from mind map: Freemind'