Skip to content

Commit

Permalink
Update links from jnunemaker => flippercloud
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Aug 8, 2023
1 parent 934ee05 commit 0532a23
Show file tree
Hide file tree
Showing 7 changed files with 178 additions and 176 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Examples
on: [push, pull_request]
jobs:
test:
if: github.repository_owner == 'jnunemaker'
name: Test on ruby ${{ matrix.ruby }} and rails ${{ matrix.rails }}
if: github.repository_owner == 'flippercloud'
name: Example on ruby ${{ matrix.ruby }} and rails ${{ matrix.rails }}
runs-on: ubuntu-latest
services:
redis:
Expand Down
336 changes: 169 additions & 167 deletions Changelog.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/flipper/adapters/active_record.rb
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def set(feature, gate, thing, options = {})
end
rescue ::ActiveRecord::RecordNotUnique
# assume this happened concurrently with the same thing and its fine
# see https://github.com/jnunemaker/flipper/issues/544
# see https://github.com/flippercloud/flipper/issues/544
end
end
end
Expand Down
6 changes: 3 additions & 3 deletions lib/flipper/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module Flipper
METADATA = {
"documentation_uri" => "https://www.flippercloud.io/docs",
"homepage_uri" => "https://www.flippercloud.io",
"source_code_uri" => "https://github.com/jnunemaker/flipper",
"bug_tracker_uri" => "https://github.com/jnunemaker/flipper/issues",
"changelog_uri" => "https://github.com/jnunemaker/flipper/blob/main/Changelog.md",
"source_code_uri" => "https://github.com/flippercloud/flipper",
"bug_tracker_uri" => "https://github.com/flippercloud/flipper/issues",
"changelog_uri" => "https://github.com/flippercloud/flipper/blob/main/Changelog.md",
}.freeze
end
2 changes: 1 addition & 1 deletion lib/flipper/middleware/memoizer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def memoized_call(env)

# Already memoizing. This instance does not need to do anything.
if flipper.memoizing?
warn "Flipper::Middleware::Memoizer appears to be running twice. Read how to resolve this at https://github.com/jnunemaker/flipper/pull/523"
warn "Flipper::Middleware::Memoizer appears to be running twice. Read how to resolve this at https://github.com/flippercloud/flipper/pull/523"
return @app.call(env)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/flipper/ui/views/features.erb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</p>
<% else %>
<p>
Check the <a href="https://github.com/jnunemaker/flipper#examples">examples</a> to
Check the <a href="https://github.com/flippercloud/flipper#examples">examples</a> to
learn how to add one.
</p>
<%- end -%>
Expand Down
2 changes: 1 addition & 1 deletion spec/flipper/ui_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
end
end

# See https://github.com/jnunemaker/flipper/issues/80
# See https://github.com/flippercloud/flipper/issues/80
it 'can route features with names that match static directories' do
post 'features/refactor-images/actors',
{ 'value' => 'User;6', 'operation' => 'enable', 'authenticity_token' => token },
Expand Down

0 comments on commit 0532a23

Please sign in to comment.