fomantic-ui-sass 2.9.3 → 2.9.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile +2 -0
  4. data/Rakefile +2 -0
  5. data/app/helpers/semantic_breadcrumbs_helper.rb +2 -0
  6. data/app/helpers/semantic_flash_helper.rb +2 -0
  7. data/app/helpers/semantic_icon_helper.rb +2 -0
  8. data/fomantic-ui-sass.gemspec +4 -2
  9. data/gemfiles/rails_5.0.gemfile +2 -0
  10. data/gemfiles/rails_5.1.gemfile +2 -0
  11. data/gemfiles/rails_5.2.gemfile +2 -0
  12. data/lib/fomantic/ui/sass/breadcrumbs.rb +2 -0
  13. data/lib/fomantic/ui/sass/engine.rb +5 -3
  14. data/lib/fomantic/ui/sass/version.rb +4 -2
  15. data/lib/fomantic-ui-sass.rb +2 -6
  16. data/spec/dummy/Rakefile +2 -0
  17. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  18. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  19. data/spec/dummy/bin/bundle +2 -0
  20. data/spec/dummy/bin/rails +2 -0
  21. data/spec/dummy/bin/rake +2 -0
  22. data/spec/dummy/config/application.rb +3 -1
  23. data/spec/dummy/config/boot.rb +2 -0
  24. data/spec/dummy/config/environment.rb +2 -0
  25. data/spec/dummy/config/environments/development.rb +3 -1
  26. data/spec/dummy/config/environments/production.rb +2 -0
  27. data/spec/dummy/config/environments/test.rb +3 -1
  28. data/spec/dummy/config/initializers/backtrace_silencers.rb +2 -0
  29. data/spec/dummy/config/initializers/filter_parameter_logging.rb +2 -0
  30. data/spec/dummy/config/initializers/inflections.rb +2 -0
  31. data/spec/dummy/config/initializers/mime_types.rb +2 -0
  32. data/spec/dummy/config/initializers/secret_token.rb +2 -0
  33. data/spec/dummy/config/initializers/session_store.rb +2 -0
  34. data/spec/dummy/config/initializers/wrap_parameters.rb +2 -0
  35. data/spec/dummy/config/routes.rb +2 -0
  36. data/spec/dummy/config.ru +3 -1
  37. data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +2 -0
  38. data/spec/helpers/semantic_flash_helper_spec.rb +2 -0
  39. data/spec/helpers/semantic_icon_helper_spec.rb +2 -0
  40. data/spec/spec_helper.rb +2 -0
  41. data/tasks/converter.rb +9 -19
  42. data/templates/project/manifest.rb +2 -0
  43. metadata +12 -26
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 06a05c3a6512d2d1bc6eb348aef0caa7baaa73d40cba0122de39fb785b35b13f
4
- data.tar.gz: 95ea2f3624296370ce256d5a81c7434f1c3e5d8b59c132ceb7156eda3555f79d
3
+ metadata.gz: 834d34f8c089a3d1f5518ce3094eb0c0254e1b556dcdb074c0defc061c8f33c8
4
+ data.tar.gz: 966e889f65791ee79d19ccfb678e50667d96e283576ac205fcb8485ef36cf96c
5
5
  SHA512:
