initialjs-rails 0.2.0.8 → 0.2.0.9

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
- SHA1:
3
- metadata.gz: 969111c9ada1b50926519b1bbadacbae43db61c4
4
- data.tar.gz: df9f98e32e1886d722fa5d00ae16a83d29603904
2
+ SHA256:
3
+ metadata.gz: 7b637b21928caf35ff4a870bdb96b22178828201169f15fe3ab6a4f09e083bed
4
+ data.tar.gz: 3966243093d2d3f0fd4fffac0a6d4a82de0fbf7da735827caa2c5bff168177e6
5
5
  SHA512:
6
- metadata.gz: 8c55babd49c4a6463c5edc3f46bcf11aab030848ba62fc1b6960364a5080e18af1be87ed5eb73598b103e1b97b114a45069800a93ad1173505dd0cc041a22858
7
- data.tar.gz: 7b81c68d194c9b095bd90bff9fccfcc4812dbe49962ccb618a0d36c6c2505de3cde85af8aa811f7b173454cd0aa4b136ff0973383e3048998fe35a918747c42f
6
+ metadata.gz: 50acbb91e8d3ea3a944923b59ed2df676b6c7185aaf3e181bc545d0fd0dec4877b5399196885c5721f0328a8568bd7d6387ce3189acf45d6a7f691890e12b40e
7
+ data.tar.gz: 5550eefee634fc28533604486556ce4e4272b4ff34e4dde2fa14bbfc148a215c05f62ccddfd3c89660e9594f54b781a993888d514203bee43588a9783c86f143
@@ -1,30 +1,35 @@
1
+ dist: xenial
1
2
  language: ruby
2
-
3
3
  sudo: false
4
4
 
5
5
  cache: bundler
6
6
 
7
- script: "bundle exec rake"
7
+ bundler_args: --jobs 3 --retry 3
8
+
9
+ before_install:
10
+ - 'travis_retry gem update --system'
11
+ - 'travis_retry gem install bundler'
8
12
 
9
13
  rvm:
10
- - 1.9.3
11
- - 2.2.4
12
- - 2.3.0
13
- - 2.4.0
14
- - 2.5.1
14
+ - 2.4.9
15
+ - 2.5.7
16
+ - 2.6.5
17
+ - 2.7.0
18
+ - ruby-head
19
+ - truffleruby
15
20
 
16
21
  gemfile:
17
22
  - gemfiles/rails_4.2.gemfile
18
- - gemfiles/rails_5.0.gemfile
19
- - gemfiles/rails_5.1.gemfile
20
23
  - gemfiles/rails_5.2.gemfile
24
+ - gemfiles/rails_6.0.gemfile
25
+ - gemfiles/rails_edge.gemfile
21
26
 
22
27
  matrix:
23
28
  fast_finish: true
29
+ allow_failures:
30
+ - rvm: ruby-head
24
31
  exclude:
25
- - rvm: 1.9.3
26
- gemfile: gemfiles/rails_5.0.gemfile
27
- - rvm: 1.9.3
28
- gemfile: gemfiles/rails_5.1.gemfile
29
- - rvm: 1.9.3
30
- gemfile: gemfiles/rails_5.2.gemfile
32
+ - rvm: 2.4.9
33
+ gemfile: gemfiles/rails_6.0.gemfile
34
+ - rvm: 2.4.9
35
+ gemfile: gemfiles/rails_edge.gemfile
data/Appraisals CHANGED
@@ -1,15 +1,15 @@
1
- appraise "rails-4.2" do
2
- gem "activemodel", '~> 4.2.0'
1
+ appraise 'rails-4.2' do
2
+ gem 'activemodel', '~> 4.2.0'
3
3
  end
4
4
 
5
- appraise "rails-5.0" do
6
- gem "activemodel", '~> 5.0.0'
5
+ appraise 'rails-5.2' do
6
+ gem 'activemodel', '~> 5.2.0'
7
7
  end
8
8
 
