Skip to content

Commit

Permalink
Solara
Browse files Browse the repository at this point in the history
  • Loading branch information
IdeaS0ft committed Sep 11, 2024
1 parent bce70ad commit 784275a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 22 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
# .rubocop-https?--*
3 changes: 0 additions & 3 deletions .solara/solara_settings.json

This file was deleted.

3 changes: 0 additions & 3 deletions .solara/solara_version.json

This file was deleted.

10 changes: 4 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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
4 changes: 3 additions & 1 deletion bin/solara
Original file line number Diff line number Diff line change
@@ -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")
Expand All @@ -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)
6 changes: 3 additions & 3 deletions solara.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Gem::Specification.new do |spec|
spec.version = Solara::VERSION
spec.authors = ["Malek Kamel"]
spec.email = '[email protected]'
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'

Expand All @@ -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
2 changes: 1 addition & 1 deletion solara/lib/solara/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Solara
VERSION = "0.1.0"
VERSION = "0.2.0"
end

0 comments on commit 784275a

Please sign in to comment.