diff --git a/.gitignore b/.gitignore index 7032609..92adc87 100644 --- a/.gitignore +++ b/.gitignore @@ -97,8 +97,4 @@ build-iPhoneSimulator/ .rvmrc # Used by RuboCop. Remote config files pulled in from inherit_from directive. -# .rubocop-https?--* - - -fastlane/report.xml -fastlane/README.md \ No newline at end of file +# .rubocop-https?--* \ No newline at end of file diff --git a/.solara/solara_settings.json b/.solara/solara_settings.json deleted file mode 100644 index 96bedae..0000000 --- a/.solara/solara_settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "platform": "test_platform" -} \ No newline at end of file diff --git a/.solara/solara_version.json b/.solara/solara_version.json deleted file mode 100644 index 118f255..0000000 --- a/.solara/solara_version.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "solaraVersion": "0.1.0" -} \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index d71cda7..0e2f89e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -31,8 +31,7 @@ GEM nkf (0.2.0) public_suffix (6.0.1) rake (13.2.1) - rexml (3.3.5) - strscan + rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -46,8 +45,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) - strscan (3.1.0) - thor (1.3.1) + thor (1.3.2) webrick (1.8.1) xcodeproj (1.25.0) CFPropertyList (>= 2.3.3, < 4.0) @@ -63,8 +61,8 @@ PLATFORMS DEPENDENCIES bundler (~> 2.0) rake (~> 13.0) - rspec + rspec (~> 3.13.0) solara! BUNDLED WITH - 2.4.19 + 2.5.18 diff --git a/bin/solara b/bin/solara index f35a59b..6428bb5 100755 --- a/bin/solara +++ b/bin/solara @@ -1,4 +1,7 @@ #!/usr/bin/env ruby +# bin/solara + +require 'solara' if RUBY_VERSION < '2.0.0' abort("Solara requires Ruby 2.0.0 or higher") @@ -12,7 +15,6 @@ Dir.glob("#{__dir__}/core/aliases/*.rb").each { |file| require file } Dir.glob("#{__dir__}/core/dashboard/*.rb").each { |file| require file } Dir.glob("#{__dir__}/core/brands/*.rb").each { |file| require file } -require 'solara' Solara::Setup.new.setup Solara::CLI.start(ARGV) \ No newline at end of file diff --git a/solara.gemspec b/solara.gemspec index 6415385..0d75981 100644 --- a/solara.gemspec +++ b/solara.gemspec @@ -7,8 +7,8 @@ Gem::Specification.new do |spec| spec.version = Solara::VERSION spec.authors = ["Malek Kamel"] spec.email = 'sha.kamel.eng@example.com' - spec.summary = "A complete platform for managing white label apps" - spec.description = "A complete platform for managing white label apps" + spec.summary = "Solara is a Ruby library that simplifies the management of white label apps for Flutter, iOS, Android, and Web." + spec.description = "Solara is a Ruby library that simplifies the management of white label apps for Flutter, iOS, Android, and Web. With a centralized dashboard and a powerful CLI, Solara enables effortless configuration and control over dynamic app components, streamlining the setup process for multiple brands." spec.homepage = 'https://github.com/yourusername/solara' spec.license = 'MIT' @@ -30,5 +30,5 @@ Gem::Specification.new do |spec| spec.add_development_dependency "bundler", "~> 2.0" spec.add_development_dependency "rake", "~> 13.0" - spec.add_development_dependency "rspec" + spec.add_development_dependency "rspec", "~>3.13.0" end \ No newline at end of file diff --git a/solara/lib/solara/version.rb b/solara/lib/solara/version.rb index f0d2682..b37537c 100644 --- a/solara/lib/solara/version.rb +++ b/solara/lib/solara/version.rb @@ -1,3 +1,3 @@ module Solara - VERSION = "0.1.0" + VERSION = "0.2.0" end \ No newline at end of file