![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
flipper-activerecord3dot2
Advanced tools
An ActiveRecord adapter for Flipper.
This version targets Rails 3.2. For Rails 4 support, please see Flipper ActiveRecord
Add this line to your application's Gemfile:
gem 'flipper-activerecord3dot2'
And then execute:
$ bundle
Or install it yourself with:
$ gem install flipper-activerecord3dot2
Generate a migration to create the required database tables:
$ rails g flipper:active_record
require 'flipper/adapters/activerecord'
adapter = Flipper::Adapters::ActiveRecord.new
flipper = Flipper.new(adapter)
# profit...
Two database tables are used: flipper_features
and flipper_gates
.
A list of all available features is stored in the flipper_features
table:
require 'flipper/adapters/activerecord'
adapter = Flipper::Adapters::ActiveRecord.new
flipper = Flipper.new(adapter)
# Register a few groups.
Flipper.register(:admins) { |thing| thing.admin? }
Flipper.register(:early_access) { |thing| thing.early_access? }
# Create a user class that has flipper_id instance method.
User = Struct.new(:flipper_id)
flipper[:stats].enable
flipper[:stats].enable flipper.group(:admins)
flipper[:stats].enable User.new('25')
flipper[:stats].enable User.new('90')
flipper[:stats].enable User.new('180')
flipper[:stats].enable flipper.random(15)
flipper[:stats].enable flipper.actors(45)
flipper[:awesomeness].enable
flipper[:awesomeness].enable flipper.group(:admins)
print 'all features: '
pp Flipper::ActiveRecord::Feature.all
# Flipper::ActiveRecord::Feature Load (0.3ms) SELECT "flipper_features".* FROM "flipper_features"
# [#<Flipper::ActiveRecord::Feature:0x007fa883c6b578
# id: 1,
# name: "stats",
# created_at: Wed, 08 Oct 2014 07:21:27 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:27 UTC +00:00>,
# #<Flipper::ActiveRecord::Feature:0x007fa883c6ada8
# id: 2,
# name: "awesomeness",
# created_at: Wed, 08 Oct 2014 07:21:38 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:38 UTC +00:00>]
print 'all gates: '
pp Flipper::ActiveRecord::Gate.all
# Flipper::ActiveRecord::Gate Load (0.4ms) SELECT "flipper_gates".* FROM "flipper_gates"
# [#<Flipper::ActiveRecord::Gate:0x007fa883c42ab0
# id: 1,
# flipper_feature_id: 1,
# name: "boolean",
# value: "true",
# created_at: Wed, 08 Oct 2014 07:21:27 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:27 UTC +00:00>,
# #<Flipper::ActiveRecord::Gate:0x007fa883c42290
# id: 2,
# flipper_feature_id: 1,
# name: "groups",
# value: "admins",
# created_at: Wed, 08 Oct 2014 07:21:31 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:31 UTC +00:00>,
# #<Flipper::ActiveRecord::Gate:0x007fa883c41b10
# id: 3,
# flipper_feature_id: 1,
# name: "actors",
# value: "25",
# created_at: Wed, 08 Oct 2014 07:21:31 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:31 UTC +00:00>,
# #<Flipper::ActiveRecord::Gate:0x007fa883c41408
# id: 4,
# flipper_feature_id: 1,
# name: "actors",
# value: "90",
# created_at: Wed, 08 Oct 2014 07:21:31 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:31 UTC +00:00>,
# #<Flipper::ActiveRecord::Gate:0x007fa883c40c38
# id: 5,
# flipper_feature_id: 1,
# name: "actors",
# value: "180",
# created_at: Wed, 08 Oct 2014 07:21:31 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:31 UTC +00:00>,
# #<Flipper::ActiveRecord::Gate:0x007fa883c40558
# id: 6,
# flipper_feature_id: 1,
# name: "percentage_of_random",
# value: "15",
# created_at: Wed, 08 Oct 2014 07:21:38 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:38 UTC +00:00>,
# #<Flipper::ActiveRecord::Gate:0x007fa883c3bda0
# id: 7,
# flipper_feature_id: 1,
# name: "percentage_of_actors",
# value: "45",
# created_at: Wed, 08 Oct 2014 07:21:38 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:38 UTC +00:00>,
# #<Flipper::ActiveRecord::Gate:0x007fa883c3b5f8
# id: 8,
# flipper_feature_id: 2,
# name: "boolean",
# value: "true",
# created_at: Wed, 08 Oct 2014 07:21:38 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:38 UTC +00:00>,
# #<Flipper::ActiveRecord::Gate:0x007fa883c3afe0
# id: 9,
# flipper_feature_id: 2,
# name: "groups",
# value: "admins",
# created_at: Wed, 08 Oct 2014 07:21:39 UTC +00:00,
# updated_at: Wed, 08 Oct 2014 07:21:39 UTC +00:00>]
puts 'flipper get of feature'
pp adapter.get(flipper[:stats])
# flipper get of feature
# SQL (0.6ms) SELECT DISTINCT "flipper_features"."id" FROM "flipper_features" LEFT OUTER JOIN "flipper_gates" ON "flipper_gates"."flipper_feature_id" = "flipper_features"."id" WHERE "flipper_features"."name" = $1 LIMIT 1 [["name", "stats"]]
# SQL (0.3ms) SELECT "flipper_features"."id" AS t0_r0, "flipper_features"."name" AS t0_r1, "flipper_features"."created_at" AS t0_r2, "flipper_features"."updated_at" AS t0_r3, "flipper_gates"."id" AS t1_r0, "flipper_gates"."flipper_feature_id" AS t1_r1, "flipper_gates"."name" AS t1_r2, "flipper_gates"."value" AS t1_r3, "flipper_gates"."created_at" AS t1_r4, "flipper_gates"."updated_at" AS t1_r5 FROM "flipper_features" LEFT OUTER JOIN "flipper_gates" ON "flipper_gates"."flipper_feature_id" = "flipper_features"."id" WHERE "flipper_features"."name" = $1 AND "flipper_features"."id" IN (1) [["name", "stats"]]
# {:boolean=>"true",
# :groups=>#<Set: {"admins"}>,
# :actors=>#<Set: {"25", "90", "180"}>,
# :percentage_of_actors=>"45",
# :percentage_of_random=>"15"}
createdb flipper_activerecord_test
rspec
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)Thanks to John Nunemaker for making Flipper and its adapters!
FAQs
Unknown package
We found that flipper-activerecord3dot2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.