asset_symlink 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b98105f70118665ae19fe8c86bb9d5449bfc341b
4
- data.tar.gz: 1f08c2508fa2c926bbc2a55e8e27092e7f9611a8
3
+ metadata.gz: 886e179f482561c592d62c5a30269bbb32db86a4
4
+ data.tar.gz: 9a9787a2dbd5465fb985875cdefadb23ff224d4b
5
5
  SHA512:
6
- metadata.gz: e365bf53e9eb6560e750377d7f7beb38f776220e87923a632e722b4c1263867a3be2fcee98d6421f101b85b1dbe089130b874097dac9ed5590a4235f3560d551
7
- data.tar.gz: 439473f427201480fcc9a6d9c77e376225d1d1aa81702f92b1b4702131b6718e9058c9acdb6d71c997866221c18470babb2966ad4b6ecf61bd15e7ec15dc5af9
6
+ metadata.gz: 190169f8d8b5f77a3dc0b54c5af215287bc1c7bc79701312fb18a5efb84f9856e29e943ee2fa46ed6a1e3cecb45155763958ce95c23922c00fec871597f63de6
7
+ data.tar.gz: 0ecf05988f058d3d18d1860afd90801dbefcf6fde2c4fad7e1e92f4a91f6becba6d6cac2e0ec7da6188d9c645aaff4426b31b8371bb7562ec18ddaf573635736
data/.travis.yml CHANGED
@@ -1,6 +1,13 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.0.0
4
- - 2.1.1
3
+ - 2.2.2
4
+ - 2.3.5
5
+ - 2.4.2
5
6
  install: bundle install
6
- gemfile: Gemfile
7
+ gemfile:
8
+ - Gemfile
9
+ - gemfiles/4.0.gemfile
10
+ - gemfiles/4.1.gemfile
11
+ - gemfiles/4.2.gemfile
12
+ - gemfiles/5.0.gemfile
13
+ - gemfiles/5.1.gemfile
data/Appraisals ADDED
@@ -0,0 +1,11 @@
1
+ (0..2).each do |version|
2
+ appraise "4.#{version}" do
3
+ gem "rails", "4.#{version}"
4
+ end
5
+ end
6
+
7
+ (0..1).each do |version|
8
+ appraise "5.#{version}" do
9
+ gem "rails", "5.#{version}"
10
+ end
11
+ end
data/Gemfile CHANGED
@@ -3,4 +3,5 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in asset_symlink.gemspec
4
4
  gemspec
5
5
 
6
- gem 'rails', '~>4.0.4'
6
+ gem 'rails', '>=4.0.4'
7
+ gem "appraisal"
data/Rakefile CHANGED
@@ -1,6 +1,9 @@
1
+ require "rubygems"
2
+ require "bundler/setup"
3
+ require 'appraisal'
1
4
  require "bundler/gem_tasks"
2
5
  require 'rspec/core/rake_task'
3
6
  RSpec::Core::RakeTask.new(:spec) do |t|
4
7
  end
5
8
 
6
- task :default => :spec
9
+ task :default => :spec
@@ -18,8 +18,9 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_runtime_dependency "rails", "~>4.0"
21
+ spec.add_development_dependency "appraisal"
22
+ spec.add_runtime_dependency "rails", '>=4', '<=5.1'
22
23
  spec.add_development_dependency "bundler", "~> 1.5"
23
- spec.add_development_dependency "rake"
24
+ spec.add_development_dependency "rake", '< 11.0'
24
25
  spec.add_development_dependency "rspec", "~>2.14.0"
