Questions tagged [nimble]

Nimble is a Grails plugin and provides kickstart authentication and authorization functionality to any Grails application.

Nimble is a Grails plugin and provides kickstart authentication and authorization functionality to any Grails application. Nimble provides beautiful UI and ready to use functionality for login, user registration, password reset, Users, Roles, Groups and permission management. Nimble provides administration portal from where all of the above stuff can be managed. Its possible to extends nimble administration portal to add other administration functionality for your application.

Nimble is based on Apache shiro security framework

Features

  • Out of the box support for authentication and authorization
  • Login
  • Registration
  • Forgot password
  • UI for managing Administrators
  • UI for managing users
  • UI for managing user groups
  • UI for managing roles
  • UI for assigning roles and permissions to users and groups

Documentation:

Github

Demo

37 questions
8
votes
2 answers

How to set up Nimble server without WMSpanel?

i can't figure it out, how to configure nimble server, there is lack of information/examples about: Setting my own Nimble server. Scenario: IP camera which streams live RTSP h.256 video. Transmux/transport it, through my own Nimble Server. And…
Noproblem
  • 745
  • 1
  • 6
  • 15
8
votes
3 answers

What makes nimble better than shiro?

What makes nimble a better choice than shiro? I'm trying to decide between nimble and shiro for a new grails project right now and I'm curious what makes nimble the better choice.
Brandon
  • 2,900
  • 1
  • 23
  • 36
7
votes
6 answers

GORM createCriteria and list do not return the same results : what can I do?

I am using Nimble and Shiro for my security frameworks and I've just come accross a GORM bug. Indeed : User.createCriteria().list { maxResults 10 } returns 10 users whereas User.list(max: 10) returns 9 users ! After further investigations,…
fabien7474
  • 16,300
  • 22
  • 96
  • 124
6
votes
1 answer

Nimble - expect to equal <0.9602>, got <0.9602>

My project is written in Swift 2.0 and I use Quick & Nimble to test my code. expect(workerSpy.buySharesQuantity).to(equal(0.9602)) What I get is expectation failure with error message expected to equal <0.9602>, got <0.9602> Definition of…
Aleš Oskar Kocur
  • 1,381
  • 1
  • 13
  • 29
5
votes
2 answers

Quick Nimble ios test not running

I'm trying to use Quick & Nimble to test a project but the test is never executed. I've created a project from scratch using File->New->Project in Xcode. The project is called "MyApp". Then I created a UnitTest target testing "MyApp". I've added the…
Snooze
  • 197
  • 1
  • 2
  • 10
3
votes
1 answer

Run rtsp streaming with SSL (using rtsps)

I am doing live streaming using rtsp like 'rtsp://{{CAMERAIP}}/axis-media/media.amp?resolution=352x240&compression=20' and its working fine. Now I want to use secure rtsp like…
IPS
  • 417
  • 9
  • 22
2
votes
1 answer

Quick nimble variable is always nil

I create a basic test case, I cannot instantiate the variable. And while test is running, it always crashes. import Foundation import XCTest import Quick import Nimble import UIKit @testable import tar22102 class ViewControllerTests: QuickSpec { …
benoitcn
  • 149
  • 1
  • 12
2
votes
0 answers

Subscript out of bound while running the model in r using nimble package

I am running the following code in R nimbleNBModel <- nimbleModel(code = nbModel, name = 'nimbleNBModel', constants = Consts, data = nimbleData, inits = inits) I am getting an error of defining model... Error in…
2
votes
0 answers

Carthage prevents Xcode 9.2 from building

I have been experimenting on a project with using Carthage. Having installed Carthage I then attempted to add Nimble and Quick to the project through Carthage. However, I get the following on carthage update: user$ carthage update *** Fetching…
originalmyth
  • 129
  • 6
2
votes
1 answer

Testing Swift Extensions

I try to create a cocoapod to extend Primitives in Swift. I have troubles to get tests passing or have an misconfiguration: Here is my Nimble/Quick Test: // https://github.com/Quick/Quick import Quick import Nimble import SwiftRubySyntax class…
Jan
  • 12,992
  • 9
  • 53
  • 89
2
votes
2 answers

How does nimble work in nodejs?

i am trying to understand how to use nimble for flow control with nodejs but I am having trouble understanding how it actually works and there's really no documentation that explains it(that I could find) For example, take this code from the…
2
votes
1 answer

API call by HTTP POST method without using parameter name for the body

I'm using Java. How I can make a HTTP POST call API and inform in body only "JSON" value (without parameter name)? Per example call this URL: https://api.nimble.com/api/v1/contact?access_token=12123486db0552de35ec6daa0cc836b0 (POST METHOD) and in…
1
vote
1 answer

No SSl/TLS CA certificates using nimble

I am using Msys2 to run and compile c/nim programs, I cloned a repo that has a .nim file that I want to run but didn't have ceration packages such as nimcrypto so I used the command nimble install nimcrypto but got this error $ nimble install…
netrunner
  • 45
  • 7
1
vote
2 answers

error: could not build Objective-C module 'Quick'

Running my Quick and Nimble tests in Xcode and I am now getting this error out of the blue. Build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Quick.build/module.modulemap:2:19: error: umbrella header 'Quick-umbrella.h' not found …
SRed
  • 185
  • 2
  • 12
1
vote
2 answers

Grails request filters: what's the source of this mysterious authorization method?

I'm building a custom authentication filter class in Grails. It's working, but it bugs me that I don't know why it's working. In the following Grails request filter, where/how is the "role" method defined? It's got to be part of the Nimble plugin…
Dean Moses
  • 2,372
  • 2
  • 24
  • 36
1
2 3