tel_link_rails 0.0.2 → 0.0.3

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: f8ca29112fca3f56cc5013129865fd99a769d4ad
4
- data.tar.gz: 377e64652b580f65cec7e0e8c542c022dfb427f0
2
+ SHA256:
3
+ metadata.gz: 79d59f538977fcb9945566fdc0404ca93aa9e3c5c1667fb0fbb176debc44ce70
4
+ data.tar.gz: da6b53e1384e360807fff8daa9961cb4f51793f9016b222fe309159164b6fdcc
5
5
  SHA512:
6
- metadata.gz: c968b7c5aee13c39bfbcce56ccb126b9d54e4da9b8099ac5437019e35e8632736ee4ab088409990d44cd8d46251acb5dcccc416b38c200a62faea930c2265262
7
- data.tar.gz: e63cbda68f1ef742086fda0053bffd9fda9e3f10ebf6389a137d9554377927d2a0d0f3dfa8e570df38855641e1b418d86374ede40631b84c0ff958a19cf89588
6
+ metadata.gz: cade7f81bc60b668b2c669bf9e3e6d8b88ca6cac772aaac1efbbe9d34583170bbed493bef4d4a2303404fbe8c6da267d0214294d1bd8711c282b5408b5f650b5
7
+ data.tar.gz: 124a0201fa13d50caf46acb415c58c2d1671529f33211b6a81b9571e0abc97e692bec64d4e28162e54058c600a6e4e0c5bd64ebccda9f2b6c007ab5e96e2b4e5
@@ -0,0 +1,70 @@
1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ #
7
+ # ******** NOTE ********
8
+ # We have attempted to detect the languages in your repository. Please check
9
+ # the `language` matrix defined below to confirm you have the correct set of
10
+ # supported CodeQL languages.
11
+ #
12
+ name: "CodeQL"
13
+
14
+ on:
15
+ push:
16
+ branches: [ master ]
17
+ pull_request:
18
+ # The branches below must be a subset of the branches above
19
+ branches: [ master ]
20
+ schedule:
21
+ - cron: '21 21 * * 2'
22
+
23
+ jobs:
24
+ analyze:
25
+ name: Analyze
26
+ runs-on: ubuntu-latest
27
+ permissions:
28
+ actions: read
29
+ contents: read
30
+ security-events: write
31
+
32
+ strategy:
33
+ fail-fast: false
34
+ matrix:
35
+ language: [ 'ruby' ]
36
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
37
+ # Learn more about CodeQL language support at https://git.io/codeql-language-support
38
+
39
+ steps:
40
+ - name: Checkout repository
41
+ uses: actions/checkout@v2
42
+
43
+ # Initializes the CodeQL tools for scanning.
44
+ - name: Initialize CodeQL
45
+ uses: github/codeql-action/init@v1
46
+ with:
47
+ languages: ${{ matrix.language }}
48
+ # If you wish to specify custom queries, you can do so here or in a config file.
49
+ # By default, queries listed here will override any specified in a config file.
50
+ # Prefix the list here with "+" to use these queries and those in the config file.
51
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
52
+
53
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
+ # If this step fails, then you should remove it and run the build manually (see below)
55
+ - name: Autobuild
56
+ uses: github/codeql-action/autobuild@v1
57
+
58
+ # ℹ️ Command-line programs to run using the OS shell.
59
+ # 📚 https://git.io/JvXDl
60
+
61
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
62
+ # and modify them (or add more) to build your code if your project
63
+ # uses a compiled language
64
+
65
+ #- run: |
66
+ # make bootstrap
67
+ # make release
68
+
69
+ - name: Perform CodeQL Analysis
70
+ uses: github/codeql-action/analyze@v1
data/.gitignore CHANGED
@@ -1,6 +1,5 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
- /Gemfile.lock
4
3
  /_yardoc/
5
4
  /coverage/
6
5
  /doc/