25
26
  end
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "4.0"
6
+ gem "appraisal"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,105 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ asset_symlink (0.1.0)
5
+ rails (>= 4, <= 5.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.0.0)
11
+ actionpack (= 4.0.0)
12
+ mail (~> 2.5.3)
13
+ actionpack (4.0.0)
14
+ activesupport (= 4.0.0)
15
+ builder (~> 3.1.0)
16
+ erubis (~> 2.7.0)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ activemodel (4.0.0)
20
+ activesupport (= 4.0.0)
21
+ builder (~> 3.1.0)
22
+ activerecord (4.0.0)
23
+ activemodel (= 4.0.0)
24
+ activerecord-deprecated_finders (~> 1.0.2)
25
+ activesupport (= 4.0.0)
26
+ arel (~> 4.0.0)
27
+ activerecord-deprecated_finders (1.0.4)
28
+ activesupport (4.0.0)
29
+ i18n (~> 0.6, >= 0.6.4)
30
+ minitest (~> 4.2)
31
+ multi_json (~> 1.3)
32
+ thread_safe (~> 0.1)
33
+ tzinfo (~> 0.3.37)
34
+ appraisal (2.2.0)
35
+ bundler
36
+ rake
37
+ thor (>= 0.14.0)
38
+ arel (4.0.2)
39
+ builder (3.1.4)
40
+ diff-lcs (1.3)
41
+ erubis (2.7.0)
42
+ hike (1.2.3)
43
+ i18n (0.8.6)
44
+ mail (2.5.5)
45
+ mime-types (~> 1.16)
46
+ treetop (~> 1.4.8)
47
+ mime-types (1.25.1)
48
+ minitest (4.7.5)
49
+ multi_json (1.12.2)
50
+ polyglot (0.3.5)
51
+ rack (1.5.5)
52
+ rack-test (0.6.3)
53
+ rack (>= 1.0)
54
+ rails (4.0.0)
55
+ actionmailer (= 4.0.0)
56
+ actionpack (= 4.0.0)
57
+ activerecord (= 4.0.0)
58
+ activesupport (= 4.0.0)
59
+ bundler (>= 1.3.0, < 2.0)
60
+ railties (= 4.0.0)
61
+ sprockets-rails (~> 2.0.0)
62
+ railties (4.0.0)
63
+ actionpack (= 4.0.0)
64
+ activesupport (= 4.0.0)
65
+ rake (>= 0.8.7)
66
+ thor (>= 0.18.1, < 2.0)
67
+ rake (10.5.0)
68
+ rspec (2.14.1)
69
+ rspec-core (~> 2.14.0)
70
+ rspec-expectations (~> 2.14.0)
71
+ rspec-mocks (~> 2.14.0)
72
+ rspec-core (2.14.8)
73
+ rspec-expectations (2.14.5)
74
+ diff-lcs (>= 1.1.3, < 2.0)
75
+ rspec-mocks (2.14.6)
76
+ sprockets (2.12.4)
77
+ hike (~> 1.2)
78
+ multi_json (~> 1.0)
79
+ rack (~> 1.0)
80
+ tilt (~> 1.1, != 1.3.0)
81
+ sprockets-rails (2.0.1)
82
+ actionpack (>= 3.0)
83
+ activesupport (>= 3.0)
84
+ sprockets (~> 2.8)
85
+ thor (0.20.0)
86
+ thread_safe (0.3.6)
87
+ tilt (1.4.1)
88
+ treetop (1.4.15)
89
+ polyglot
90
+ polyglot (>= 0.3.1)
91
+ tzinfo (0.3.53)
92
+
93
+ PLATFORMS
94
+ ruby
95
+
96
+ DEPENDENCIES
97
+ appraisal
98
+ asset_symlink!
99
+ bundler (~> 1.5)
100
+ rails (= 4.0)
101
+ rake (< 11.0)
102
+ rspec (~> 2.14.0)
103
+
104
+ BUNDLED WITH
105
+ 1.15.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "4.1"
6
+ gem "appraisal"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,107 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ asset_symlink (0.1.0)
5
+ rails (>= 4, <= 5.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.1.0)
11
+ actionpack (= 4.1.0)
12
+ actionview (= 4.1.0)
13
+ mail (~> 2.5.4)
14
+ actionpack (4.1.0)
15
+ actionview (= 4.1.0)
16
+ activesupport (= 4.1.0)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ actionview (4.1.0)
20
+ activesupport (= 4.1.0)
21
+ builder (~> 3.1)
22
+ erubis (~> 2.7.0)
23
+ activemodel (4.1.0)
24
+ activesupport (= 4.1.0)
25
+ builder (~> 3.1)
26
+ activerecord (4.1.0)
27
+ activemodel (= 4.1.0)
28
+ activesupport (= 4.1.0)
29
+ arel (~> 5.0.0)
30
+ activesupport (4.1.0)
31
+ i18n (~> 0.6, >= 0.6.9)
32
+ json (~> 1.7, >= 1.7.7)
33
+ minitest (~> 5.1)
34
+ thread_safe (~> 0.1)
35
+ tzinfo (~> 1.1)
36
+ appraisal (2.2.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ arel (5.0.1.20140414130214)
41
+ builder (3.2.3)
42
+ concurrent-ruby (1.0.5)
43
+ diff-lcs (1.3)
44
+ erubis (2.7.0)
45
+ i18n (0.8.6)
46
+ json (1.8.6)
47
+ mail (2.5.5)
48
+ mime-types (~> 1.16)
49
+ treetop (~> 1.4.8)
50
+ mime-types (1.25.1)
51
+ minitest (5.10.3)
52
+ polyglot (0.3.5)
53
+ rack (1.5.5)
54
+ rack-test (0.6.3)
55
+ rack (>= 1.0)
56
+ rails (4.1.0)
57
+ actionmailer (= 4.1.0)
58
+ actionpack (= 4.1.0)
59
+ actionview (= 4.1.0)
60
+ activemodel (= 4.1.0)
61
+ activerecord (= 4.1.0)
62
+ activesupport (= 4.1.0)
63
+ bundler (>= 1.3.0, < 2.0)
64
+ railties (= 4.1.0)
65
+ sprockets-rails (~> 2.0)
66
+ railties (4.1.0)
67
+ actionpack (= 4.1.0)
68
+ activesupport (= 4.1.0)
69
+ rake (>= 0.8.7)
70
+ thor (>= 0.18.1, < 2.0)
71
+ rake (10.5.0)
72
+ rspec (2.14.1)
73
+ rspec-core (~> 2.14.0)
74
+ rspec-expectations (~> 2.14.0)
75
+ rspec-mocks (~> 2.14.0)
76
+ rspec-core (2.14.8)
77
+ rspec-expectations (2.14.5)
78
+ diff-lcs (>= 1.1.3, < 2.0)
79
+ rspec-mocks (2.14.6)
80
+ sprockets (3.7.1)
81
+ concurrent-ruby (~> 1.0)
82
+ rack (> 1, < 3)
83
+ sprockets-rails (2.3.3)
84
+ actionpack (>= 3.0)
85
+ activesupport (>= 3.0)
86
+ sprockets (>= 2.8, < 4.0)
87
+ thor (0.20.0)
88
+ thread_safe (0.3.6)
89
+ treetop (1.4.15)
90
+ polyglot
91
+ polyglot (>= 0.3.1)
92
+ tzinfo (1.2.3)
93
+ thread_safe (~> 0.1)
94
+
95
+ PLATFORMS
96
+ ruby
97
+
98
+ DEPENDENCIES
99
+ appraisal
100
+ asset_symlink!
101
+ bundler (~> 1.5)
102
+ rails (= 4.1)
103
+ rake (< 11.0)
104
+ rspec (~> 2.14.0)
105
+
106
+ BUNDLED WITH
107
+ 1.15.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "4.2"
6
+ gem "appraisal"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,131 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ asset_symlink (0.1.0)
5
+ rails (>= 4, <= 5.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.2.0)
11
+ actionpack (= 4.2.0)
12
+ actionview (= 4.2.0)
13
+ activejob (= 4.2.0)
14
+ mail (~> 2.5, >= 2.5.4)
15
+ rails-dom-testing (~> 1.0, >= 1.0.5)
16
+ actionpack (4.2.0)
17
+ actionview (= 4.2.0)
18
+ activesupport (= 4.2.0)
19
+ rack (~> 1.6.0)
20
+ rack-test (~> 0.6.2)
21
+ rails-dom-testing (~> 1.0, >= 1.0.5)
22
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
23
+ actionview (4.2.0)
24
+ activesupport (= 4.2.0)
25
+ builder (~> 3.1)
26
+ erubis (~> 2.7.0)
27
+ rails-dom-testing (~> 1.0, >= 1.0.5)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
29
+ activejob (4.2.0)
30
+ activesupport (= 4.2.0)
31
+ globalid (>= 0.3.0)
32
+ activemodel (4.2.0)
33
+ activesupport (= 4.2.0)
34
+ builder (~> 3.1)
35
+ activerecord (4.2.0)
36
+ activemodel (= 4.2.0)
37
+ activesupport (= 4.2.0)
38
+ arel (~> 6.0)
39
+ activesupport (4.2.0)
40
+ i18n (~> 0.7)
41
+ json (~> 1.7, >= 1.7.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ appraisal (2.2.0)
46
+ bundler
47
+ rake
48
+ thor (>= 0.14.0)
49
+ arel (6.0.4)
50
+ builder (3.2.3)
51
+ concurrent-ruby (1.0.5)
52
+ crass (1.0.2)
53
+ diff-lcs (1.3)
54
+ erubis (2.7.0)
55
+ globalid (0.4.0)
56
+ activesupport (>= 4.2.0)
57
+ i18n (0.8.6)
58
+ json (1.8.6)
59
+ loofah (2.1.1)
60
+ crass (~> 1.0.2)
61
+ nokogiri (>= 1.5.9)
62
+ mail (2.6.6)
63
+ mime-types (>= 1.16, < 4)
64
+ mime-types (3.1)
65
+ mime-types-data (~> 3.2015)
66
+ mime-types-data (3.2016.0521)
67
+ mini_portile2 (2.3.0)
68
+ minitest (5.10.3)
69
+ nokogiri (1.8.1)
70
+ mini_portile2 (~> 2.3.0)
71
+ rack (1.6.8)
72
+ rack-test (0.6.3)
73
+ rack (>= 1.0)
74
+ rails (4.2.0)
75
+ actionmailer (= 4.2.0)
76
+ actionpack (= 4.2.0)
77
+ actionview (= 4.2.0)
78
+ activejob (= 4.2.0)
79
+ activemodel (= 4.2.0)
80
+ activerecord (= 4.2.0)
81
+ activesupport (= 4.2.0)
82
+ bundler (>= 1.3.0, < 2.0)
83
+ railties (= 4.2.0)
84
+ sprockets-rails
85
+ rails-deprecated_sanitizer (1.0.3)
86
+ activesupport (>= 4.2.0.alpha)
87
+ rails-dom-testing (1.0.8)
88
+ activesupport (>= 4.2.0.beta, < 5.0)
89
+ nokogiri (~> 1.6)
90
+ rails-deprecated_sanitizer (>= 1.0.1)
91
+ rails-html-sanitizer (1.0.3)
92
+ loofah (~> 2.0)
93
+ railties (4.2.0)
94
+ actionpack (= 4.2.0)
95
+ activesupport (= 4.2.0)
96
+ rake (>= 0.8.7)
97
+ thor (>= 0.18.1, < 2.0)
98
+ rake (10.5.0)
99
+ rspec (2.14.1)
100
+ rspec-core (~> 2.14.0)
101
+ rspec-expectations (~> 2.14.0)
102
+ rspec-mocks (~> 2.14.0)
103
+ rspec-core (2.14.8)
104
+ rspec-expectations (2.14.5)
105
+ diff-lcs (>= 1.1.3, < 2.0)
106
+ rspec-mocks (2.14.6)
107
+ sprockets (3.7.1)
108
+ concurrent-ruby (~> 1.0)
109
+ rack (> 1, < 3)
110
+ sprockets-rails (3.2.1)
111
+ actionpack (>= 4.0)
112
+ activesupport (>= 4.0)
113
+ sprockets (>= 3.0.0)
114
+ thor (0.20.0)
115
+ thread_safe (0.3.6)
116
+ tzinfo (1.2.3)
117
+ thread_safe (~> 0.1)
118
+
119
+ PLATFORMS
120
+ ruby
121
+
122
+ DEPENDENCIES
123
+ appraisal
124
+ asset_symlink!
125
+ bundler (~> 1.5)
126
+ rails (= 4.2)
127
+ rake (< 11.0)
128
+ rspec (~> 2.14.0)
129
+
130
+ BUNDLED WITH
131
+ 1.15.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "5.0"
6
+ gem "appraisal"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,136 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ asset_symlink (0.1.0)
5
+ rails (>= 4, <= 5.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (5.0.0)
11
+ actionpack (= 5.0.0)
12
+ nio4r (~> 1.2)
13
+ websocket-driver (~> 0.6.1)
14
+ actionmailer (5.0.0)
15
+ actionpack (= 5.0.0)
16
+ actionview (= 5.0.0)
17
+ activejob (= 5.0.0)
18
+ mail (~> 2.5, >= 2.5.4)
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (5.0.0)
21
+ actionview (= 5.0.0)
22
+ activesupport (= 5.0.0)
23
+ rack (~> 2.0)
24
+ rack-test (~> 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
+ actionview (5.0.0)
28
+ activesupport (= 5.0.0)
29
+ builder (~> 3.1)
30
+ erubis (~> 2.7.0)
31
+ rails-dom-testing (~> 2.0)
32
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
33
+ activejob (5.0.0)
34
+ activesupport (= 5.0.0)
35
+ globalid (>= 0.3.6)
36
+ activemodel (5.0.0)
37
+ activesupport (= 5.0.0)
38
+ activerecord (5.0.0)
39
+ activemodel (= 5.0.0)
40
+ activesupport (= 5.0.0)
41
+ arel (~> 7.0)
42
+ activesupport (5.0.0)
43
+ concurrent-ruby (~> 1.0, >= 1.0.2)
44
+ i18n (~> 0.7)
45
+ minitest (~> 5.1)
46
+ tzinfo (~> 1.1)
47
+ appraisal (2.2.0)
48
+ bundler
49
+ rake
50
+ thor (>= 0.14.0)
51
+ arel (7.1.4)
52
+ builder (3.2.3)
53
+ concurrent-ruby (1.0.5)
54
+ crass (1.0.2)
55
+ diff-lcs (1.3)
56
+ erubis (2.7.0)
57
+ globalid (0.4.0)
58
+ activesupport (>= 4.2.0)
59
+ i18n (0.8.6)
60
+ loofah (2.1.1)
61
+ crass (~> 1.0.2)
62
+ nokogiri (>= 1.5.9)
63
+ mail (2.6.6)
64
+ mime-types (>= 1.16, < 4)
65
+ method_source (0.9.0)
66
+ mime-types (3.1)
67
+ mime-types-data (~> 3.2015)
68
+ mime-types-data (3.2016.0521)
69
+ mini_portile2 (2.3.0)
70
+ minitest (5.10.3)
71
+ nio4r (1.2.1)
72
+ nokogiri (1.8.1)
73
+ mini_portile2 (~> 2.3.0)
74
+ rack (2.0.3)
75
+ rack-test (0.6.3)
76
+ rack (>= 1.0)
77
+ rails (5.0.0)
78
+ actioncable (= 5.0.0)
79
+ actionmailer (= 5.0.0)
80
+ actionpack (= 5.0.0)
81
+ actionview (= 5.0.0)
82
+ activejob (= 5.0.0)
83
+ activemodel (= 5.0.0)
84
+ activerecord (= 5.0.0)
85
+ activesupport (= 5.0.0)
86
+ bundler (>= 1.3.0, < 2.0)
87
+ railties (= 5.0.0)
88
+ sprockets-rails (>= 2.0.0)
89
+ rails-dom-testing (2.0.3)
90
+ activesupport (>= 4.2.0)
91
+ nokogiri (>= 1.6)
92
+ rails-html-sanitizer (1.0.3)
93
+ loofah (~> 2.0)
94
+ railties (5.0.0)
95
+ actionpack (= 5.0.0)
96
+ activesupport (= 5.0.0)
97
+ method_source
98
+ rake (>= 0.8.7)
99
+ thor (>= 0.18.1, < 2.0)
100
+ rake (10.5.0)
101
+ rspec (2.14.1)
102
+ rspec-core (~> 2.14.0)
103
+ rspec-expectations (~> 2.14.0)
104
+ rspec-mocks (~> 2.14.0)
105
+ rspec-core (2.14.8)
106
+ rspec-expectations (2.14.5)
107
+ diff-lcs (>= 1.1.3, < 2.0)
108
+ rspec-mocks (2.14.6)
109
+ sprockets (3.7.1)
110
+ concurrent-ruby (~> 1.0)
111
+ rack (> 1, < 3)
112
+ sprockets-rails (3.2.1)
113
+ actionpack (>= 4.0)
114
+ activesupport (>= 4.0)
115
+ sprockets (>= 3.0.0)
116
+ thor (0.20.0)
117
+ thread_safe (0.3.6)
118
+ tzinfo (1.2.3)
119
+ thread_safe (~> 0.1)
120
+ websocket-driver (0.6.5)
121
+ websocket-extensions (>= 0.1.0)
122
+ websocket-extensions (0.1.2)
123
+
124
+ PLATFORMS
125
+ ruby
126
+
127
+ DEPENDENCIES
128
+ appraisal
129
+ asset_symlink!
130
+ bundler (~> 1.5)
131
+ rails (= 5.0)
132
+ rake (< 11.0)
133
+ rspec (~> 2.14.0)
134
+
135
+ BUNDLED WITH
136
+ 1.15.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "5.1"
6
+ gem "appraisal"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,136 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ asset_symlink (0.1.0)
5
+ rails (>= 4, <= 5.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (5.1.0)
11
+ actionpack (= 5.1.0)
12
+ nio4r (~> 2.0)
13
+ websocket-driver (~> 0.6.1)
14
+ actionmailer (5.1.0)
15
+ actionpack (= 5.1.0)
16
+ actionview (= 5.1.0)
17
+ activejob (= 5.1.0)
18
+ mail (~> 2.5, >= 2.5.4)
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (5.1.0)
21
+ actionview (= 5.1.0)
22
+ activesupport (= 5.1.0)
23
+ rack (~> 2.0)
24
+ rack-test (~> 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
+ actionview (5.1.0)
28
+ activesupport (= 5.1.0)
29
+ builder (~> 3.1)
30
+ erubi (~> 1.4)
31
+ rails-dom-testing (~> 2.0)
32
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
+ activejob (5.1.0)
34
+ activesupport (= 5.1.0)
35
+ globalid (>= 0.3.6)
36
+ activemodel (5.1.0)
37
+ activesupport (= 5.1.0)
38
+ activerecord (5.1.0)
39
+ activemodel (= 5.1.0)
40
+ activesupport (= 5.1.0)
41
+ arel (~> 8.0)
42
+ activesupport (5.1.0)
43
+ concurrent-ruby (~> 1.0, >= 1.0.2)
44
+ i18n (~> 0.7)
45
+ minitest (~> 5.1)
46
+ tzinfo (~> 1.1)
47
+ appraisal (2.2.0)
48
+ bundler
49
+ rake
50
+ thor (>= 0.14.0)
51
+ arel (8.0.0)
52
+ builder (3.2.3)
53
+ concurrent-ruby (1.0.5)
54
+ crass (1.0.2)
55
+ diff-lcs (1.3)
56
+ erubi (1.6.1)
57
+ globalid (0.4.0)
58
+ activesupport (>= 4.2.0)
59
+ i18n (0.8.6)
60
+ loofah (2.1.1)
61
+ crass (~> 1.0.2)
62
+ nokogiri (>= 1.5.9)
63
+ mail (2.6.6)
64
+ mime-types (>= 1.16, < 4)
65
+ method_source (0.9.0)
66
+ mime-types (3.1)
67
+ mime-types-data (~> 3.2015)
68
+ mime-types-data (3.2016.0521)
69
+ mini_portile2 (2.3.0)
70
+ minitest (5.10.3)
71
+ nio4r (2.1.0)
72
+ nokogiri (1.8.1)
73
+ mini_portile2 (~> 2.3.0)
74
+ rack (2.0.3)
75
+ rack-test (0.6.3)
76
+ rack (>= 1.0)
77
+ rails (5.1.0)
78
+ actioncable (= 5.1.0)
79
+ actionmailer (= 5.1.0)
80
+ actionpack (= 5.1.0)
81
+ actionview (= 5.1.0)
82
+ activejob (= 5.1.0)
83
+ activemodel (= 5.1.0)
84
+ activerecord (= 5.1.0)
85
+ activesupport (= 5.1.0)
86
+ bundler (>= 1.3.0, < 2.0)
87
+ railties (= 5.1.0)
88
+ sprockets-rails (>= 2.0.0)
89
+ rails-dom-testing (2.0.3)
90
+ activesupport (>= 4.2.0)
91
+ nokogiri (>= 1.6)
92
+ rails-html-sanitizer (1.0.3)
93
+ loofah (~> 2.0)
94
+ railties (5.1.0)
95
+ actionpack (= 5.1.0)
96
+ activesupport (= 5.1.0)
97
+ method_source
98
+ rake (>= 0.8.7)
99
+ thor (>= 0.18.1, < 2.0)
100
+ rake (10.5.0)
101
+ rspec (2.14.1)
102
+ rspec-core (~> 2.14.0)
103
+ rspec-expectations (~> 2.14.0)
104
+ rspec-mocks (~> 2.14.0)
105
+ rspec-core (2.14.8)
106
+ rspec-expectations (2.14.5)
107
+ diff-lcs (>= 1.1.3, < 2.0)
108
+ rspec-mocks (2.14.6)
109
+ sprockets (3.7.1)
110
+ concurrent-ruby (~> 1.0)
111
+ rack (> 1, < 3)
112
+ sprockets-rails (3.2.1)
113
+ actionpack (>= 4.0)
114
+ activesupport (>= 4.0)
115
+ sprockets (>= 3.0.0)
116
+ thor (0.20.0)
117
+ thread_safe (0.3.6)
118
+ tzinfo (1.2.3)
119
+ thread_safe (~> 0.1)
120
+ websocket-driver (0.6.5)
121
+ websocket-extensions (>= 0.1.0)
122
+ websocket-extensions (0.1.2)
123
+
124
+ PLATFORMS
125
+ ruby
126
+
127
+ DEPENDENCIES
128
+ appraisal
129
+ asset_symlink!
130
+ bundler (~> 1.5)
131
+ rails (= 5.1)
132
+ rake (< 11.0)
133
+ rspec (~> 2.14.0)
134
+
135
+ BUNDLED WITH
136
+ 1.15.4
@@ -1,3 +1,3 @@
1
1
  module AssetSymlink
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,29 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asset_symlink
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Frederick Cheung
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-14 00:00:00.000000000 Z
11
+ date: 2017-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: appraisal
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rails
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
- - - "~>"
31
+ - - ">="
18
32
  - !ruby/object:Gem::Version
19
- version: '4.0'
33
+ version: '4'
34
+ - - "<="
35
+ - !ruby/object:Gem::Version
36
+ version: '5.1'
20
37
  type: :runtime
21
38
  prerelease: false
22
39
  version_requirements: !ruby/object:Gem::Requirement
23
40
  requirements:
24
- - - "~>"
41
+ - - ">="
25
42
  - !ruby/object:Gem::Version
26
- version: '4.0'
43
+ version: '4'
44
+ - - "<="
45
+ - !ruby/object:Gem::Version
46
+ version: '5.1'
27
47
  - !ruby/object:Gem::Dependency
28
48
  name: bundler
29
49
  requirement: !ruby/object:Gem::Requirement
@@ -42,16 +62,16 @@ dependencies:
42
62
  name: rake
43
63
  requirement: !ruby/object:Gem::Requirement
44
64
  requirements:
45
- - - ">="
65
+ - - "<"
46
66
  - !ruby/object:Gem::Version
47
- version: '0'
67
+ version: '11.0'
48
68
  type: :development
49
69
  prerelease: false
50
70
  version_requirements: !ruby/object:Gem::Requirement
51
71
  requirements:
52
- - - ">="
72
+ - - "<"
53
73
  - !ruby/object:Gem::Version
54
- version: '0'
74
+ version: '11.0'
55
75
  - !ruby/object:Gem::Dependency
56
76
  name: rspec
57
77
  requirement: !ruby/object:Gem::Requirement
@@ -75,11 +95,22 @@ extra_rdoc_files: []
75
95
  files:
76
96
  - ".gitignore"
77
97
  - ".travis.yml"
98
+ - Appraisals
78
99
  - Gemfile
79
100
  - LICENSE.txt
80
101
  - README.md
81
102
  - Rakefile
82
103
  - asset_symlink.gemspec
104
+ - gemfiles/4.0.gemfile
105
+ - gemfiles/4.0.gemfile.lock
106
+ - gemfiles/4.1.gemfile
107
+ - gemfiles/4.1.gemfile.lock
108
+ - gemfiles/4.2.gemfile
109
+ - gemfiles/4.2.gemfile.lock
110
+ - gemfiles/5.0.gemfile
111
+ - gemfiles/5.0.gemfile.lock
112
+ - gemfiles/5.1.gemfile
113
+ - gemfiles/5.1.gemfile.lock
83
114
  - lib/asset_symlink.rb
84
115
  - lib/asset_symlink/railtie.rb
85
116
  - lib/asset_symlink/tasks/symlink.rake
@@ -138,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
169
  version: '0'
139
170
  requirements: []
140
171
  rubyforge_project:
141
- rubygems_version: 2.5.2
172
+ rubygems_version: 2.6.13
142
173
  signing_key:
143
174
  specification_version: 4
144
175
  summary: easily make assets available under a consistent public name