8000 ci: Checking FSC on Pr 217 by msohailhussain · Pull Request #223 · optimizely/ruby-sdk · GitHub
[go: up one dir, main page]

Skip to content

ci: Checking FSC on Pr 217 #223

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Trim requires
Remove requires from project.rb which aren't referenced.
Add missing requires to project.rb which _are_ referenced.
Remove requires from optimizely.rb which aren't referenced, but are
already required by project.rb.
  • Loading branch information
jasonkarns committed Oct 26, 2019
commit d32a9e07c4880da19614ef9b7c74a44f78c45a3e
16 changes: 0 additions & 16 deletions lib/optimizely.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,8 @@
# limitations under the License.
#
require_relative 'optimizely/audience'
require_relative 'optimizely/config/datafile_project_config'
require_relative 'optimizely/config_manager/http_project_config_manager'
require_relative 'optimizely/config_manager/static_project_config_manager'
require_relative 'optimizely/decision_service'
require_relative 'optimizely/error_handler'
require_relative 'optimizely/event_builder'
require_relative 'optimizely/event/forwarding_event_processor'
require_relative 'optimizely/event/event_factory'
require_relative 'optimizely/event/user_event_factory'
require_relative 'optimizely/event_dispatcher'
require_relative 'optimizely/exceptions'
require_relative 'optimizely/helpers/constants'
require_relative 'optimizely/helpers/group'
require_relative 'optimizely/helpers/validator'
require_relative 'optimizely/helpers/variable_type'
require_relative 'optimizely/logger'
require_relative 'optimizely/notification_center'

require_relative 'optimizely/project'

module Optimizely
Expand Down
4 changes: 1 addition & 3 deletions lib/optimizely/project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,22 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
require_relative 'audience'
require_relative 'config/datafile_project_config'
require_relative 'config_manager/http_project_config_manager'
require_relative 'config_manager/static_project_config_manager'
require_relative 'decision_service'
require_relative 'error_handler'
require_relative 'event_builder'
require_relative 'event/forwarding_event_processor'
require_relative 'event/event_factory'
require_relative 'event/user_event_factory'
require_relative 'event_dispatcher'
require_relative 'exceptions'
require_relative 'helpers/constants'
require_relative 'helpers/group'
require_relative 'helpers/validator'
require_relative 'helpers/variable_type'
require_r 4CC2 elative 'logger'
require_relative 'notification_center'
require_relative 'project_config'

module Optimizely
class Project
Expand Down
0