coderay_bash 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 24ad5b383e144ad467b7eb00d1047d9ee13c14ea
4
+ data.tar.gz: faf4dfc2b0504f12ba818af60611c849ad26366a
5
+ SHA512:
6
+ metadata.gz: bdd084a4190ac8a82a75bf1b0530101c4c3be4f51cb759d524240600fec1cf8223d878136f460f4e3170602de8b5a83f0348b8b570bf766c308303c00e81bf65
7
+ data.tar.gz: a71e514fd0c76de84dc2b8a8aa3974591980e89caaccf843e85d6629fbf223cb8260e6bc6c6e15f39a01a84344d9c7091843e21dfc2d35153c4f947ddea7d7f6
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ v1.0.6
2
+ ------
3
+
4
+ * license file added
5
+
1
6
  v1.0.5
2
7
  ------
3
8
 
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2010-2014 Petr Kovar <pejuko@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
22
+
data/README.md CHANGED
@@ -23,3 +23,7 @@ Bash scanner for highlighting scripts with CodeRay
23
23
  * `:erb_bash` -- erb code in bash strings
24
24
 
25
25
  For more information see [CodeRay web pages](http://coderay.rubychan.de/)
26
+
27
+ ### Licence
28
+
29
+ MIT
data/Rakefile CHANGED
@@ -4,14 +4,14 @@
4
4
  # @author: Petr Kovar <pejuko@gmail.com>
5
5
  $KCODE='UTF8' if RUBY_VERSION < "1.9"
6
6
 
7
- require 'rake/gempackagetask'
7
+ require 'rubygems/package_task'
8
8
  require 'rake/testtask'
9
9
  require 'rake/clean'
10
10
 
11
11
  CLEAN << "coverage" << "pkg" << "README.html" << "CHANGELOG.html"
12
12
 
13
13
  task :default => [:test, :gem]
14
- Rake::GemPackageTask.new(eval(File.read("coderay_bash.gemspec"))) {|pkg|}
14
+ Gem::PackageTask.new(eval(File.read("coderay_bash.gemspec"))) {|pkg|}
15
15
 
16
16
  Rake::TestTask.new(:test) do |t|
17
17
  t.pattern = File.join(File.dirname(__FILE__), 'test/test.rb')
@@ -12,12 +12,13 @@ spec = Gem::Specification.new do |s|
12
12
  s.homepage = "http://github.com/pejuko/coderay_bash"
13
13
  s.email = "pejuko@gmail.com"
14
14
  s.authors = ["Petr Kovar"]
15
+ s.licenses = ["MIT"]
15
16
  s.name = 'coderay_bash'
16
- s.version = '1.0.5'
17
+ s.version = '1.0.6'
17
18
  s.date = Time.now.strftime("%Y-%m-%d")
18
19
  s.add_dependency('coderay', '>= 1.0')
19
20
  s.require_path = 'lib'
20
- s.files = ["README.md", "CHANGELOG", "coderay_bash.gemspec", "Rakefile"]
21
+ s.files = ["MIT_License.txt", "README.md", "CHANGELOG", "coderay_bash.gemspec", "Rakefile"]
21
22
  s.files += Dir["lib/**/*.rb"]
22
23
  s.post_install_message = <<EOF
23
24
  This gem was tested with coderay 1.0 and won't work with coderay 0.9.
metadata CHANGED
@@ -1,73 +1,67 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coderay_bash
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
5
- prerelease:
4
+ version: 1.0.6
6
5
  platform: ruby
7
6
  authors:
8
7
  - Petr Kovar
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-03-16 00:00:00.000000000 Z
11
+ date: 2014-09-20 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: coderay
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '1.0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '1.0'
30
- description: ! 'Bash highlighting for coderay. This gem was tested with coderay 1.0
31
- and won''t work with coderay < 1.0.
32
-
33
- '
27
+ description: |
28
+ Bash highlighting for coderay. This gem was tested with coderay 1.0 and won't work with coderay < 1.0.
34
29
  email: pejuko@gmail.com
35
30
  executables: []
36
31
  extensions: []
37
32
  extra_rdoc_files: []
38
33
  files:
39
- - README.md
40
34
  - CHANGELOG
41
- - coderay_bash.gemspec
35
+ - MIT_License.txt
36
+ - README.md
42
37
  - Rakefile
43
- - lib/coderay/scanners/erb_bash.rb
38
+ - coderay_bash.gemspec
44
39
  - lib/coderay/scanners/bash.rb
40
+ - lib/coderay/scanners/erb_bash.rb
45
41
  - lib/coderay_bash.rb
46
42
  homepage: http://github.com/pejuko/coderay_bash
47
- licenses: []
48
- post_install_message: ! 'This gem was tested with coderay 1.0 and won''t work with
49
- coderay 0.9.
50
-
51
- '
43
+ licenses:
44
+ - MIT
45
+ metadata: {}
46
+ post_install_message: |
47
+ This gem was tested with coderay 1.0 and won't work with coderay 0.9.
52
48
  rdoc_options: []
53
49
  require_paths:
54
50
  - lib
55
51
  required_ruby_version: !ruby/object:Gem::Requirement
56
- none: false
57
52
  requirements:
58
- - - ! '>='
53
+ - - ">="
59
54
  - !ruby/object:Gem::Version
60
55
  version: '0'
61
56
  required_rubygems_version: !ruby/object:Gem::Requirement
62
- none: false
63
57
  requirements:
64
- - - ! '>='
58
+ - - ">="
65
59
  - !ruby/object:Gem::Version
66
60
  version: '0'
67
61
  requirements: []
68
62
  rubyforge_project:
69
- rubygems_version: 1.8.23
63
+ rubygems_version: 2.2.2
70
64
  signing_key:
71
- specification_version: 3
65
+ specification_version: 4
72
66
  summary: Simple bash scanner for highlighting with coderay.
73
67
  test_files: []