data/Gemfile.lock ADDED
@@ -0,0 +1,67 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ tel_link_rails (0.0.3)
5
+ actionview
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionview (7.0.2.2)
11
+ activesupport (= 7.0.2.2)
12
+ builder (~> 3.1)
13
+ erubi (~> 1.4)
14
+ rails-dom-testing (~> 2.0)
15
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
16
+ activesupport (7.0.2.2)
17
+ concurrent-ruby (~> 1.0, >= 1.0.2)
18
+ i18n (>= 1.6, < 2)
19
+ minitest (>= 5.1)
20
+ tzinfo (~> 2.0)
21
+ builder (3.2.4)
22
+ concurrent-ruby (1.1.9)
23
+ crass (1.0.6)
24
+ diff-lcs (1.5.0)
25
+ erubi (1.10.0)
26
+ i18n (1.10.0)
27
+ concurrent-ruby (~> 1.0)
28
+ loofah (2.14.0)
29
+ crass (~> 1.0.2)
30
+ nokogiri (>= 1.5.9)
31
+ minitest (5.15.0)
32
+ nokogiri (1.13.1-x86_64-darwin)
33
+ racc (~> 1.4)
34
+ racc (1.6.0)
35
+ rails-dom-testing (2.0.3)
36
+ activesupport (>= 4.2.0)
37
+ nokogiri (>= 1.6)
38
+ rails-html-sanitizer (1.4.2)
39
+ loofah (~> 2.3)
40
+ rake (12.3.3)
41
+ rspec (3.11.0)
42
+ rspec-core (~> 3.11.0)
43
+ rspec-expectations (~> 3.11.0)
44
+ rspec-mocks (~> 3.11.0)
45
+ rspec-core (3.11.0)
46
+ rspec-support (~> 3.11.0)
47
+ rspec-expectations (3.11.0)
48
+ diff-lcs (>= 1.2.0, < 2.0)
49
+ rspec-support (~> 3.11.0)
50
+ rspec-mocks (3.11.0)
51
+ diff-lcs (>= 1.2.0, < 2.0)
52
+ rspec-support (~> 3.11.0)
53
+ rspec-support (3.11.0)
54
+ tzinfo (2.0.4)
55
+ concurrent-ruby (~> 1.0)
56
+
57
+ PLATFORMS
58
+ x86_64-darwin-20
59
+
60
+ DEPENDENCIES
61
+ bundler (~> 2.2)
62
+ rake (~> 12.3)
63
+ rspec
64
+ tel_link_rails!
65
+
66
+ BUNDLED WITH
67
+ 2.2.30
@@ -1,3 +1,3 @@
1
1
  module TelLinkRails
2
- VERSION = "0.0.2"
2
+ VERSION = '0.0.3'
3
3
  end
@@ -1,26 +1,25 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path('lib', __dir__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
3
  require 'tel_link_rails/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
- spec.name = "tel_link_rails"
6
+ spec.name = 'tel_link_rails'
8
7
  spec.version = TelLinkRails::VERSION
9
- spec.authors = ["Tom Simnett"]
10
- spec.email = ["tom@initforthe.com"]
11
- spec.summary = %q{Rails telephone link helper}
12
- spec.description = %q{Rails telephone link helper}
13
- spec.homepage = "https://github.com/initforthe/tel_link_rails"
14
- spec.license = "MIT"
8
+ spec.authors = ['Tom Simnett']
9
+ spec.email = ['tom@initforthe.com']
10
+ spec.summary = 'Rails telephone link helper'
11
+ spec.description = 'Rails telephone link helper'
12
+ spec.homepage = 'https://github.com/initforthe/tel_link_rails'
13
+ spec.license = 'MIT'
15
14
 
16
15
  spec.files = `git ls-files -z`.split("\x0")
17
16
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
18
+ spec.require_paths = ['lib']
20
19
 
21
20
  spec.add_dependency 'actionview'
22
21
 
23
- spec.add_development_dependency "bundler", "~> 1.7"
24
- spec.add_development_dependency "rake", "~> 10.0"
25
- spec.add_development_dependency "rspec"
22
+ spec.add_development_dependency 'bundler', '~> 2.2'
23
+ spec.add_development_dependency 'rake', '~> 12.3'
24
+ spec.add_development_dependency 'rspec'
26
25
  end
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tel_link_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Simnett
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-30 00:00:00.000000000 Z
11
+ date: 2022-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionview
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.7'
33
+ version: '2.2'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.7'
40
+ version: '2.2'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '10.0'
47
+ version: '12.3'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '10.0'
54
+ version: '12.3'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  description: Rails telephone link helper
@@ -73,9 +73,11 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - .gitignore
77
- - .rspec
76
+ - ".github/workflows/codeql-analysis.yml"
77
+ - ".gitignore"
78
+ - ".rspec"
78
79
  - Gemfile
80
+ - Gemfile.lock
79
81
  - LICENSE.txt
80
82
  - README.md
81
83
  - Rakefile
@@ -96,17 +98,16 @@ require_paths:
96
98
  - lib
97
99
  required_ruby_version: !ruby/object:Gem::Requirement
98
100
  requirements:
99
- - - '>='
101
+ - - ">="
100
102
  - !ruby/object:Gem::Version
101
103
  version: '0'
102
104
  required_rubygems_version: !ruby/object:Gem::Requirement
103
105
  requirements:
104
- - - '>='
106
+ - - ">="
105
107
  - !ruby/object:Gem::Version
106
108
  version: '0'
107
109
  requirements: []
108
- rubyforge_project:
109
- rubygems_version: 2.4.2
110
+ rubygems_version: 3.1.6
110
111
  signing_key:
111
112
  specification_version: 4
112
113
  summary: Rails telephone link helper