Tejas

Results 10 issues of Tejas

Since there's AR support available for Flipper, I think it'd be a great idea to also add support for bulk importing flags to application, something similar to what `activerecord-import` provides....

**Is your feature request related to a problem? Please describe.** New to cursor, I am using it with my own API key from OpenAI. I had initially assumed that Copilot++...

> application.simple_json.rb ```ruby { success: true, data: yield } ``` > some_action.simple_json.rb ```ruby { test_one: 'success', test_two: 'success' } ``` Expected Output: ```ruby { success: true, data: { test_one: 'success',...

Is there a way to pass explicit status codes using this library? As a work around, I've been using the following code in my action: ```ruby render status: :created ```...

File Structure: config/initializers/jbuilder.rb ```ruby Jbuilder.ignore_nil Jbuilder.key_format camelize: :lower Jbuilder.deep_format_keys ``` config/routes.rb ```ruby namespace 'api', defaults: { format: :json } do namespace 'v1' do resource 'post', only: [:create] end end ```...

I was making a Github Actions project for working with SimpleCov. Turns out this being the recommended gem by SimpleCov, didn't have some functionalities I was thinking of adding support...

Inspired from #181. This PR aims to add a class method to the models that'd give an ability build your own GlobalIDs Example: ```ruby PersonModel.build_global_id(1) => # ```

Fixes #1628. Before: ![image](https://github.com/user-attachments/assets/281ab869-2581-46fd-9c24-e14e98a92605) After: ![image](https://github.com/user-attachments/assets/5d9dd82a-be57-4b75-af3e-128daa6feaaf)

Re-opened the previous PR: #7. --- I was making a Github Actions project for working with SimpleCov. Turns out this being the recommended gem by SimpleCov, didn't have some functionalities...