Skip to content

Commit 3fd55ae

Browse files
committed
Pivot to GitHub Actions
In late 2020, Travis CI decided to discontinue unlimited free builds for public projects. While they still hand out free build minutes for opensource project, they do this through an application process, thereby making it difficult to quickly contribure: https://www.jeffgeerling.com/blog/2020/travis-cis-new-pricing-plan-threw-wrench-my-open-source-works Since GitHub Actions still allows unlimited build time for public project, it became the go-to CI for opensource projects on GitHub. We also update the test build to include Rails 6 and 7.
1 parent 1029813 commit 3fd55ae

File tree

12 files changed

+124
-59
lines changed

12 files changed

+124
-59
lines changed

.bundle/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
BUNDLE_GITHUB__HTTPS: "true"

.github/workflows/test.yml

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
on:
2+
pull_request:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
continue-on-error: ${{ matrix.experimental }}
11+
strategy:
12+
matrix:
13+
ruby:
14+
- ruby-head
15+
- jruby-head
16+
rails:
17+
- 7
18+
- master
19+
rails_api_only:
20+
- 0
21+
- 1
22+
jruby_ar_jdbc_adapter_version:
23+
- v70.0.pre
24+
experimental:
25+
- true
26+
include:
27+
- ruby: 2.7
28+
rails: 5
29+
rails_api_only: 0
30+
experimental: false
31+
- ruby: 2.7
32+
rails: 5
33+
rails_api_only: 1
34+
experimental: false
35+
- ruby: 2.7
36+
rails: 6
37+
rails_api_only: 0
38+
experimental: false
39+
- ruby: 2.7
40+
rails: 6
41+
rails_api_only: 1
42+
experimental: false
43+
- ruby: 3.1
44+
rails: 7
45+
rails_api_only: 0
46+
experimental: false
47+
- ruby: 3.1
48+
rails: 7
49+
rails_api_only: 1
50+
experimental: false
51+
- ruby: jruby-9.1
52+
rails: 5
53+
rails_api_only: 0
54+
jruby_ar_jdbc_adapter_version: v52.8
55+
experimental: false
56+
- ruby: jruby-9.2
57+
rails: 6
58+
rails_api_only: 0
59+
jruby_ar_jdbc_adapter_version: v60.0
60+
experimental: false
61+
62+
steps:
63+
- uses: actions/checkout@v2
64+
- uses: ruby/setup-ruby@v1
65+
with:
66+
ruby-version: ${{ matrix.ruby }}
67+
bundler-cache: true
68+
env:
69+
RAILS_VERSION: ${{ matrix.rails }}
70+
RAILS_API_ONLY: ${{ matrix.rails_api_only }}
71+
JRUBY_AR_JDBC_ADAPTER_VERSION: ${{ matrix.jruby_ar_jdbc_adapter_version }}
72+
- run: bundle exec rake
73+
env:
74+
RAILS_VERSION: ${{ matrix.rails }}
75+
RAILS_API_ONLY: ${{ matrix.rails_api_only }}
76+
JRUBY_AR_JDBC_ADAPTER_VERSION: ${{ matrix.jruby_ar_jdbc_adapter_version }}

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
*.gem
2-
.bundle
32
Gemfile.lock
3+
44
pkg/*
55
tmp/*

.travis.yml

+1-43
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,6 @@
11
language: ruby
22
cache: bundler
3-
rvm:
4-
- 2.5.0
5-
- 2.4.4
6-
- 2.3.5
7-
- jruby-9.1.13.0
8-
- ruby-head
9-
- jruby-head
10-
env:
11-
- RAILS_VERSION=master
12-
- RAILS_VERSION=master RAILS_API_ONLY=1
13-
- RAILS_VERSION=5.2
14-
- RAILS_VERSION=5.2 RAILS_API_ONLY=1
15-
- RAILS_VERSION=5.1
16-
- RAILS_VERSION=5.1 RAILS_API_ONLY=1
17-
- RAILS_VERSION=5.0
18-
- RAILS_VERSION=5.0 RAILS_API_ONLY=1
19-
matrix:
20-
include:
21-
- rvm: 2.2.8
22-
env: RAILS_VERSION=4.2
23-
- rvm: 2.1.10
24-
env: RAILS_VERSION=4.2
25-
- rvm: 2.0.0
26-
env: RAILS_VERSION=4.2
27-
- rvm: 2.2.8
28-
env: RAILS_VERSION=4.1
29-
- rvm: 2.1.10
30-
env: RAILS_VERSION=4.1
31-
- rvm: 2.0.0
32-
env: RAILS_VERSION=4.1
33-
exclude:
34-
- rvm: 2.4.4
35-
env: RAILS_VERSION=master
36-
- rvm: 2.4.4
37-
env: RAILS_VERSION=master RAILS_API_ONLY=1
38-
- rvm: 2.3.5
39-
env: RAILS_VERSION=master
40-
- rvm: 2.3.5
41-
env: RAILS_VERSION=master RAILS_API_ONLY=1
42-
allow_failures:
43-
- rvm: jruby-9.1.13.0
44-
- rvm: ruby-head
45-
- rvm: jruby-head
3+
ruby: 2.5.0
464
before_deploy: bundle exec rake assets:compile
475
deploy:
486
provider: rubygems

Gemfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ group :test do
2323
gem 'sassc-rails'
2424
end
2525

26-
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby,
27-
github: "jruby/activerecord-jdbc-adapter"
26+
if RUBY_PLATFORM == 'java'
27+
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby,
28+
github: "jruby/activerecord-jdbc-adapter", tag: ENV['JRUBY_AR_JDBC_ADAPTER_VERSION']
29+
end
2830

2931
gem "minitest", ">= 4.2"
3032
gem "capybara", ">= 2.6"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[<img src="https://travis-ci.org/voormedia/flipflop.svg?branch=master" alt="Build Status">](https://travis-ci.org/voormedia/flipflop)
1+
![GitHub Actions](https://github.com/voormedia/flipflop/actions/workflows/test.yml/badge.svg)
22

33
# Flipflop your features
44

lib/flipflop/configurable.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ def feature(feature, **options)
1515
FeatureSet.current.add(feature)
1616
end
1717

18-
def strategy(strategy = nil, **options)
18+
def strategy(strategy = nil, **options, &block)
1919
if block_given?
2020
options[:name] = strategy.to_s
21-
options[:lambda] = Proc.new
21+
options[:lambda] = block
2222
strategy = Strategies::LambdaStrategy
2323
end
2424

lib/flipflop/facade.rb

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ def feature_set
1111
end
1212

1313
def respond_to_missing?(method, include_private = false)
14+
return false if method == :use_relative_model_naming?
15+
1416
method[-1] == "?"
1517
end
1618

lib/flipflop/strategies/cookie_strategy.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ def switch!(feature, enabled)
3232
end
3333

3434
def clear!(feature)
35-
request.cookie_jar.delete(cookie_key(feature), **@options)
35+
options = @options.dup
36+
request.cookie_jar.delete(cookie_key(feature), **options)
3637
end
3738

3839
protected

test/test_helper.rb

+28-6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
require "minitest/autorun"
66

77
require "action_controller"
8+
require "action_controller/test_case"
89
require "rails/generators"
910

1011
# Who is setting this to true? :o
@@ -14,6 +15,7 @@ def create_request
1415
env = Rack::MockRequest.env_for("/example")
1516
request = ActionDispatch::TestRequest.new(env)
1617
request.host = "example.com"
18+
request.session = ActionController::TestSession.new
1719

1820
class << request
1921
def cookie_jar
@@ -46,7 +48,7 @@ def capture_stderr
4648
end
4749

4850
def reload_constant(name)
49-
ActiveSupport::Dependencies.remove_constant(name.to_s)
51+
Object.send(:remove_const, name.to_s)
5052
path = ActiveSupport::Dependencies.search_for_file(name.to_s.underscore).sub!(/\.rb\z/, "")
5153
ActiveSupport::Dependencies.loaded.delete(path)
5254
Object.const_get(name)
@@ -112,10 +114,11 @@ def create!
112114

113115
Rails::Generators::AppGenerator.new([path],
114116
quiet: true,
115-
api: ENV["RAILS_API_ONLY"].to_i.nonzero?,
117+
api: rails_api_only?,
116118
skip_active_job: true,
117119
skip_active_storage: true,
118120
skip_action_cable: true,
121+
skip_action_mailer: true,
119122
skip_bootsnap: true,
120123
skip_bundle: true,
121124
skip_puma: true,
@@ -128,6 +131,13 @@ def create!
128131
skip_turbolinks: true,
129132
).invoke_all
130133

134+
if rails_api_only?
135+
project_root = Pathname.new(__dir__.to_s).parent
136+
manifest_path = project_root.join(path).join("app/assets/config/manifest.js")
137+
manifest_path.dirname.mkpath
138+
manifest_path.write(project_root.join("app/assets/config/manifest.js").read)
139+
end
140+
131141
# Remove bootsnap if present, this interferes with reloading apps.
132142
boot_path = File.expand_path("../../" + path + "/config/boot.rb", __FILE__)
133143
File.write(boot_path, File.read(boot_path).gsub("require 'bootsnap/setup'", ""))
@@ -146,11 +156,17 @@ def load!
146156
require "rails"
147157
require "flipflop/engine"
148158

149-
ActiveSupport::Dependencies.autoloaded_constants.clear
159+
ActiveSupport::Dependencies.autoload_paths = []
160+
ActiveSupport::Dependencies.autoload_once_paths = []
150161
load File.expand_path("../../#{path}/config/application.rb", __FILE__)
162+
Zeitwerk::Registry.loaders.each(&:unregister) if defined?(Zeitwerk)
151163
load File.expand_path("../../#{path}/config/environments/test.rb", __FILE__)
152164
Rails.application.config.cache_classes = false
153-
Rails.application.config.action_view.raise_on_missing_translations = true
165+
if Gem::Version.new(Rails.version) < Gem::Version.new('7')
166+
Rails.application.config.action_view.raise_on_missing_translations = true
167+
else
168+
Rails.application.config.i18n.raise_on_missing_translations = true
169+
end
154170
Rails.application.config.i18n.enforce_available_locales = false
155171
Rails.application.config.autoloader = :classic # Disable Zeitwerk in Rails 6+
156172

@@ -166,7 +182,9 @@ def load!
166182
Rails.application.config.action_view.finalize_compiled_template_methods = ActionView::Railtie::NULL_OPTION
167183
end
168184

185+
Rails.application.config.active_support.remove_deprecated_time_with_zone_name = false
169186
Rails.application.initialize!
187+
Zeitwerk::Registry.loaders.each(&:unregister) if defined?(Zeitwerk)
170188

171189
I18n.locale = :en
172190

@@ -202,12 +220,16 @@ def unload!
202220
Rails.instance_variable_set(:@application, nil)
203221
I18n::Railtie.instance_variable_set(:@i18n_inited, false)
204222

205-
ActiveSupport::Dependencies.remove_constant(name.camelize)
206-
ActiveSupport::Dependencies.remove_constant("Flipflop::Feature")
223+
Object.send(:remove_const, name.camelize)
224+
Flipflop.send(:remove_const, "Feature")
207225
end
208226

209227
private
210228

229+
def rails_api_only?
230+
ENV["RAILS_API_ONLY"].to_i.nonzero?
231+
end
232+
211233
def path
212234
"tmp/" + name
213235
end

test/unit/feature_definition_test.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232

3333
it "should have location" do
3434
# Because we have no indirection via FeatureSet, the location is minitest.
35-
assert_equal "instance_eval", subject.location.label
35+
expected = RUBY_PLATFORM == "java" ? "block in let" : "instance_eval"
36+
assert_equal expected, subject.location.label
3637
end
3738
end
3839

@@ -71,7 +72,8 @@
7172

7273
it "should have location" do
7374
# Because we have no indirection via FeatureSet, the location is minitest.
74-
assert_equal "instance_eval", subject.location.label
75+
expected = RUBY_PLATFORM == "java" ? "block in let" : "instance_eval"
76+
assert_equal expected, subject.location.label
7577
end
7678
end
7779

test/unit/tasks/support/methods_test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def with_feature_and_strategy(strategy = 'Test')
5151
describe 'when the strategy is not switchable' do
5252
it 'raises an error' do
5353
with_feature_and_strategy 'Lambda' do |strategy, feature|
54-
-> { subject.switch_feature!('world_domination', 'lambda', true) }.must_raise
54+
_{ subject.switch_feature!('world_domination', 'lambda', true) }.must_raise
5555
end
5656
end
5757
end

0 commit comments

Comments
 (0)