asset_sync 2.19.2 → 2.19.3
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.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +22 -0
- data/.github/workflows/codeql.yml +4 -4
- data/.github/workflows/tests.yaml +33 -7
- data/Appraisals +14 -0
- data/CHANGELOG.md +16 -0
- data/Gemfile +3 -1
- data/asset_sync.gemspec +8 -1
- data/gemfiles/rails_6_1.gemfile +4 -1
- data/gemfiles/rails_7_0.gemfile +4 -1
- data/gemfiles/rails_7_1.gemfile +2 -1
- data/gemfiles/rails_7_2.gemfile +2 -1
- data/gemfiles/rails_8_0.gemfile +11 -0
- data/gemfiles/rails_8_1.gemfile +11 -0
- data/lib/asset_sync/storage.rb +3 -0
- data/lib/asset_sync/version.rb +1 -1
- data/spec/spec_helper.rb +3 -0
- metadata +25 -9
- data/.travis.yml +0 -41
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e1f29929c13838cda7e4b0b9cb0726b3861377a4a8007b000783450d9469f66
|
|
4
|
+
data.tar.gz: 6d6d866d7c36fc919d7290ff4e0e6755c5307468331c79d797ffc026033603de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f46e711a3f5d6fef73c14c88c72a26fbf76409d183f25d2d752d7bca5de6de59b51e68696d0fc6883e84d1ad3b15cf236f431802ec1be6df50825378cebbf432
|
|
7
|
+
data.tar.gz: a30af16fec62e8dd38887fa7bcda4e176d557925db0fdd88ea4a99f0d43bd2a90f996afe9e13a653d944a12ce2524196044ad60dd438e1f25a1fb4ca766eb41a
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
|
|
4
|
+
- package-ecosystem: bundler
|
|
5
|
+
directory: "/"
|
|
6
|
+
schedule:
|
|
7
|
+
interval: monthly
|
|
8
|
+
time: "06:00"
|
|
9
|
+
timezone: Asia/Hong_Kong
|
|
10
|
+
open-pull-requests-limit: 10
|
|
11
|
+
labels:
|
|
12
|
+
- "dependencies"
|
|
13
|
+
|
|
14
|
+
- package-ecosystem: github-actions
|
|
15
|
+
directory: "/"
|
|
16
|
+
schedule:
|
|
17
|
+
interval: monthly
|
|
18
|
+
time: "06:00"
|
|
19
|
+
timezone: Asia/Hong_Kong
|
|
20
|
+
open-pull-requests-limit: 10
|
|
21
|
+
labels:
|
|
22
|
+
- "dependencies"
|
|
@@ -26,18 +26,18 @@ jobs:
|
|
|
26
26
|
|
|
27
27
|
steps:
|
|
28
28
|
- name: Checkout
|
|
29
|
-
uses: actions/checkout@
|
|
29
|
+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
30
30
|
|
|
31
31
|
- name: Initialize CodeQL
|
|
32
|
-
uses: github/codeql-action/init@
|
|
32
|
+
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
|
|
33
33
|
with:
|
|
34
34
|
languages: ${{ matrix.language }}
|
|
35
35
|
queries: +security-and-quality
|
|
36
36
|
|
|
37
37
|
- name: Autobuild
|
|
38
|
-
uses: github/codeql-action/autobuild@
|
|
38
|
+
uses: github/codeql-action/autobuild@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
|
|
39
39
|
|
|
40
40
|
- name: Perform CodeQL Analysis
|
|
41
|
-
uses: github/codeql-action/analyze@
|
|
41
|
+
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
|
|
42
42
|
with:
|
|
43
43
|
category: "/language:${{ matrix.language }}"
|
|
@@ -26,22 +26,48 @@ jobs:
|
|
|
26
26
|
os:
|
|
27
27
|
- ubuntu
|
|
28
28
|
ruby:
|
|
29
|
-
- 3.0
|
|
30
|
-
- 3.1
|
|
31
|
-
- 3.2
|
|
32
|
-
- 3.3
|
|
29
|
+
- "3.0"
|
|
30
|
+
- "3.1"
|
|
31
|
+
- "3.2"
|
|
32
|
+
- "3.3"
|
|
33
|
+
- "3.4"
|
|
34
|
+
- "4.0"
|
|
33
35
|
- jruby
|
|
34
36
|
gemfile:
|
|
35
37
|
- gemfiles/rails_6_1.gemfile
|
|
36
38
|
- gemfiles/rails_7_0.gemfile
|
|
37
39
|
- gemfiles/rails_7_1.gemfile
|
|
38
40
|
- gemfiles/rails_7_2.gemfile
|
|
41
|
+
- gemfiles/rails_8_0.gemfile
|
|
42
|
+
- gemfiles/rails_8_1.gemfile
|
|
39
43
|
allow_failures:
|
|
40
44
|
- false
|
|
45
|
+
exclude:
|
|
46
|
+
- os: ubuntu
|
|
47
|
+
ruby: "3.0"
|
|
48
|
+
gemfile: gemfiles/rails_7_2.gemfile
|
|
49
|
+
- os: ubuntu
|
|
50
|
+
ruby: "3.0"
|
|
51
|
+
gemfile: gemfiles/rails_8_0.gemfile
|
|
52
|
+
- os: ubuntu
|
|
53
|
+
ruby: "3.1"
|
|
54
|
+
gemfile: gemfiles/rails_8_0.gemfile
|
|
55
|
+
- os: ubuntu
|
|
56
|
+
ruby: jruby
|
|
57
|
+
gemfile: gemfiles/rails_8_0.gemfile
|
|
58
|
+
- os: ubuntu
|
|
59
|
+
ruby: "3.0"
|
|
60
|
+
gemfile: gemfiles/rails_8_1.gemfile
|
|
61
|
+
- os: ubuntu
|
|
62
|
+
ruby: "3.1"
|
|
63
|
+
gemfile: gemfiles/rails_8_1.gemfile
|
|
64
|
+
- os: ubuntu
|
|
65
|
+
ruby: jruby
|
|
66
|
+
gemfile: gemfiles/rails_8_1.gemfile
|
|
41
67
|
include:
|
|
42
68
|
- os: ubuntu
|
|
43
69
|
ruby: ruby-head
|
|
44
|
-
gemfile: gemfiles/
|
|
70
|
+
gemfile: gemfiles/rails_8_1.gemfile
|
|
45
71
|
allow_failures: true
|
|
46
72
|
- os: ubuntu
|
|
47
73
|
ruby: jruby-head
|
|
@@ -54,9 +80,9 @@ jobs:
|
|
|
54
80
|
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
|
|
55
81
|
steps:
|
|
56
82
|
- name: Checkout
|
|
57
|
-
uses: actions/checkout@
|
|
83
|
+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
58
84
|
- name: Setup Ruby
|
|
59
|
-
uses: ruby/setup-ruby@v1
|
|
85
|
+
uses: ruby/setup-ruby@d5f787ce339eb0767271bc01d922e85644c2c8ab # v1.280.0
|
|
60
86
|
with:
|
|
61
87
|
ruby-version: ${{ matrix.ruby }}
|
|
62
88
|
bundler-cache: true
|
data/Appraisals
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
|
|
2
2
|
appraise "rails_6_1" do
|
|
3
3
|
gem "rails", "~> 6.1.0"
|
|
4
|
+
# For Ruby 3.4 compatibility until this commit of httpclient is released https://github.com/nahi/httpclient/commit/552a56770689e800ad11a21cd06075064736569f
|
|
5
|
+
gem "mutex_m"
|
|
6
|
+
gem "logger"
|
|
4
7
|
end
|
|
5
8
|
|
|
6
9
|
appraise "rails_7_0" do
|
|
7
10
|
gem "rails", "~> 7.0.0"
|
|
11
|
+
# For Ruby 3.4 compatibility until this commit of httpclient is released https://github.com/nahi/httpclient/commit/552a56770689e800ad11a21cd06075064736569f
|
|
12
|
+
gem "mutex_m"
|
|
13
|
+
gem "logger"
|
|
8
14
|
end
|
|
9
15
|
|
|
10
16
|
appraise "rails_7_1" do
|
|
@@ -14,3 +20,11 @@ end
|
|
|
14
20
|
appraise "rails_7_2" do
|
|
15
21
|
gem "rails", "~> 7.2.0"
|
|
16
22
|
end
|
|
23
|
+
|
|
24
|
+
appraise "rails_8_0" do
|
|
25
|
+
gem "rails", "~> 8.0.0"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
appraise "rails_8_1" do
|
|
29
|
+
gem "rails", "~> 8.1.0"
|
|
30
|
+
end
|
data/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
18
18
|
- Nothing
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
## [2.19.3] - 2026-01-10
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Improvement: Ensure "Uploading" logs are output when compression is enabled
|
|
26
|
+
(https://github.com/AssetSync/asset_sync/pull/452)
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- Fix compatibility with ruby 4.0+ due to `CGI library is removed from the default gems`
|
|
30
|
+
(https://bugs.ruby-lang.org/issues/21258)
|
|
31
|
+
|
|
32
|
+
[2.19.3]: https://github.com/AssetSync/asset_sync/compare/v2.19.2...v2.19.3
|
|
33
|
+
|
|
34
|
+
|
|
21
35
|
## [2.19.2] - 2024-08-29
|
|
22
36
|
|
|
23
37
|
### Fixed
|
|
@@ -27,6 +41,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
27
41
|
- Drop trailing slash of prefix in #get_local_files
|
|
28
42
|
(https://github.com/AssetSync/asset_sync/pull/425)
|
|
29
43
|
|
|
44
|
+
[2.19.2]: https://github.com/AssetSync/asset_sync/compare/v2.19.1...v2.19.2
|
|
45
|
+
|
|
30
46
|
|
|
31
47
|
## [2.19.1] - 2023-08-17
|
|
32
48
|
|
data/Gemfile
CHANGED
|
@@ -2,5 +2,7 @@ source 'https://rubygems.org'
|
|
|
2
2
|
gemspec
|
|
3
3
|
gem 'rcov', :platforms => :mri_18, :group => [:development, :test]
|
|
4
4
|
gem 'simplecov', :platforms => [:jruby, :mri_19, :ruby_19, :mri_20, :rbx], :group => [:development, :test], :require => false
|
|
5
|
-
gem 'jruby-openssl', :
|
|
5
|
+
gem 'jruby-openssl', :platforms => :jruby
|
|
6
|
+
# https://github.com/jruby/jruby/issues/7262
|
|
7
|
+
gem "jar-dependencies", "0.4.1", :platforms => :jruby
|
|
6
8
|
gem 'rails'
|
data/asset_sync.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.platform = Gem::Platform::RUBY
|
|
10
10
|
s.authors = ["Simon Hamilton", "David Rice", "Phil McClure", "Toby Osbourn"]
|
|
11
11
|
s.email = ["shamilton@rumblelabs.com", "me@davidjrice.co.uk", "pmcclure@rumblelabs.com", "tosbourn@rumblelabs.com"]
|
|
12
|
-
s.homepage = "https://github.com/
|
|
12
|
+
s.homepage = "https://github.com/AssetSync/asset_sync"
|
|
13
13
|
s.summary = %q{Synchronises Assets in a Rails 3 application and Amazon S3/Cloudfront and Rackspace Cloudfiles}
|
|
14
14
|
s.description = %q{After you run assets:precompile your compiled assets will be synchronised with your S3 bucket.}
|
|
15
15
|
|
|
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.add_dependency('unf')
|
|
20
20
|
s.add_dependency('activemodel', ">= 4.1.0")
|
|
21
21
|
s.add_dependency('mime-types', ">= 2.99")
|
|
22
|
+
s.add_dependency("cgi")
|
|
22
23
|
|
|
23
24
|
s.add_development_dependency "rspec"
|
|
24
25
|
s.add_development_dependency "bundler"
|
|
@@ -39,4 +40,10 @@ Gem::Specification.new do |s|
|
|
|
39
40
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
40
41
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
41
42
|
s.require_paths = ["lib"]
|
|
43
|
+
|
|
44
|
+
s.metadata = {
|
|
45
|
+
"bug_tracker_uri" => "#{s.homepage}/issues",
|
|
46
|
+
"changelog_uri" => "#{s.homepage}/blob/master/CHANGELOG.md",
|
|
47
|
+
"source_code_uri" => s.homepage,
|
|
48
|
+
}
|
|
42
49
|
end
|
data/gemfiles/rails_6_1.gemfile
CHANGED
|
@@ -4,7 +4,10 @@ source "https://rubygems.org"
|
|
|
4
4
|
|
|
5
5
|
gem "rcov", platforms: :mri_18, group: [:development, :test]
|
|
6
6
|
gem "simplecov", platforms: [:jruby, :mri_19, :ruby_19, :mri_20, :rbx], group: [:development, :test], require: false
|
|
7
|
-
gem "jruby-openssl",
|
|
7
|
+
gem "jruby-openssl", platforms: :jruby
|
|
8
|
+
gem "jar-dependencies", "0.4.1", platforms: :jruby
|
|
8
9
|
gem "rails", "~> 6.1.0"
|
|
10
|
+
gem "mutex_m"
|
|
11
|
+
gem "logger"
|
|
9
12
|
|
|
10
13
|
gemspec path: "../"
|
data/gemfiles/rails_7_0.gemfile
CHANGED
|
@@ -4,7 +4,10 @@ source "https://rubygems.org"
|
|
|
4
4
|
|
|
5
5
|
gem "rcov", platforms: :mri_18, group: [:development, :test]
|
|
6
6
|
gem "simplecov", platforms: [:jruby, :mri_19, :ruby_19, :mri_20, :rbx], group: [:development, :test], require: false
|
|
7
|
-
gem "jruby-openssl",
|
|
7
|
+
gem "jruby-openssl", platforms: :jruby
|
|
8
|
+
gem "jar-dependencies", "0.4.1", platforms: :jruby
|
|
8
9
|
gem "rails", "~> 7.0.0"
|
|
10
|
+
gem "mutex_m"
|
|
11
|
+
gem "logger"
|
|
9
12
|
|
|
10
13
|
gemspec path: "../"
|
data/gemfiles/rails_7_1.gemfile
CHANGED
|
@@ -4,7 +4,8 @@ source "https://rubygems.org"
|
|
|
4
4
|
|
|
5
5
|
gem "rcov", platforms: :mri_18, group: [:development, :test]
|
|
6
6
|
gem "simplecov", platforms: [:jruby, :mri_19, :ruby_19, :mri_20, :rbx], group: [:development, :test], require: false
|
|
7
|
-
gem "jruby-openssl",
|
|
7
|
+
gem "jruby-openssl", platforms: :jruby
|
|
8
|
+
gem "jar-dependencies", "0.4.1", platforms: :jruby
|
|
8
9
|
gem "rails", "~> 7.1.0"
|
|
9
10
|
|
|
10
11
|
gemspec path: "../"
|
data/gemfiles/rails_7_2.gemfile
CHANGED
|
@@ -4,7 +4,8 @@ source "https://rubygems.org"
|
|
|
4
4
|
|
|
5
5
|
gem "rcov", platforms: :mri_18, group: [:development, :test]
|
|
6
6
|
gem "simplecov", platforms: [:jruby, :mri_19, :ruby_19, :mri_20, :rbx], group: [:development, :test], require: false
|
|
7
|
-
gem "jruby-openssl",
|
|
7
|
+
gem "jruby-openssl", platforms: :jruby
|
|
8
|
+
gem "jar-dependencies", "0.4.1", platforms: :jruby
|
|
8
9
|
gem "rails", "~> 7.2.0"
|
|
9
10
|
|
|
10
11
|
gemspec path: "../"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source "https://rubygems.org"
|
|
4
|
+
|
|
5
|
+
gem "rcov", platforms: :mri_18, group: [:development, :test]
|
|
6
|
+
gem "simplecov", platforms: [:jruby, :mri_19, :ruby_19, :mri_20, :rbx], group: [:development, :test], require: false
|
|
7
|
+
gem "jruby-openssl", platforms: :jruby
|
|
8
|
+
gem "jar-dependencies", "0.4.1", platforms: :jruby
|
|
9
|
+
gem "rails", "~> 8.0.0"
|
|
10
|
+
|
|
11
|
+
gemspec path: "../"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source "https://rubygems.org"
|
|
4
|
+
|
|
5
|
+
gem "rcov", platforms: :mri_18, group: [:development, :test]
|
|
6
|
+
gem "simplecov", platforms: [:jruby, :mri_19, :ruby_19, :mri_20, :rbx], group: [:development, :test], require: false
|
|
7
|
+
gem "jruby-openssl", platforms: :jruby
|
|
8
|
+
gem "jar-dependencies", "0.4.1", platforms: :jruby
|
|
9
|
+
gem "rails", "~> 8.1.0"
|
|
10
|
+
|
|
11
|
+
gemspec path: "../"
|
data/lib/asset_sync/storage.rb
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
require "cgi"
|
|
1
2
|
require "fog/core"
|
|
2
3
|
|
|
3
4
|
require "asset_sync/multi_mime"
|
|
@@ -287,6 +288,8 @@ module AssetSync
|
|
|
287
288
|
percentage = ((original_size.to_f/compressed_size.to_f)*100).round(2)
|
|
288
289
|
log "Uploading: #{f} instead of #{compressed_name} (compression increases this file by #{percentage}%)"
|
|
289
290
|
end
|
|
291
|
+
else
|
|
292
|
+
log "Uploading: #{f}"
|
|
290
293
|
end
|
|
291
294
|
else
|
|
292
295
|
compressed_encoding = CONTENT_ENCODING[File.extname(f).delete('.')]
|
data/lib/asset_sync/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
|
@@ -24,6 +24,9 @@ rescue Bundler::BundlerError => e
|
|
|
24
24
|
exit e.status_code
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
+
# Workaround for uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger
|
|
28
|
+
require "logger"
|
|
29
|
+
|
|
27
30
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
28
31
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
29
32
|
require 'asset_sync'
|
metadata
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: asset_sync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.19.
|
|
4
|
+
version: 2.19.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Hamilton
|
|
8
8
|
- David Rice
|
|
9
9
|
- Phil McClure
|
|
10
10
|
- Toby Osbourn
|
|
11
|
-
autorequire:
|
|
12
11
|
bindir: bin
|
|
13
12
|
cert_chain: []
|
|
14
|
-
date:
|
|
13
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
15
14
|
dependencies:
|
|
16
15
|
- !ruby/object:Gem::Dependency
|
|
17
16
|
name: fog-core
|
|
@@ -69,6 +68,20 @@ dependencies:
|
|
|
69
68
|
- - ">="
|
|
70
69
|
- !ruby/object:Gem::Version
|
|
71
70
|
version: '2.99'
|
|
71
|
+
- !ruby/object:Gem::Dependency
|
|
72
|
+
name: cgi
|
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '0'
|
|
78
|
+
type: :runtime
|
|
79
|
+
prerelease: false
|
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
81
|
+
requirements:
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: '0'
|
|
72
85
|
- !ruby/object:Gem::Dependency
|
|
73
86
|
name: rspec
|
|
74
87
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -221,10 +234,10 @@ extensions: []
|
|
|
221
234
|
extra_rdoc_files: []
|
|
222
235
|
files:
|
|
223
236
|
- ".editorconfig"
|
|
237
|
+
- ".github/dependabot.yml"
|
|
224
238
|
- ".github/workflows/codeql.yml"
|
|
225
239
|
- ".github/workflows/tests.yaml"
|
|
226
240
|
- ".gitignore"
|
|
227
|
-
- ".travis.yml"
|
|
228
241
|
- Appraisals
|
|
229
242
|
- CHANGELOG.md
|
|
230
243
|
- Gemfile
|
|
@@ -237,6 +250,8 @@ files:
|
|
|
237
250
|
- gemfiles/rails_7_0.gemfile
|
|
238
251
|
- gemfiles/rails_7_1.gemfile
|
|
239
252
|
- gemfiles/rails_7_2.gemfile
|
|
253
|
+
- gemfiles/rails_8_0.gemfile
|
|
254
|
+
- gemfiles/rails_8_1.gemfile
|
|
240
255
|
- lib/asset_sync.rb
|
|
241
256
|
- lib/asset_sync/asset_sync.rb
|
|
242
257
|
- lib/asset_sync/config.rb
|
|
@@ -270,11 +285,13 @@ files:
|
|
|
270
285
|
- spec/unit/rackspace_spec.rb
|
|
271
286
|
- spec/unit/railsless_spec.rb
|
|
272
287
|
- spec/unit/storage_spec.rb
|
|
273
|
-
homepage: https://github.com/
|
|
288
|
+
homepage: https://github.com/AssetSync/asset_sync
|
|
274
289
|
licenses:
|
|
275
290
|
- MIT
|
|
276
|
-
metadata:
|
|
277
|
-
|
|
291
|
+
metadata:
|
|
292
|
+
bug_tracker_uri: https://github.com/AssetSync/asset_sync/issues
|
|
293
|
+
changelog_uri: https://github.com/AssetSync/asset_sync/blob/master/CHANGELOG.md
|
|
294
|
+
source_code_uri: https://github.com/AssetSync/asset_sync
|
|
278
295
|
rdoc_options: []
|
|
279
296
|
require_paths:
|
|
280
297
|
- lib
|
|
@@ -289,8 +306,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
289
306
|
- !ruby/object:Gem::Version
|
|
290
307
|
version: '0'
|
|
291
308
|
requirements: []
|
|
292
|
-
rubygems_version: 3.
|
|
293
|
-
signing_key:
|
|
309
|
+
rubygems_version: 3.6.9
|
|
294
310
|
specification_version: 4
|
|
295
311
|
summary: Synchronises Assets in a Rails 3 application and Amazon S3/Cloudfront and
|
|
296
312
|
Rackspace Cloudfiles
|
data/.travis.yml
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# Send builds to container-based infrastructure
|
|
2
|
-
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
|
|
3
|
-
sudo: false
|
|
4
|
-
language: ruby
|
|
5
|
-
arch:
|
|
6
|
-
- amd64
|
|
7
|
-
- ppc64le
|
|
8
|
-
cache:
|
|
9
|
-
bundler: true
|
|
10
|
-
rvm:
|
|
11
|
-
- 2.5
|
|
12
|
-
- 2.6
|
|
13
|
-
- 2.7
|
|
14
|
-
- ruby-head
|
|
15
|
-
- jruby
|
|
16
|
-
- jruby-head
|
|
17
|
-
gemfile:
|
|
18
|
-
- gemfiles/rails_5_2.gemfile
|
|
19
|
-
- gemfiles/rails_6_0.gemfile
|
|
20
|
-
- gemfiles/rails_6_1.gemfile
|
|
21
|
-
before_install:
|
|
22
|
-
# Cannot use bundler 2.x due to dependency (mainly rails 4.2)
|
|
23
|
-
# Solution from https://github.com/rails/rails/blob/4-2-stable/.travis.yml
|
|
24
|
-
- "travis_retry gem update --system --no-doc || travis_retry gem update --system --no-rdoc --no-ri"
|
|
25
|
-
- "travis_retry gem install bundler -v '<2'"
|
|
26
|
-
env:
|
|
27
|
-
global:
|
|
28
|
-
- FOG_DIRECTORY=asset-sync-travis
|
|
29
|
-
- FOG_PROVIDER=AWS
|
|
30
|
-
- secure: "dy8Fqlg3b1ZMK1BY5z6NMQLbzAVd7GWVYY0MeCQALz76zRac0z8MyU8hkv6h\nozFry7DSdbGehGT9foOnkWTwzGzf1rzdd5cmWrUPk1wDTRgMM9SrwodPj1TU\nzsq2EFx0a79vADQN8JXkpLC1YD6kEb9aWkTxrIT9KBgw+J5H32o="
|
|
31
|
-
- secure: "Hmx7D7/p2LlA2ya/xBIz21s/8MLIQCjvfYB7RWBNlWk1PfqRLAz8wX6TUVWy\nfAFktMjLnpRLRYO7AgQS4jcfQ/k0HYK9IXzqXzeI00TNm0Vwp0TCXhawiOFT\nSvUMhs2/1vRfjN0HOJ75XlWRhJzV/G5rOMiafAZLsVzN/0iiB8g="
|
|
32
|
-
matrix:
|
|
33
|
-
fast_finish: true
|
|
34
|
-
allow_failures:
|
|
35
|
-
- rvm: ruby-head
|
|
36
|
-
- rvm: jruby-head
|
|
37
|
-
notifications:
|
|
38
|
-
webhooks:
|
|
39
|
-
urls:
|
|
40
|
-
- https://www.travisbuddy.com/
|
|
41
|
-
on_success: never
|