shopapp 0.3.76 → 0.73.02
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -2
- data/app/assets/javascripts/shopapp3.js +0 -6
- data/app/assets/stylesheets/shopapp3.scss +0 -2
- data/app/controllers/auth_controller.rb +4 -4
- data/app/controllers/concerns/shoplift_client.rb +1 -1
- data/app/controllers/shopapp_login_controller.rb +1 -1
- data/app/helpers/euro_helper.rb +12 -2
- data/app/helpers/shopapp3_form_helper.rb +1 -1
- data/app/helpers/shopapp3_helper.rb +1 -1
- data/app/views/shopapp/_modal_errors.haml +2 -2
- data/app/views/shopapp/_shopapp2.html.haml +1 -1
- data/app/views/shopapp/_shopapp3.html.haml +4 -4
- data/app/views/shopapp/login_message.haml +3 -1
- data/config/initializers/active_settings.rb +8 -8
- data/config/initializers/assets.rb +1 -0
- data/lib/shopapp/engine.rb +1 -1
- data/lib/shopapp/templates/shopapp_rails_new.rb +3 -2
- data/lib/shopapp.rb +1 -1
- data/shopapp.gemspec +27 -16
- metadata +27 -125
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e79bda095b98390be8188e89f74151fe8aa0fe1e0b8e8463c697eb5a796577f
|
4
|
+
data.tar.gz: 380eba546fb514fd597c60bdfa2c586b703033ee50fda34fccca5b2610dca471
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3556bbe835dc2690c3a2c7ce1e87e43a40529ef2a139729be2903f7846d66cb50b8c8edd51d6bc7d8b0cb90b780499d22969099763dffbf0b6fd92ca47f752d5
|
7
|
+
data.tar.gz: 5dc66e60d10edb1ca6f68d43f30dbe0a5de6878aed1616beb7abce92a385c33942f19d64db31d908ba607bf516b829382765ec7a26565a26b639cf585932867d
|
data/README.md
CHANGED
@@ -15,7 +15,7 @@ Shoplift OAuth provider.
|
|
15
15
|
which is used for all app development.
|
16
16
|
* ShopApp will work on any \*nix, but is designed on and for development on OSX
|
17
17
|
* Postgres (latest), typically via Brew
|
18
|
-
* You will need Ruby 2
|
18
|
+
* You will need Ruby 3.2 (or higher), and typically via RVM, and few gems:
|
19
19
|
|
20
20
|
gem install bundler
|
21
21
|
gem install rails
|
@@ -23,6 +23,8 @@ Shoplift OAuth provider.
|
|
23
23
|
|
24
24
|
# Creating a Shoplift App with Shopitup
|
25
25
|
|
26
|
+
This doesn't work right now...
|
27
|
+
|
26
28
|
Just do the following:
|
27
29
|
|
28
30
|
shopitapp demolift
|
@@ -93,4 +95,4 @@ shopapp to support i18n, add two methods to your ApplicationController:
|
|
93
95
|
|
94
96
|
To build new version of this gem, change the version in shopapp.gemspec and run:
|
95
97
|
|
96
|
-
gem build shopapp.gemspec ; gem push shopapp-0.
|
98
|
+
gem build shopapp.gemspec ; gem push shopapp-0.73.02.gem; gem install shopapp
|
@@ -24,7 +24,7 @@ class AuthController < ActionController::Base
|
|
24
24
|
signouttoken = session_cookie
|
25
25
|
session_cookie = nil
|
26
26
|
|
27
|
-
redirect_to "#{Rails.configuration.settings['authlift_url']}users/sign_outx?signouttoken=#{signouttoken}"
|
27
|
+
redirect_to "#{Rails.configuration.settings['authlift_url']}users/sign_outx?signouttoken=#{signouttoken}", allow_other_host: true
|
28
28
|
end
|
29
29
|
|
30
30
|
def change_company
|
@@ -33,7 +33,7 @@ class AuthController < ActionController::Base
|
|
33
33
|
new_company_code = params.except(:_method, :authenticity_token).permit(:new_company_code)[:new_company_code]
|
34
34
|
|
35
35
|
signouttoken = session_cookie
|
36
|
-
redirect_to "#{Rails.configuration.settings['authlift_url']}users/change_companyx/#{new_company_code}?change_company_token=#{signouttoken}"
|
36
|
+
redirect_to "#{Rails.configuration.settings['authlift_url']}users/change_companyx/#{new_company_code}?change_company_token=#{signouttoken}", allow_other_host: true
|
37
37
|
end
|
38
38
|
|
39
39
|
def change_language
|
@@ -42,12 +42,12 @@ class AuthController < ActionController::Base
|
|
42
42
|
new_language_code = params.except(:_method, :authenticity_token).permit(:new_language_code)[:new_language_code]
|
43
43
|
|
44
44
|
signouttoken = session_cookie
|
45
|
-
redirect_to "#{Rails.configuration.settings['authlift_url']}users/change_languagex/#{new_language_code}?change_language_token=#{signouttoken}&return_to=#{request.base_url}"
|
45
|
+
redirect_to "#{Rails.configuration.settings['authlift_url']}users/change_languagex/#{new_language_code}?change_language_token=#{signouttoken}&return_to=#{request.base_url}", allow_other_host: true
|
46
46
|
end
|
47
47
|
|
48
48
|
def change_password
|
49
49
|
authenticate_user!
|
50
50
|
return if current_user.blank?
|
51
|
-
redirect_to "#{Rails.configuration.settings['authlift_url']}users/change_password"
|
51
|
+
redirect_to "#{Rails.configuration.settings['authlift_url']}users/change_password", allow_other_host: true
|
52
52
|
end
|
53
53
|
end
|
@@ -129,7 +129,7 @@ module ShopliftClient
|
|
129
129
|
if Rails.configuration.settings['use_welcome_screen'].present? && !skip_landing_page
|
130
130
|
redirect_to login_message_path
|
131
131
|
else
|
132
|
-
redirect_to shoplift_login_url
|
132
|
+
redirect_to shoplift_login_url, allow_other_host: true
|
133
133
|
end
|
134
134
|
end
|
135
135
|
|
@@ -30,7 +30,7 @@ class ShopappLoginController < ApplicationController
|
|
30
30
|
else
|
31
31
|
destination = URI("#{Rails.configuration.settings['authlift_url']}softly_verify_login")
|
32
32
|
destination.query = redirect_parameters.to_query
|
33
|
-
redirect_to destination.to_s
|
33
|
+
redirect_to destination.to_s, allow_other_host: true
|
34
34
|
end
|
35
35
|
end
|
36
36
|
end
|
data/app/helpers/euro_helper.rb
CHANGED
@@ -7,7 +7,17 @@ module EuroHelper
|
|
7
7
|
number_to_currency number_in_euros, unit: "€", separator: ",", delimiter: nbsp, format: "%n#{nbsp}%u"
|
8
8
|
end
|
9
9
|
|
10
|
-
def
|
11
|
-
|
10
|
+
def mdi_tag(name = nil, included_classes: '', size: 16, icon: 'highlight_off', **other_named_params)
|
11
|
+
if name.match?(/^([\w\-\_]+)( (\d\d)px)?$/) && size == 16 && icon == 'highlight_off'
|
12
|
+
results = name.match(/^([\w\-\_]+)( (\d\d)px)?$/)
|
13
|
+
icon = results[1]
|
14
|
+
size = results[3].to_i if results[3].present?
|
15
|
+
included_classes += " " + other_named_params[:class] if other_named_params[:class].present?
|
16
|
+
end
|
17
|
+
|
18
|
+
icon = 'edit' if icon == 'stylus'
|
19
|
+
icon = 'person_add' if icon == 'account-plus-outline'
|
20
|
+
|
21
|
+
"<i class=\"material-icons md-#{size} #{name} #{included_classes}\">#{icon}</i>".html_safe
|
12
22
|
end
|
13
23
|
end
|
@@ -8,7 +8,7 @@ module Shopapp3Helper
|
|
8
8
|
<li class="nav-item p-1 #{active}">
|
9
9
|
<a class="nav-link d-flex flex-column justify-content-start align-items-center" href="#{sidebar_action[:path]}">
|
10
10
|
#{image_tag sidebar_action[:icon].to_s, width: '20', class: 'img-fluid mb-1' if sidebar_action[:icon].present?}
|
11
|
-
#{
|
11
|
+
#{"<i class=\"material-icons md-16\">#{sidebar_action[:mdi] = sidebar_action[:mdi].to_s; sidebar_action[:mdi]}</i>" if sidebar_action[:mdi].present?}
|
12
12
|
<label class="text-light mt-0 text-center">#{ I18n.t(sidebar_action[:tooltip], default: sidebar_action[:tooltip])}</label>
|
13
13
|
</a>
|
14
14
|
</li>
|
@@ -7,9 +7,9 @@
|
|
7
7
|
%br
|
8
8
|
%button.close(type="button" data-dismiss="alert" aria-label="Close")
|
9
9
|
%span(aria-hidden="true")
|
10
|
-
= mdi_tag
|
10
|
+
= mdi_tag(size: 12, icon: :close)
|
11
11
|
-else
|
12
12
|
= flash[f]
|
13
13
|
%button.close(type="button" data-dismiss="alert" aria-label="Close")
|
14
14
|
%span(aria-hidden="true")
|
15
|
-
= mdi_tag
|
15
|
+
= mdi_tag(size: 12, icon: :close)
|
@@ -40,7 +40,7 @@
|
|
40
40
|
.col-lg-4.px-lg-0.pt-lg-3.d-none.d-lg-flex.align-items-center.justify-content-end.pb-3
|
41
41
|
.dropdown
|
42
42
|
%a#dropdownMenuButton.chip.chip-action.dropdown-toggle.mr-lg-4{"aria-expanded" => "false", "aria-haspopup" => "true", "data-toggle" => "dropdown", :href => "#"}
|
43
|
-
%img.chip-img(alt="#{@current_user['email']}" src="#{gravatar_image_url(@current_user['email'])}")/
|
43
|
+
%img.chip-img(alt="#{@current_user['email']}" src="#{gravatar_image_url(@current_user['email']).gsub('http:', 'https:')}")/
|
44
44
|
= @current_user['email']
|
45
45
|
.dropdown-menu.dropdown-menu-right.mt-2{"aria-labelledby" => "dropdownMenuButton"}
|
46
46
|
.dropdown-header=@current_user_json_hash['email']
|
@@ -16,7 +16,7 @@
|
|
16
16
|
placeholder: search_placeholder, type: "search")
|
17
17
|
%div
|
18
18
|
%a#navbarDropdown.chip.chip-action.nav-link.dropdown-toggle(aria-expanded="false" aria-haspopup="true" data-toggle="dropdown" href="#" role="button")
|
19
|
-
= image_tag gravatar_image_url(@current_user['email']), class: 'chip-img', alt: @current_user['email']
|
19
|
+
= image_tag gravatar_image_url(@current_user['email']).gsub('http:', 'https:'), class: 'chip-img', alt: @current_user['email']
|
20
20
|
= @current_user['email']
|
21
21
|
.dropdown-menu.dropdown-menu-right(style="margin-top: -22px;" aria-labelledby="navbarDropdown")
|
22
22
|
.dropdown-header=@current_user_json_hash['email']
|
@@ -34,14 +34,14 @@
|
|
34
34
|
.dropdown-divider
|
35
35
|
.dropdown-header Change company
|
36
36
|
- (@current_user_json_hash['memberships'] || []).reject { |c| @current_user_json_hash['company']['code'] == c['code'] }.each do |c|
|
37
|
-
=
|
37
|
+
= button_to(change_company_path(c['code']), method: :post, :class => 'dropdown-item', data: { turbo: false }) do
|
38
38
|
%span(display="block" clear="none" style="width: 32px; margin-right: 6px;")
|
39
39
|
= image_tag "https://media.shoplift.fi/company_logos/#{c['logo_code']}_company_logo_24.png", style: "height: 16; width: 32px;"
|
40
40
|
= c['name']
|
41
41
|
.dropdown-divider
|
42
|
-
=
|
42
|
+
= button_to(change_password_path, method: :get, :class => 'dropdown-item', data: { turbo: false }) do
|
43
43
|
Change password
|
44
|
-
=
|
44
|
+
= button_to(logout_path, method: :delete, :class => 'dropdown-item', data: { turbo: false }) do
|
45
45
|
Logout
|
46
46
|
= yield
|
47
47
|
:javascript
|
@@ -7,7 +7,9 @@
|
|
7
7
|
-# %link{:href => "https://fonts.googleapis.com/css?family=Fira+Sans:400,500,700", :rel => "stylesheet"}/
|
8
8
|
= csrf_meta_tags
|
9
9
|
= stylesheet_link_tag 'application', media: 'all'
|
10
|
-
|
10
|
+
- fail "please check shopapp/app/views/login_message.haml"
|
11
|
+
= javascript_importmap_tags
|
12
|
+
= javascript_include_tag 'application', type: "module"
|
11
13
|
= shopapp3_favicon
|
12
14
|
%body.bg-light
|
13
15
|
.row.justify-content-center
|
@@ -29,13 +29,13 @@ Rails.configuration.generators do |g|
|
|
29
29
|
# g.orm :mongoid
|
30
30
|
end
|
31
31
|
|
32
|
-
GravatarImageTag.configure do |config|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
end
|
32
|
+
# GravatarImageTag.configure do |config|
|
33
|
+
# config.default_image = :wavatar # Set this to use your own default gravatar image rather then serving up Gravatar's default image [ 'http://example.com/images/default_gravitar.jpg', :identicon, :monsterid, :wavatar, 404 ].
|
34
|
+
# # config.filetype = nil # Set this if you require a specific image file format ['gif', 'jpg' or 'png']. Gravatar's default is png
|
35
|
+
# # config.include_size_attributes = true # The height and width attributes of the generated img will be set to avoid page jitter as the gravatars load. Set to false to leave these attributes off.
|
36
|
+
# # config.rating = nil # Set this if you change the rating of the images that will be returned ['G', 'PG', 'R', 'X']. Gravatar's default is G
|
37
|
+
# # config.size = nil # Set this to globally set the size of the gravatar image returned (1..512). Gravatar's default is 80
|
38
|
+
# config.secure = true # Set this to true if you require secure images on your pages.
|
39
|
+
# end
|
40
40
|
|
41
41
|
Rails.application.config.assets.precompile += %w( shopapp3/*.svg flags/*.png )
|
@@ -0,0 +1 @@
|
|
1
|
+
Rails.application.config.assets.precompile += %w(bootstrap.min.js popper.js shopapp3)
|
data/lib/shopapp/engine.rb
CHANGED
@@ -113,7 +113,8 @@ create_file "app/views/layouts/application.html.haml", <<~LAYOUT
|
|
113
113
|
%title #{@app_name}
|
114
114
|
= csrf_meta_tags
|
115
115
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload'
|
116
|
-
=
|
116
|
+
= javascript_importmap_tags
|
117
|
+
= javascript_include_tag 'application', 'data-turbolinks-track': 'reload', type: "module"
|
117
118
|
%body
|
118
119
|
= render 'shopapp/shopapp3' do
|
119
120
|
= yield
|
@@ -320,7 +321,7 @@ puts "Shopapp #{@app_name} created!"
|
|
320
321
|
puts
|
321
322
|
puts "To activate app in Authlift, execute the following:"
|
322
323
|
puts " app = Doorkeeper::Application.find_or_create_by(name: '#{@app_name}')"
|
323
|
-
puts " app.
|
324
|
+
puts " app.update uid: '#{@app_id}',"
|
324
325
|
puts " secret: '#{@app_secret}',"
|
325
326
|
puts " redirect_uri: 'http://localhost:#{@app_dev_port}/auth/'"
|
326
327
|
puts " Company.find_by_code(:zwr).applications << app unless Company.find_by_code(:zwr).applications.include? app"
|
data/lib/shopapp.rb
CHANGED
data/shopapp.gemspec
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'shopapp'
|
3
|
-
|
3
|
+
# Version for Rails 7 / Ruby 3 start with 0.74
|
4
|
+
s.version = '0.73.02'
|
4
5
|
s.date = '2023-03-01'
|
5
6
|
s.summary = 'Do a shoplift.'
|
6
7
|
s.description = 'Ha! Art thou Bedlam? Dost thou thirst base Trojan, to have me fold up Parca\'s fatal web? Hence!\
|
@@ -11,7 +12,7 @@ Gem::Specification.new do |s|
|
|
11
12
|
s.files = `git ls-files`.split("\n") - %w(.rvmrc .gitignore)
|
12
13
|
|
13
14
|
s.bindir = 'bin'
|
14
|
-
s.executables << 'shopitapp'
|
15
|
+
# s.executables << 'shopitapp'
|
15
16
|
s.executables << 'shop'
|
16
17
|
s.homepage = 'http://rubygems.org/gems/shopapp'
|
17
18
|
s.license = 'MIT'
|
@@ -19,30 +20,40 @@ Gem::Specification.new do |s|
|
|
19
20
|
|
20
21
|
|
21
22
|
# Dependences
|
22
|
-
s.add_dependency 'railties', '>= 5.2'
|
23
|
+
# s.add_dependency 'railties', '>= 5.2'
|
23
24
|
s.add_dependency 'haml-rails'
|
24
|
-
s.add_dependency 'jquery-rails'
|
25
|
-
s.add_dependency
|
26
|
-
|
25
|
+
s.add_dependency 'jquery-rails'
|
26
|
+
s.add_dependency "sassc-rails"
|
27
|
+
|
28
|
+
# the following two must be in app Gemfile, for now.
|
29
|
+
# s.add_dependency 'bootstrap', '~> 4.1'
|
30
|
+
# s.add_dependency 'bootstrap_form', '~> 4.0'
|
31
|
+
|
32
|
+
# s.add_dependency 'font-awesome-rails', '~> 4.7'
|
33
|
+
# will_paginate 4.0.0 is broken, so do not include it.
|
34
|
+
# bootstrap-will_paginate has open dependency so this needs to be
|
35
|
+
# explicitelly limited by us
|
36
|
+
s.add_dependency 'will_paginate', '~> 3.1'
|
27
37
|
s.add_dependency 'bootstrap-will_paginate', '~> 1.0'
|
28
|
-
s.add_dependency 'pry-rails'
|
38
|
+
s.add_dependency 'pry-rails'
|
29
39
|
s.add_dependency 'oauth2', '~> 1.4'
|
30
40
|
s.add_dependency 'rest-client', '~> 2.0'
|
31
41
|
s.add_dependency 'gravatar_image_tag', '~> 1.2'
|
32
42
|
s.add_dependency 'redcarpet', '~> 3.4'
|
33
|
-
s.add_dependency 'audited'
|
34
|
-
s.add_dependency '
|
43
|
+
s.add_dependency 'audited'
|
44
|
+
s.add_dependency 'sprockets-rails'
|
45
|
+
s.add_dependency 'material_icons'
|
35
46
|
|
36
|
-
s.add_dependency 'capistrano', '~> 3.11'
|
37
|
-
s.add_dependency 'capistrano-rvm', '~> 0'
|
38
|
-
s.add_dependency 'capistrano-rails', '~> 1.2'
|
39
|
-
s.add_dependency 'capistrano-passenger', '~> 0.2.0'
|
47
|
+
# s.add_dependency 'capistrano', '~> 3.11'
|
48
|
+
# s.add_dependency 'capistrano-rvm', '~> 0'
|
49
|
+
# s.add_dependency 'capistrano-rails', '~> 1.2'
|
50
|
+
# s.add_dependency 'capistrano-passenger', '~> 0.2.0'
|
40
51
|
s.add_dependency 'aws-sdk-rails', '~> 2'
|
41
52
|
|
42
53
|
# following are only needed on OSX, but do not matter to others
|
43
|
-
s.add_dependency 'ed25519', '~> 1.2'
|
44
|
-
s.add_dependency 'bcrypt_pbkdf', '~> 1.0'
|
54
|
+
# s.add_dependency 'ed25519', '~> 1.2'
|
55
|
+
# s.add_dependency 'bcrypt_pbkdf', '~> 1.0'
|
45
56
|
|
46
57
|
# following are helping with installation dependences
|
47
|
-
s.add_dependency 'rb-readline', '~> 0.5'
|
58
|
+
# s.add_dependency 'rb-readline', '~> 0.5'
|
48
59
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shopapp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.73.02
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zeljko
|
@@ -10,20 +10,6 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2023-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: railties
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '5.2'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '5.2'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: haml-rails
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -42,44 +28,44 @@ dependencies:
|
|
42
28
|
name: jquery-rails
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
44
30
|
requirements:
|
45
|
-
- - "
|
31
|
+
- - ">="
|
46
32
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
33
|
+
version: '0'
|
48
34
|
type: :runtime
|
49
35
|
prerelease: false
|
50
36
|
version_requirements: !ruby/object:Gem::Requirement
|
51
37
|
requirements:
|
52
|
-
- - "
|
38
|
+
- - ">="
|
53
39
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
40
|
+
version: '0'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
42
|
+
name: sassc-rails
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
|
-
- - "
|
45
|
+
- - ">="
|
60
46
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
47
|
+
version: '0'
|
62
48
|
type: :runtime
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
|
-
- - "
|
52
|
+
- - ">="
|
67
53
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
54
|
+
version: '0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
56
|
+
name: will_paginate
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
72
58
|
requirements:
|
73
59
|
- - "~>"
|
74
60
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
61
|
+
version: '3.1'
|
76
62
|
type: :runtime
|
77
63
|
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
66
|
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
68
|
+
version: '3.1'
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
70
|
name: bootstrap-will_paginate
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -98,16 +84,16 @@ dependencies:
|
|
98
84
|
name: pry-rails
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
100
86
|
requirements:
|
101
|
-
- - "
|
87
|
+
- - ">="
|
102
88
|
- !ruby/object:Gem::Version
|
103
|
-
version: '0
|
89
|
+
version: '0'
|
104
90
|
type: :runtime
|
105
91
|
prerelease: false
|
106
92
|
version_requirements: !ruby/object:Gem::Requirement
|
107
93
|
requirements:
|
108
|
-
- - "
|
94
|
+
- - ">="
|
109
95
|
- !ruby/object:Gem::Version
|
110
|
-
version: '0
|
96
|
+
version: '0'
|
111
97
|
- !ruby/object:Gem::Dependency
|
112
98
|
name: oauth2
|
113
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -166,20 +152,6 @@ dependencies:
|
|
166
152
|
version: '3.4'
|
167
153
|
- !ruby/object:Gem::Dependency
|
168
154
|
name: audited
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - "~>"
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: '4.7'
|
174
|
-
type: :runtime
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - "~>"
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '4.7'
|
181
|
-
- !ruby/object:Gem::Dependency
|
182
|
-
name: rails_material_design_icons
|
183
155
|
requirement: !ruby/object:Gem::Requirement
|
184
156
|
requirements:
|
185
157
|
- - ">="
|
@@ -193,61 +165,33 @@ dependencies:
|
|
193
165
|
- !ruby/object:Gem::Version
|
194
166
|
version: '0'
|
195
167
|
- !ruby/object:Gem::Dependency
|
196
|
-
name:
|
197
|
-
requirement: !ruby/object:Gem::Requirement
|
198
|
-
requirements:
|
199
|
-
- - "~>"
|
200
|
-
- !ruby/object:Gem::Version
|
201
|
-
version: '3.11'
|
202
|
-
type: :runtime
|
203
|
-
prerelease: false
|
204
|
-
version_requirements: !ruby/object:Gem::Requirement
|
205
|
-
requirements:
|
206
|
-
- - "~>"
|
207
|
-
- !ruby/object:Gem::Version
|
208
|
-
version: '3.11'
|
209
|
-
- !ruby/object:Gem::Dependency
|
210
|
-
name: capistrano-rvm
|
168
|
+
name: sprockets-rails
|
211
169
|
requirement: !ruby/object:Gem::Requirement
|
212
170
|
requirements:
|
213
|
-
- - "
|
171
|
+
- - ">="
|
214
172
|
- !ruby/object:Gem::Version
|
215
173
|
version: '0'
|
216
174
|
type: :runtime
|
217
175
|
prerelease: false
|
218
176
|
version_requirements: !ruby/object:Gem::Requirement
|
219
177
|
requirements:
|
220
|
-
- - "
|
178
|
+
- - ">="
|
221
179
|
- !ruby/object:Gem::Version
|
222
180
|
version: '0'
|
223
181
|
- !ruby/object:Gem::Dependency
|
224
|
-
name:
|
182
|
+
name: material_icons
|
225
183
|
requirement: !ruby/object:Gem::Requirement
|
226
184
|
requirements:
|
227
|
-
- - "
|
228
|
-
- !ruby/object:Gem::Version
|
229
|
-
version: '1.2'
|
230
|
-
type: :runtime
|
231
|
-
prerelease: false
|
232
|
-
version_requirements: !ruby/object:Gem::Requirement
|
233
|
-
requirements:
|
234
|
-
- - "~>"
|
235
|
-
- !ruby/object:Gem::Version
|
236
|
-
version: '1.2'
|
237
|
-
- !ruby/object:Gem::Dependency
|
238
|
-
name: capistrano-passenger
|
239
|
-
requirement: !ruby/object:Gem::Requirement
|
240
|
-
requirements:
|
241
|
-
- - "~>"
|
185
|
+
- - ">="
|
242
186
|
- !ruby/object:Gem::Version
|
243
|
-
version: 0
|
187
|
+
version: '0'
|
244
188
|
type: :runtime
|
245
189
|
prerelease: false
|
246
190
|
version_requirements: !ruby/object:Gem::Requirement
|
247
191
|
requirements:
|
248
|
-
- - "
|
192
|
+
- - ">="
|
249
193
|
- !ruby/object:Gem::Version
|
250
|
-
version: 0
|
194
|
+
version: '0'
|
251
195
|
- !ruby/object:Gem::Dependency
|
252
196
|
name: aws-sdk-rails
|
253
197
|
requirement: !ruby/object:Gem::Requirement
|
@@ -262,54 +206,11 @@ dependencies:
|
|
262
206
|
- - "~>"
|
263
207
|
- !ruby/object:Gem::Version
|
264
208
|
version: '2'
|
265
|
-
- !ruby/object:Gem::Dependency
|
266
|
-
name: ed25519
|
267
|
-
requirement: !ruby/object:Gem::Requirement
|
268
|
-
requirements:
|
269
|
-
- - "~>"
|
270
|
-
- !ruby/object:Gem::Version
|
271
|
-
version: '1.2'
|
272
|
-
type: :runtime
|
273
|
-
prerelease: false
|
274
|
-
version_requirements: !ruby/object:Gem::Requirement
|
275
|
-
requirements:
|
276
|
-
- - "~>"
|
277
|
-
- !ruby/object:Gem::Version
|
278
|
-
version: '1.2'
|
279
|
-
- !ruby/object:Gem::Dependency
|
280
|
-
name: bcrypt_pbkdf
|
281
|
-
requirement: !ruby/object:Gem::Requirement
|
282
|
-
requirements:
|
283
|
-
- - "~>"
|
284
|
-
- !ruby/object:Gem::Version
|
285
|
-
version: '1.0'
|
286
|
-
type: :runtime
|
287
|
-
prerelease: false
|
288
|
-
version_requirements: !ruby/object:Gem::Requirement
|
289
|
-
requirements:
|
290
|
-
- - "~>"
|
291
|
-
- !ruby/object:Gem::Version
|
292
|
-
version: '1.0'
|
293
|
-
- !ruby/object:Gem::Dependency
|
294
|
-
name: rb-readline
|
295
|
-
requirement: !ruby/object:Gem::Requirement
|
296
|
-
requirements:
|
297
|
-
- - "~>"
|
298
|
-
- !ruby/object:Gem::Version
|
299
|
-
version: '0.5'
|
300
|
-
type: :runtime
|
301
|
-
prerelease: false
|
302
|
-
version_requirements: !ruby/object:Gem::Requirement
|
303
|
-
requirements:
|
304
|
-
- - "~>"
|
305
|
-
- !ruby/object:Gem::Version
|
306
|
-
version: '0.5'
|
307
209
|
description: |-
|
308
210
|
Ha! Art thou Bedlam? Dost thou thirst base Trojan, to have me fold up Parca's fatal web? Hence!\
|
309
211
|
I am qualmish at the smell of leek.
|
310
212
|
email: zeljko@z-ware.fi
|
311
213
|
executables:
|
312
|
-
- shopitapp
|
313
214
|
- shop
|
314
215
|
extensions: []
|
315
216
|
extra_rdoc_files: []
|
@@ -433,6 +334,7 @@ files:
|
|
433
334
|
- bin/shop
|
434
335
|
- bin/shopitapp
|
435
336
|
- config/initializers/active_settings.rb
|
337
|
+
- config/initializers/assets.rb
|
436
338
|
- config/initializers/audited.rb
|
437
339
|
- config/initializers/safe_email.rb
|
438
340
|
- lib/generators/shopapp/deploy/USAGE
|
@@ -464,7 +366,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
464
366
|
- !ruby/object:Gem::Version
|
465
367
|
version: '0'
|
466
368
|
requirements: []
|
467
|
-
rubygems_version: 3.
|
369
|
+
rubygems_version: 3.4.1
|
468
370
|
signing_key:
|
469
371
|
specification_version: 4
|
470
372
|
summary: Do a shoplift.
|