6
- metadata.gz: 0fb0e5781aab5f94aba0d03e70a1b136be0a3359448149447b871e69f1701503501c7d8805b54194e3eab103dc25fcde1c82e0fe0a079501740a5536492794d7
7
- data.tar.gz: 19295d7bca0e060131e2b5592ddee8f317956b0e1555017b0cde1b6639667d3a074ec78b9c0f76386ca1821e8a26878181d539a10cd2cdf12160d5364d673513
6
+ metadata.gz: ced8cc7cce8148ce51271d5f5c14c531cbf65c808992f3c8efd7c30dedde5e2b6ae0db610b1a38508110be80a27f4303f9b5d08f5bd21298fffa305f7d2fd2ce
7
+ data.tar.gz: 53f99320c8eb15e91bb86d58d6a50fc3da5d7adc5d5cccd0fac49fc63f092356ba370edaf7129b4bf65f0437eea7a516e6d97264c74de99588037d40dbc6131f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 2.9.3.1
2
+
3
+ Replace SassC with Dartsass [#17](https://github.com/fomantic/Fomantic-UI-SASS/pull/17)
4
+
1
5
  ## 2.9.3
2
6
 
3
7
  Update Fomantic UI to [2.9.3](https://github.com/fomantic/Fomantic-UI/releases/tag/2.9.3)
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in semantic-ui-sass.gemspec
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  begin
2
4
  require 'bundler/setup'
3
5
  rescue LoadError
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SemanticBreadcrumbsHelper
2
4
  def semantic_breadcrumbs(divider = '/', &block)
3
5
  content = render partial: 'semantic/breadcrumbs', layout: false, locals: { divider: divider }
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SemanticFlashHelper
2
4
  ALERT_TYPES = %i[error info success warning].freeze
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SemanticIconHelper
2
4
  def semantic_icon(*names)
3
5
  opts = names[-1].is_a?(Hash) ? names.delete_at(-1) : {}
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  lib = File.expand_path('lib', __dir__)
2
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
5
  require 'fomantic/ui/sass/version'
@@ -11,6 +13,7 @@ Gem::Specification.new do |spec|
11
13
  spec.summary = 'Fomantic UI, converted to Sass and ready to drop into Rails, Compass, or Sprockets.'
12
14
  spec.homepage = 'https://github.com/fomantic/Fomantic-UI-SASS'
13
15
  spec.license = 'MIT'
16
+ spec.required_ruby_version = '>= 2.7.0'
14
17
 
15
18
  spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
16
19
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
@@ -18,9 +21,8 @@ Gem::Specification.new do |spec|
18
21
  spec.require_paths = ['lib']
19
22
 
20
23
  spec.add_runtime_dependency 'autoprefixer-rails'
24
+ spec.add_runtime_dependency 'dartsass-sprockets', '3.0.0'
21
25
  spec.add_runtime_dependency 'railties', '>= 3.2.0'
22
- spec.add_runtime_dependency 'sassc', '>= 2.2'
23
- spec.add_runtime_dependency 'sassc-rails', '>= 2.1'
24
26
  spec.add_runtime_dependency 'sprockets-rails', '>= 2.1.3'
25
27
 
26
28
  spec.add_development_dependency 'bundler', '>= 1.3'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec path: '../'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec path: '../'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec path: '../'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fomantic
2
4
  module Ui
3
5
  module Sass
@@ -1,4 +1,6 @@
1
- require File.dirname(__FILE__) + '/breadcrumbs.rb'
1
+ # frozen_string_literal: true
2
+
3
+ require "#{File.dirname(__FILE__)}/breadcrumbs.rb"
2
4
  module Fomantic
3
5
  module Ui
4
6
  module Sass
@@ -8,12 +10,12 @@ module Fomantic
8
10
  if ::Rails.version >= '5' || ::Sprockets::VERSION.start_with?('4')
9
11
  ::Rails.application.config.assets.precompile += %w[semantic-ui/*icons.*]
10
12
  else
11
- app.config.assets.precompile << %r{semantic-ui\/(basic\.)*icons\.(?:eot|svg|ttf|woff)$}
13
+ app.config.assets.precompile << %r{semantic-ui/(basic\.)*icons\.(?:eot|svg|ttf|woff)$}
12
14
  end
13
15
  end
14
16
  initializer 'fomantic-ui-sass.setup_helpers' do |app|
15
17
  app.config.to_prepare do
16
- ActionController::Base.send :include, Fomantic::Ui::Sass::BreadCrumbs
18
+ ActionController::Base.include Fomantic::Ui::Sass::BreadCrumbs
17
19
  end
18
20
  end
19
21
  end
@@ -1,8 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fomantic
2
4
  module Ui
3
5
  module Sass
4
- VERSION = '2.9.3'.freeze
5
- SEMANTIC_UI_SHA = '697bba341f4ea6357e5fe22d8c7166aec107bf2a'.freeze
6
+ VERSION = '2.9.3.1'
7
+ SEMANTIC_UI_SHA = '697bba341f4ea6357e5fe22d8c7166aec107bf2a'
6
8
  end
7
9
  end
8
10
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fomantic
2
4
  module Ui
3
5
  module Sass
@@ -15,7 +17,6 @@ module Fomantic
15
17
  Sprockets.append_path(javascripts_path)
16
18
  end
17
19
 
18
- configure_sass
19
20
  unless defined?(::Rails) || defined?(::Compass) || defined?(::Sprockets)
20
21
  raise Fomantic::Ui::Sass::FrameworkNotFound, 'fomantic-ui-sass requires either Rails > 3.1 or Compass, or Sprockets, none of which are loaded'
21
22
  end
@@ -49,11 +50,6 @@ module Fomantic
49
50
  def stylesheets_path
50
51
  File.join(assets_path, 'stylesheets')
51
52
  end
52
-
53
- def configure_sass
54
- require 'sassc'
55
- ::SassC.load_paths << stylesheets_path
56
- end
57
53
  end
58
54
  end
59
55
  end
data/spec/dummy/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Add your own tasks in files placed in lib/tasks ending in .rake,
2
4
  # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class ApplicationController < ActionController::Base
2
4
  # Prevent CSRF attacks by raising an exception.
3
5
  # For APIs, you may want to use :null_session instead.
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ApplicationHelper
2
4
  end
@@ -1,3 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
2
4
  ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
3
5
  load Gem.bin_path('bundler', 'bundle')
data/spec/dummy/bin/rails CHANGED
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
2
4
  APP_PATH = File.expand_path('../config/application', __dir__)
3
5
  require_relative '../config/boot'
4
6
  require 'rails/commands'
data/spec/dummy/bin/rake CHANGED
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
2
4
  require_relative '../config/boot'
3
5
  require 'rake'
4
6
  Rake.application.run
@@ -1,9 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require File.expand_path('boot', __dir__)
2
4
 
3
5
  # Pick the frameworks you want:
4
6
  # require "active_record/railtie"
5
7
  require 'action_controller/railtie'
6
- require 'action_mailer/railtie'
8
+ # require 'action_mailer/railtie'
7
9
  require 'sprockets/railtie'
8
10
  # require "rails/test_unit/railtie"
9
11
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Set up gems listed in the Gemfile.
2
4
  ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__)
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Load the Rails application.
2
4
  require File.expand_path('application', __dir__)
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Dummy::Application.configure do
2
4
  # Settings specified here will take precedence over those in config/application.rb.
3
5
 
@@ -14,7 +16,7 @@ Dummy::Application.configure do
14
16
  config.action_controller.perform_caching = false
15
17
 
16
18
  # Don't care if the mailer can't send.
17
- config.action_mailer.raise_delivery_errors = false
19
+ # config.action_mailer.raise_delivery_errors = false
18
20
 
19
21
  # Print deprecation notices to the Rails logger.
20
22
  config.active_support.deprecation = :log
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Dummy::Application.configure do
2
4
  # Settings specified here will take precedence over those in config/application.rb.
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Dummy::Application.configure do
2
4
  # Settings specified here will take precedence over those in config/application.rb.
3
5
 
@@ -29,7 +31,7 @@ Dummy::Application.configure do
29
31
  # Tell Action Mailer not to deliver emails to the real world.
30
32
  # The :test delivery method accumulates sent emails in the
31
33
  # ActionMailer::Base.deliveries array.
32
- config.action_mailer.delivery_method = :test
34
+ # config.action_mailer.delivery_method = :test
33
35
 
34
36
  # Print deprecation notices to the stderr.
35
37
  config.active_support.deprecation = :stderr
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Be sure to restart your server when you modify this file.
2
4
 
3
5
  # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Be sure to restart your server when you modify this file.
2
4
 
3
5
  # Configure sensitive parameters which will be filtered from the log file.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Be sure to restart your server when you modify this file.
2
4
 
3
5
  # Add new inflection rules using the following format. Inflections
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Be sure to restart your server when you modify this file.
2
4
 
3
5
  # Add new mime types for use in respond_to blocks:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Be sure to restart your server when you modify this file.
2
4
 
3
5
  # Your secret key is used for verifying the integrity of signed cookies.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Be sure to restart your server when you modify this file.
2
4
 
3
5
  Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Be sure to restart your server when you modify this file.
2
4
 
3
5
  # This file contains settings for ActionController::ParamsWrapper which
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Rails.application.routes.draw do
2
4
  end
data/spec/dummy/config.ru CHANGED
@@ -1,4 +1,6 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # This file is used by Rack-based servers to start the application.
2
4
 
3
- require ::File.expand_path('../config/environment', __FILE__)
5
+ require ::File.expand_path('config/environment', __dir__)
4
6
  run Rails.application
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe SemanticBreadcrumbsHelper do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe SemanticFlashHelper do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe SemanticIconHelper do
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  ENV['RAILS_ENV'] ||= 'test'
2
4
  require File.expand_path('dummy/config/environment', __dir__)
3
5
  require 'rspec/rails'
data/tasks/converter.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Based on convert script from vwall/compass-twitter-bootstrap gem.
2
4
  # https://github.com/vwall/compass-twitter-bootstrap/blob/#{@branch}/build/convert.rb
3
5
 
@@ -12,8 +14,8 @@ require 'pathname'
12
14
  Dotenv.load
13
15
 
14
16
  class Converter
15
- GIT_DATA = 'https://api.github.com/repos'.freeze
16
- GIT_RAW = 'https://raw.githubusercontent.com'.freeze
17
+ GIT_DATA = 'https://api.github.com/repos'
18
+ GIT_RAW = 'https://raw.githubusercontent.com'
17
19
  TOKEN = ENV['TOKEN']
18
20
 
19
21
  def initialize(branch)
@@ -116,9 +118,7 @@ class Converter
116
118
  file = replace_import_font_url(file)
117
119
  file = replace_font_family(file)
118
120
  file = replace_image_urls(file)
119
- file = replace_image_paths(file)
120
-
121
- file
121
+ replace_image_paths(file)
122
122
  end
123
123
 
124
124
  def save_file(name, content, path, _type = 'stylesheets')
@@ -142,12 +142,12 @@ class Converter
142
142
 
143
143
  def store_version
144
144
  path = 'lib/fomantic/ui/sass/version.rb'
145
- content = File.read(path).sub(/SEMANTIC_UI_SHA\s*=\s*['"][\w]+['"]/, "SEMANTIC_UI_SHA = '#{@branch_sha}'")
145
+ content = File.read(path).sub(/SEMANTIC_UI_SHA\s*=\s*['"]\w+['"]/, "SEMANTIC_UI_SHA = '#{@branch_sha}'")
146
146
  File.open(path, 'w') { |f| f.write(content) }
147
147
  end
148
148
 
149
149
  def replace_fonts_url(less)
150
- less.gsub(%r{url\(\"\./\.\./themes/default/assets/fonts/?(.*?)\"\)}) { |_s| "font-url(\"semantic-ui/#{Regexp.last_match(1)}\")" }
150
+ less.gsub(%r{url\("\./\.\./themes/default/assets/fonts/?(.*?)"\)}) { |_s| "font-url(\"semantic-ui/#{Regexp.last_match(1)}\")" }
151
151
  end
152
152
 
153
153
  def replace_font_family(less)
@@ -171,18 +171,8 @@ class Converter
171
171
  end
172
172
 
173
173
  class Paths
174
- attr_reader :root
175
- attr_reader :tmp
176
- attr_reader :tmp_semantic_ui
177
- attr_reader :tmp_semantic_ui_src
178
- attr_reader :tmp_semantic_ui_definitions
179
- attr_reader :tmp_semantic_ui_dist
180
- attr_reader :tmp_semantic_ui_components
181
-
182
- attr_reader :fonts
183
- attr_reader :images
184
- attr_reader :javascripts
185
- attr_reader :stylesheets
174
+ attr_reader :root, :tmp, :tmp_semantic_ui, :tmp_semantic_ui_src, :tmp_semantic_ui_definitions, :tmp_semantic_ui_dist, :tmp_semantic_ui_components, :fonts, :images,
175
+ :javascripts, :stylesheets
186
176
 
187
177
  def initialize
188
178
  @root = File.expand_path('..', __dir__)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  description 'Semantic UI for Sass'
2
4
 
3
5
  # Stylesheet importing semantic
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fomantic-ui-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.3
4
+ version: 2.9.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - doabit
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-09-29 00:00:00.000000000 Z
12
+ date: 2024-06-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: autoprefixer-rails
@@ -26,47 +26,33 @@ dependencies:
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0'
28
28
  - !ruby/object:Gem::Dependency
29
- name: railties
30
- requirement: !ruby/object:Gem::Requirement
31
- requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
34
- version: 3.2.0
35
- type: :runtime
36
- prerelease: false
37
- version_requirements: !ruby/object:Gem::Requirement
38
- requirements:
39
- - - ">="
40
- - !ruby/object:Gem::Version
41
- version: 3.2.0
42
- - !ruby/object:Gem::Dependency
43
- name: sassc
29
+ name: dartsass-sprockets
44
30
  requirement: !ruby/object:Gem::Requirement
45
31
  requirements:
46
- - - ">="
32
+ - - '='
47
33
  - !ruby/object:Gem::Version
48
- version: '2.2'
34
+ version: 3.0.0
49
35
  type: :runtime
50
36
  prerelease: false
51
37
  version_requirements: !ruby/object:Gem::Requirement
52
38
  requirements:
53
- - - ">="
39
+ - - '='
54
40
  - !ruby/object:Gem::Version
55
- version: '2.2'
41
+ version: 3.0.0
56
42
  - !ruby/object:Gem::Dependency
57
- name: sassc-rails
43
+ name: railties
58
44
  requirement: !ruby/object:Gem::Requirement
59
45
  requirements:
60
46
  - - ">="
61
47
  - !ruby/object:Gem::Version
62
- version: '2.1'
48
+ version: 3.2.0
63
49
  type: :runtime
64
50
  prerelease: false
65
51
  version_requirements: !ruby/object:Gem::Requirement
66
52
  requirements:
67
53
  - - ">="
68
54
  - !ruby/object:Gem::Version
69
- version: '2.1'
55
+ version: 3.2.0
70
56
  - !ruby/object:Gem::Dependency
71
57
  name: sprockets-rails
72
58
  requirement: !ruby/object:Gem::Requirement
@@ -375,14 +361,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
375
361
  requirements:
376
362
  - - ">="
377
363
  - !ruby/object:Gem::Version
378
- version: '0'
364
+ version: 2.7.0
379
365
  required_rubygems_version: !ruby/object:Gem::Requirement
380
366
  requirements:
381
367
  - - ">="
382
368
  - !ruby/object:Gem::Version
383
369
  version: '0'
384
370
  requirements: []
385
- rubygems_version: 3.3.26
371
+ rubygems_version: 3.5.6
386
372
  signing_key:
387
373
  specification_version: 4
388
374
  summary: Fomantic UI, converted to Sass and ready to drop into Rails, Compass, or