Skip to content

Commit

Permalink
update naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Phong Nguyen committed Apr 13, 2021
1 parent 8a80471 commit 013b4c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fastlane-plugin-semantic_release.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 'fastlane/plugin/semantic_release/version'

Gem::Specification.new do |spec|
spec.name = 'fastlane-plugin-semantic_release_workflow'
spec.version = Fastlane::SemanticRelease::VERSION
spec.version = Fastlane::SemanticReleaseWorkflow::VERSION
spec.author = 'Phong Nguyen'
spec.email = 'phongnguyen180993@gmail.com'

Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/semantic_release/version.rb
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module Fastlane module SemanticRelease VERSION = "1.0.1" end end
module Fastlane module SemanticReleaseWorkflow VERSION = "1.0.1" end end
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'fastlane/plugin/semantic_release/version'

module Fastlane
module SemanticRelease
module SemanticReleaseWorkflow
# Return all .rb files inside the "actions" and "helper" directory
def self.all_classes
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
Expand All @@ -11,6 +11,6 @@ def self.all_classes

# By default we want to import all available actions and helpers
# A plugin can contain any number of actions and plugins
Fastlane::SemanticRelease.all_classes.each do |current|
Fastlane::SemanticReleaseWorkflow.all_classes.each do |current|
require current
end

0 comments on commit 013b4c9

Please sign in to comment.