9
- appraise "rails-5.1" do
10
- gem "activemodel", '~> 5.1.0'
9
+ appraise 'rails-6.0' do
10
+ gem 'activemodel', '~> 6.0.0'
11
11
  end
12
12
 
13
- appraise "rails-5.2" do
14
- gem "activemodel", '~> 5.2.0'
13
+ appraise 'rails_edge' do
14
+ gem 'activemodel', github: 'rails/rails'
15
15
  end
@@ -1,6 +1,12 @@
1
+ ## 0.2.0.9
2
+
3
+ - Relax Rails dependency to allow Rails 6 ~ @JunichiIto
4
+ - Don't Ruby < 2.4, do test Rails 6 and edge ~ @dgilperez
5
+ - Bumps rake version to protect against CVE-2020-8130 ~ @dgilperez
6
+
1
7
  ## 0.2.0.8
2
8
 
3
- - Drops Rails 3.2 / Ruby 2.0 support ~ @dgilperez
9
+ - Drops Rails 3.2 / Ruby 1.9.3 / 2.0 support ~ @dgilperez
4
10
 
5
11
  ## 0.2.0.7
6
12
 
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [initial.js](https://github.com/judesfernando/initial.js) is a simple jQuery plugin to make Gmail-like text avatars for profile pictures using SVG.
4
4
 
5
- **initialjs-rails** is a wrapper to easily include it in your Rails projects using the assets pipeline.
5
+ **initialjs-rails** is a wrapper to easily include it in your Rails projects using the assets pipeline. Since 0.2.0.8, minimun requirements are Ruby 2.1+ and Rails 4.2+. Previous versions may work, but are not tested and will not be supported.
6
6
 
7
7
  ## Installation
8
8
 
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- initialjs-rails (0.2.0.8)
5
- railties (>= 3.1, < 6.0)
4
+ initialjs-rails (0.2.0.9)
5
+ railties (>= 3.1, < 7.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -33,18 +33,18 @@ GEM
33
33
  rake
34
34
  thor (>= 0.14.0)
35
35
  builder (3.2.3)
36
- crass (1.0.4)
36
+ crass (1.0.6)
37
37
  diff-lcs (1.3)
38
38
  erubis (2.7.0)
39
39
  i18n (0.8.5)
40
- loofah (2.2.2)
40
+ loofah (2.5.0)
41
41
  crass (~> 1.0.2)
42
42
  nokogiri (>= 1.5.9)
43
- mini_portile2 (2.3.0)
43
+ mini_portile2 (2.4.0)
44
44
  minitest (5.10.2)
45
- nokogiri (1.8.4)
46
- mini_portile2 (~> 2.3.0)
47
- rack (1.6.8)
45
+ nokogiri (1.10.9)
46
+ mini_portile2 (~> 2.4.0)
47
+ rack (1.6.11)
48
48
  rack-test (0.6.3)
49
49
  rack (>= 1.0)
50
50
  rails-deprecated_sanitizer (1.0.3)
@@ -53,14 +53,14 @@ GEM
53
53
  activesupport (>= 4.2.0, < 5.0)
54
54
  nokogiri (~> 1.6)
55
55
  rails-deprecated_sanitizer (>= 1.0.1)
56
- rails-html-sanitizer (1.0.4)
57
- loofah (~> 2.2, >= 2.2.2)
56
+ rails-html-sanitizer (1.3.0)
57
+ loofah (~> 2.3)
58
58
  railties (4.2.9)
59
59
  actionpack (= 4.2.9)
60
60
  activesupport (= 4.2.9)
61
61
  rake (>= 0.8.7)
62
62
  thor (>= 0.18.1, < 2.0)
63
- rake (10.5.0)
63
+ rake (13.0.1)
64
64
  rspec (3.6.0)
65
65
  rspec-core (~> 3.6.0)
66
66
  rspec-expectations (~> 3.6.0)
@@ -85,10 +85,10 @@ PLATFORMS
85
85
  DEPENDENCIES
86
86
  activemodel (~> 4.2.0)
87
87
  appraisal
88
- bundler (~> 1.9)
88
+ bundler
89
89
  initialjs-rails!
90
- rake (~> 10.0)
90
+ rake (>= 12.3.3)
91
91
  rspec
92
92
 
93
93
  BUNDLED WITH
94
- 1.14.6
94
+ 2.1.4
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- initialjs-rails (0.2.0.8)
5
- railties (>= 3.1, < 6.0)
4
+ initialjs-rails (0.2.0.9)
5
+ railties (>= 3.1, < 7.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -31,36 +31,36 @@ GEM
31
31
  bundler
32
32
  rake
33
33
  thor (>= 0.14.0)
34
- builder (3.2.3)
34
+ builder (3.2.4)
35
35
  concurrent-ruby (1.0.5)
36
- crass (1.0.4)
36
+ crass (1.0.6)
37
37
  diff-lcs (1.3)
38
- erubi (1.7.1)
38
+ erubi (1.9.0)
39
39
  i18n (1.0.1)
40
40
  concurrent-ruby (~> 1.0)
41
- loofah (2.2.2)
41
+ loofah (2.5.0)
42
42
  crass (~> 1.0.2)
43
43
  nokogiri (>= 1.5.9)
44
- method_source (0.9.0)
45
- mini_portile2 (2.3.0)
44
+ method_source (1.0.0)
45
+ mini_portile2 (2.4.0)
46
46
  minitest (5.11.3)
47
- nokogiri (1.8.4)
48
- mini_portile2 (~> 2.3.0)
49
- rack (2.0.5)
47
+ nokogiri (1.10.9)
48
+ mini_portile2 (~> 2.4.0)
49
+ rack (2.2.2)
50
50
  rack-test (1.1.0)
51
51
  rack (>= 1.0, < 3)
52
52
  rails-dom-testing (2.0.3)
53
53
  activesupport (>= 4.2.0)
54
54
  nokogiri (>= 1.6)
55
- rails-html-sanitizer (1.0.4)
56
- loofah (~> 2.2, >= 2.2.2)
55
+ rails-html-sanitizer (1.3.0)
56
+ loofah (~> 2.3)
57
57
  railties (5.2.0)
58
58
  actionpack (= 5.2.0)
59
59
  activesupport (= 5.2.0)
60
60
  method_source
61
61
  rake (>= 0.8.7)
62
62
  thor (>= 0.18.1, < 2.0)
63
- rake (10.5.0)
63
+ rake (13.0.1)
64
64
  rspec (3.7.0)
65
65
  rspec-core (~> 3.7.0)
66
66
  rspec-expectations (~> 3.7.0)
@@ -85,10 +85,10 @@ PLATFORMS
85
85
  DEPENDENCIES
86
86
  activemodel (~> 5.2.0)
87
87
  appraisal
88
- bundler (~> 1.9)
88
+ bundler
89
89
  initialjs-rails!
90
- rake (~> 10.0)
90
+ rake (>= 12.3.3)
91
91
  rspec
92
92
 
93
93
  BUNDLED WITH
94
- 1.14.6
94
+ 2.1.4
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activemodel", "~> 5.1.0"
5
+ gem "activemodel", "~> 6.0.0"
6
6
 
7
7
  gemspec path: "../"
@@ -0,0 +1,96 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ initialjs-rails (0.2.0.9)
5
+ railties (>= 3.1, < 7.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionpack (6.0.3.1)
11
+ actionview (= 6.0.3.1)
12
+ activesupport (= 6.0.3.1)
13
+ rack (~> 2.0, >= 2.0.8)
14
+ rack-test (>= 0.6.3)
15
+ rails-dom-testing (~> 2.0)
16
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
+ actionview (6.0.3.1)
18
+ activesupport (= 6.0.3.1)
19
+ builder (~> 3.1)
20
+ erubi (~> 1.4)
21
+ rails-dom-testing (~> 2.0)
22
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
+ activemodel (6.0.3.1)
24
+ activesupport (= 6.0.3.1)
25
+ activesupport (6.0.3.1)
26
+ concurrent-ruby (~> 1.0, >= 1.0.2)
27
+ i18n (>= 0.7, < 2)
28
+ minitest (~> 5.1)
29
+ tzinfo (~> 1.1)
30
+ zeitwerk (~> 2.2, >= 2.2.2)
31
+ appraisal (2.2.0)
32
+ bundler
33
+ rake
34
+ thor (>= 0.14.0)
35
+ builder (3.2.4)
36
+ concurrent-ruby (1.1.6)
37
+ crass (1.0.6)
38
+ diff-lcs (1.3)
39
+ erubi (1.9.0)
40
+ i18n (1.8.2)
41
+ concurrent-ruby (~> 1.0)
42
+ loofah (2.5.0)
43
+ crass (~> 1.0.2)
44
+ nokogiri (>= 1.5.9)
45
+ method_source (1.0.0)
46
+ mini_portile2 (2.4.0)
47
+ minitest (5.14.1)
48
+ nokogiri (1.10.9)
49
+ mini_portile2 (~> 2.4.0)
50
+ rack (2.2.2)
51
+ rack-test (1.1.0)
52
+ rack (>= 1.0, < 3)
53
+ rails-dom-testing (2.0.3)
54
+ activesupport (>= 4.2.0)
55
+ nokogiri (>= 1.6)
56
+ rails-html-sanitizer (1.3.0)
57
+ loofah (~> 2.3)
58
+ railties (6.0.3.1)
59
+ actionpack (= 6.0.3.1)
60
+ activesupport (= 6.0.3.1)
61
+ method_source
62
+ rake (>= 0.8.7)
63
+ thor (>= 0.20.3, < 2.0)
64
+ rake (13.0.1)
65
+ rspec (3.9.0)
66
+ rspec-core (~> 3.9.0)
67
+ rspec-expectations (~> 3.9.0)
68
+ rspec-mocks (~> 3.9.0)
69
+ rspec-core (3.9.2)
70
+ rspec-support (~> 3.9.3)
71
+ rspec-expectations (3.9.2)
72
+ diff-lcs (>= 1.2.0, < 2.0)
73
+ rspec-support (~> 3.9.0)
74
+ rspec-mocks (3.9.1)
75
+ diff-lcs (>= 1.2.0, < 2.0)
76
+ rspec-support (~> 3.9.0)
77
+ rspec-support (3.9.3)
78
+ thor (1.0.1)
79
+ thread_safe (0.3.6)
80
+ tzinfo (1.2.7)
81
+ thread_safe (~> 0.1)
82
+ zeitwerk (2.3.0)
83
+
84
+ PLATFORMS
85
+ ruby
86
+
87
+ DEPENDENCIES
88
+ activemodel (~> 6.0.0)
89
+ appraisal
90
+ bundler
91
+ initialjs-rails!
92
+ rake (>= 12.3.3)
93
+ rspec
94
+
95
+ BUNDLED WITH
96
+ 2.1.4
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activemodel", "~> 5.0.0"
5
+ gem "activemodel", github: "rails/rails"
6
6
 
7
7
  gemspec path: "../"
@@ -0,0 +1,100 @@
1
+ GIT
2
+ remote: https://github.com/rails/rails.git
3
+ revision: 598dc9f147e6153a461d6707ca0bf6e356e321ad
4
+ specs:
5
+ actionpack (6.1.0.alpha)
6
+ actionview (= 6.1.0.alpha)
7
+ activesupport (= 6.1.0.alpha)
8
+ rack (~> 2.0, >= 2.0.9)
9
+ rack-test (>= 0.6.3)
10
+ rails-dom-testing (~> 2.0)
11
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
12
+ actionview (6.1.0.alpha)
13
+ activesupport (= 6.1.0.alpha)
14
+ builder (~> 3.1)
15
+ erubi (~> 1.4)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
18
+ activemodel (6.1.0.alpha)
19
+ activesupport (= 6.1.0.alpha)
20
+ activesupport (6.1.0.alpha)
21
+ concurrent-ruby (~> 1.0, >= 1.0.2)
22
+ i18n (>= 1.6, < 2)
23
+ minitest (~> 5.1)
24
+ tzinfo (~> 2.0)
25
+ zeitwerk (~> 2.3)
26
+ railties (6.1.0.alpha)
27
+ actionpack (= 6.1.0.alpha)
28
+ activesupport (= 6.1.0.alpha)
29
+ method_source
30
+ rake (>= 0.8.7)
31
+ thor (~> 1.0)
32
+
33
+ PATH
34
+ remote: ..
35
+ specs:
36
+ initialjs-rails (0.2.0.9)
37
+ railties (>= 3.1, < 7.0)
38
+
39
+ GEM
40
+ remote: https://rubygems.org/
41
+ specs:
42
+ appraisal (2.2.0)
43
+ bundler
44
+ rake
45
+ thor (>= 0.14.0)
46
+ builder (3.2.4)
47
+ concurrent-ruby (1.1.6)
48
+ crass (1.0.6)
49
+ diff-lcs (1.3)
50
+ erubi (1.9.0)
51
+ i18n (1.8.2)
52
+ concurrent-ruby (~> 1.0)
53
+ loofah (2.5.0)
54
+ crass (~> 1.0.2)
55
+ nokogiri (>= 1.5.9)
56
+ method_source (1.0.0)
57
+ mini_portile2 (2.4.0)
58
+ minitest (5.14.1)
59
+ nokogiri (1.10.9)
60
+ mini_portile2 (~> 2.4.0)
61
+ rack (2.2.2)
62
+ rack-test (1.1.0)
63
+ rack (>= 1.0, < 3)
64
+ rails-dom-testing (2.0.3)
65
+ activesupport (>= 4.2.0)
66
+ nokogiri (>= 1.6)
67
+ rails-html-sanitizer (1.3.0)
68
+ loofah (~> 2.3)
69
+ rake (13.0.1)
70
+ rspec (3.9.0)
71
+ rspec-core (~> 3.9.0)
72
+ rspec-expectations (~> 3.9.0)
73
+ rspec-mocks (~> 3.9.0)
74
+ rspec-core (3.9.2)
75
+ rspec-support (~> 3.9.3)
76
+ rspec-expectations (3.9.2)
77
+ diff-lcs (>= 1.2.0, < 2.0)
78
+ rspec-support (~> 3.9.0)
79
+ rspec-mocks (3.9.1)
80
+ diff-lcs (>= 1.2.0, < 2.0)
81
+ rspec-support (~> 3.9.0)
82
+ rspec-support (3.9.3)
83
+ thor (1.0.1)
84
+ tzinfo (2.0.2)
85
+ concurrent-ruby (~> 1.0)
86
+ zeitwerk (2.3.0)
87
+
88
+ PLATFORMS
89
+ ruby
90
+
91
+ DEPENDENCIES
92
+ activemodel!
93
+ appraisal
94
+ bundler
95
+ initialjs-rails!
96
+ rake (>= 12.3.3)
97
+ rspec
98
+
99
+ BUNDLED WITH
100
+ 2.1.4
@@ -19,10 +19,10 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
 
22
- spec.add_dependency 'railties', [">= 3.1", "< 6.0"]
22
+ spec.add_dependency 'railties', [">= 3.1", "< 7.0"]
23
23
 
24
- spec.add_development_dependency "bundler", "~> 1.9"
25
- spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "bundler"
25
+ spec.add_development_dependency "rake", ">= 12.3.3"
26
26
  spec.add_development_dependency "rspec"
27
27
  spec.add_development_dependency "appraisal"
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module InitialjsRails
2
- VERSION = '0.2.0.8'
2
+ VERSION = '0.2.0.9'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: initialjs-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.8
4
+ version: 0.2.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Gil
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-30 00:00:00.000000000 Z
11
+ date: 2020-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3.1'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '6.0'
22
+ version: '7.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,35 +29,35 @@ dependencies:
29
29
  version: '3.1'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6.0'
32
+ version: '7.0'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - "~>"
37
+ - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: '1.9'
39
+ version: '0'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - "~>"
44
+ - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: '1.9'
46
+ version: '0'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rake
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - "~>"
51
+ - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: '10.0'
53
+ version: 12.3.3
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - "~>"
58
+ - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: '10.0'
60
+ version: 12.3.3
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: rspec
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -105,16 +105,14 @@ files:
105
105
  - bin/console
106
106
  - bin/setup
107
107
  - gemfiles/.bundle/config
108
- - gemfiles/rails_3.2.gemfile
109
- - gemfiles/rails_3.2.gemfile.lock
110
108
  - gemfiles/rails_4.2.gemfile
111
109
  - gemfiles/rails_4.2.gemfile.lock
112
- - gemfiles/rails_5.0.gemfile
113
- - gemfiles/rails_5.0.gemfile.lock
114
- - gemfiles/rails_5.1.gemfile
115
- - gemfiles/rails_5.1.gemfile.lock
116
110
  - gemfiles/rails_5.2.gemfile
117
111
  - gemfiles/rails_5.2.gemfile.lock
112
+ - gemfiles/rails_6.0.gemfile
113
+ - gemfiles/rails_6.0.gemfile.lock
114
+ - gemfiles/rails_edge.gemfile
115
+ - gemfiles/rails_edge.gemfile.lock
118
116
  - initialjs-rails.gemspec
119
117
  - lib/initialjs-rails.rb
120
118
  - lib/initialjs-rails/engine.rb
@@ -141,8 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
141
139
  - !ruby/object:Gem::Version
142
140
  version: '0'
143
141
  requirements: []
144
- rubyforge_project:
145
- rubygems_version: 2.6.12
142
+ rubygems_version: 3.0.6
146
143
  signing_key:
147
144
  specification_version: 4
148
145
  summary: initial.js for Rails
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "activemodel", "~> 3.2.0"
6
- gem "nokogiri", "< 1.8.1"
7
-
8
- gemspec path: "../"
@@ -1,92 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- initialjs-rails (0.2.0.7)
5
- railties (>= 3.1, < 6.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionpack (3.2.22.5)
11
- activemodel (= 3.2.22.5)
12
- activesupport (= 3.2.22.5)
13
- builder (~> 3.0.0)
14
- erubis (~> 2.7.0)
15
- journey (~> 1.0.4)
16
- rack (~> 1.4.5)
17
- rack-cache (~> 1.2)
18
- rack-test (~> 0.6.1)
19
- sprockets (~> 2.2.1)
20
- activemodel (3.2.22.5)
21
- activesupport (= 3.2.22.5)
22
- builder (~> 3.0.0)
23
- activesupport (3.2.22.5)
24
- i18n (~> 0.6, >= 0.6.4)
25
- multi_json (~> 1.0)
26
- appraisal (2.2.0)
27
- bundler
28
- rake
29
- thor (>= 0.14.0)
30
- builder (3.0.4)
31
- diff-lcs (1.3)
32
- erubis (2.7.0)
33
- hike (1.2.3)
34
- i18n (0.8.5)
35
- journey (1.0.4)
36
- json (1.8.6)
37
- mini_portile2 (2.2.0)
38
- multi_json (1.12.1)
39
- nokogiri (1.8.0)
40
- mini_portile2 (~> 2.2.0)
41
- rack (1.4.7)
42
- rack-cache (1.7.1)
43
- rack (>= 0.4)
44
- rack-ssl (1.3.4)
45
- rack
46
- rack-test (0.6.3)
47
- rack (>= 1.0)
48
- railties (3.2.22.5)
49
- actionpack (= 3.2.22.5)
50
- activesupport (= 3.2.22.5)
51
- rack-ssl (~> 1.3.2)
52
- rake (>= 0.8.7)
53
- rdoc (~> 3.4)
54
- thor (>= 0.14.6, < 2.0)
55
- rake (10.5.0)
56
- rdoc (3.12.2)
57
- json (~> 1.4)
58
- rspec (3.6.0)
59
- rspec-core (~> 3.6.0)
60
- rspec-expectations (~> 3.6.0)
61
- rspec-mocks (~> 3.6.0)
62
- rspec-core (3.6.0)
63
- rspec-support (~> 3.6.0)
64
- rspec-expectations (3.6.0)
65
- diff-lcs (>= 1.2.0, < 2.0)
66
- rspec-support (~> 3.6.0)
67
- rspec-mocks (3.6.0)
68
- diff-lcs (>= 1.2.0, < 2.0)
69
- rspec-support (~> 3.6.0)
70
- rspec-support (3.6.0)
71
- sprockets (2.2.3)
72
- hike (~> 1.2)
73
- multi_json (~> 1.0)
74
- rack (~> 1.0)
75
- tilt (~> 1.1, != 1.3.0)
76
- thor (0.19.4)
77
- tilt (1.4.1)
78
-
79
- PLATFORMS
80
- ruby
81
-
82
- DEPENDENCIES
83
- activemodel (~> 3.2.0)
84
- appraisal
85
- bundler (~> 1.9)
86
- initialjs-rails!
87
- nokogiri (< 1.8.1)
88
- rake (~> 10.0)
89
- rspec
90
-
91
- BUNDLED WITH
92
- 1.14.6
@@ -1,93 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- initialjs-rails (0.2.0.8)
5
- railties (>= 3.1, < 6.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionpack (5.0.4)
11
- actionview (= 5.0.4)
12
- activesupport (= 5.0.4)
13
- rack (~> 2.0)
14
- rack-test (~> 0.6.3)
15
- rails-dom-testing (~> 2.0)
16
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
17
- actionview (5.0.4)
18
- activesupport (= 5.0.4)
19
- builder (~> 3.1)
20
- erubis (~> 2.7.0)
21
- rails-dom-testing (~> 2.0)
22
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
23
- activemodel (5.0.4)
24
- activesupport (= 5.0.4)
25
- activesupport (5.0.4)
26
- concurrent-ruby (~> 1.0, >= 1.0.2)
27
- i18n (~> 0.7)
28
- minitest (~> 5.1)
29
- tzinfo (~> 1.1)
30
- appraisal (2.2.0)
31
- bundler
32
- rake
33
- thor (>= 0.14.0)
34
- builder (3.2.3)
35
- concurrent-ruby (1.0.5)
36
- crass (1.0.4)
37
- diff-lcs (1.3)
38
- erubis (2.7.0)
39
- i18n (0.8.5)
40
- loofah (2.2.2)
41
- crass (~> 1.0.2)
42
- nokogiri (>= 1.5.9)
43
- method_source (0.9.0)
44
- mini_portile2 (2.3.0)
45
- minitest (5.10.2)
46
- nokogiri (1.8.4)
47
- mini_portile2 (~> 2.3.0)
48
- rack (2.0.5)
49
- rack-test (0.6.3)
50
- rack (>= 1.0)
51
- rails-dom-testing (2.0.3)
52
- activesupport (>= 4.2.0)
53
- nokogiri (>= 1.6)
54
- rails-html-sanitizer (1.0.4)
55
- loofah (~> 2.2, >= 2.2.2)
56
- railties (5.0.4)
57
- actionpack (= 5.0.4)
58
- activesupport (= 5.0.4)
59
- method_source
60
- rake (>= 0.8.7)
61
- thor (>= 0.18.1, < 2.0)
62
- rake (10.5.0)
63
- rspec (3.6.0)
64
- rspec-core (~> 3.6.0)
65
- rspec-expectations (~> 3.6.0)
66
- rspec-mocks (~> 3.6.0)
67
- rspec-core (3.6.0)
68
- rspec-support (~> 3.6.0)
69
- rspec-expectations (3.6.0)
70
- diff-lcs (>= 1.2.0, < 2.0)
71
- rspec-support (~> 3.6.0)
72
- rspec-mocks (3.6.0)
73
- diff-lcs (>= 1.2.0, < 2.0)
74
- rspec-support (~> 3.6.0)
75
- rspec-support (3.6.0)
76
- thor (0.19.4)
77
- thread_safe (0.3.6)
78
- tzinfo (1.2.3)
79
- thread_safe (~> 0.1)
80
-
81
- PLATFORMS
82
- ruby
83
-
84
- DEPENDENCIES
85
- activemodel (~> 5.0.0)
86
- appraisal
87
- bundler (~> 1.9)
88
- initialjs-rails!
89
- rake (~> 10.0)
90
- rspec
91
-
92
- BUNDLED WITH
93
- 1.14.6
@@ -1,93 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- initialjs-rails (0.2.0.8)
5
- railties (>= 3.1, < 6.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionpack (5.1.0)
11
- actionview (= 5.1.0)
12
- activesupport (= 5.1.0)
13
- rack (~> 2.0)
14
- rack-test (~> 0.6.3)
15
- rails-dom-testing (~> 2.0)
16
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
17
- actionview (5.1.0)
18
- activesupport (= 5.1.0)
19
- builder (~> 3.1)
20
- erubi (~> 1.4)
21
- rails-dom-testing (~> 2.0)
22
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
23
- activemodel (5.1.0)
24
- activesupport (= 5.1.0)
25
- activesupport (5.1.0)
26
- concurrent-ruby (~> 1.0, >= 1.0.2)
27
- i18n (~> 0.7)
28
- minitest (~> 5.1)
29
- tzinfo (~> 1.1)
30
- appraisal (2.2.0)
31
- bundler
32
- rake
33
- thor (>= 0.14.0)
34
- builder (3.2.3)
35
- concurrent-ruby (1.0.5)
36
- crass (1.0.4)
37
- diff-lcs (1.3)
38
- erubi (1.7.1)
39
- i18n (0.8.5)
40
- loofah (2.2.2)
41
- crass (~> 1.0.2)
42
- nokogiri (>= 1.5.9)
43
- method_source (0.9.0)
44
- mini_portile2 (2.3.0)
45
- minitest (5.10.2)
46
- nokogiri (1.8.4)
47
- mini_portile2 (~> 2.3.0)
48
- rack (2.0.5)
49
- rack-test (0.6.3)
50
- rack (>= 1.0)
51
- rails-dom-testing (2.0.3)
52
- activesupport (>= 4.2.0)
53
- nokogiri (>= 1.6)
54
- rails-html-sanitizer (1.0.4)
55
- loofah (~> 2.2, >= 2.2.2)
56
- railties (5.1.0)
57
- actionpack (= 5.1.0)
58
- activesupport (= 5.1.0)
59
- method_source
60
- rake (>= 0.8.7)
61
- thor (>= 0.18.1, < 2.0)
62
- rake (10.5.0)
63
- rspec (3.6.0)
64
- rspec-core (~> 3.6.0)
65
- rspec-expectations (~> 3.6.0)
66
- rspec-mocks (~> 3.6.0)
67
- rspec-core (3.6.0)
68
- rspec-support (~> 3.6.0)
69
- rspec-expectations (3.6.0)
70
- diff-lcs (>= 1.2.0, < 2.0)
71
- rspec-support (~> 3.6.0)
72
- rspec-mocks (3.6.0)
73
- diff-lcs (>= 1.2.0, < 2.0)
74
- rspec-support (~> 3.6.0)
75
- rspec-support (3.6.0)
76
- thor (0.19.4)
77
- thread_safe (0.3.6)
78
- tzinfo (1.2.3)
79
- thread_safe (~> 0.1)
80
-
81
- PLATFORMS
82
- ruby
83
-
84
- DEPENDENCIES
85
- activemodel (~> 5.1.0)
86
- appraisal
87
- bundler (~> 1.9)
88
- initialjs-rails!
89
- rake (~> 10.0)
90
- rspec
91
-
92
- BUNDLED WITH
93
- 1.14.6