gemma 5.0.0 → 5.0.1
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 +5 -5
- data/README.rdoc +4 -1
- data/lib/gemma/rake_tasks/minitest_tasks.rb +0 -1
- data/lib/gemma/utility.rb +3 -1
- data/lib/gemma/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5de5140af28c81d37e8fd0c866a7f6c8ff3477e25c8ef4ebda025e394c7f8458
|
4
|
+
data.tar.gz: 8dcf3341ec3906930d3e97c719f4810b7242ebb4a72eb8aae7ff25046e2f74be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 418f976c89b423d4611e40a08664773710df3f49c50179e922beb5eb3b79d998cb5c0800996a7de53171b16d79f85ad7a8e94ea1f39760bf8ceaf3ef81f1e691
|
7
|
+
data.tar.gz: 76187653c72259c71f3f48af09c35cfab72562c63c35b63d82131a6424dc87b671e74368bd9955db14b18ae3e3ad729a5f1bf5deaee58f4f7cb1a169c419b854
|
data/README.rdoc
CHANGED
@@ -123,6 +123,9 @@ See the gemma API docs for more information.
|
|
123
123
|
|
124
124
|
== HISTORY
|
125
125
|
|
126
|
+
<em>5.0.1</em>
|
127
|
+
* fix rake testtask to avoid `cannot load such file -- ubygems` in ruby 2.5.0
|
128
|
+
|
126
129
|
<em>5.0.0</em>
|
127
130
|
* updated dependencies
|
128
131
|
* added rubocop as a dependency and lint the code and the template
|
@@ -166,7 +169,7 @@ See the gemma API docs for more information.
|
|
166
169
|
|
167
170
|
== LICENSE
|
168
171
|
|
169
|
-
Copyright (c) 2010-
|
172
|
+
Copyright (c) 2010-2017 John Lees-Miller
|
170
173
|
|
171
174
|
Permission is hereby granted, free of charge, to any person obtaining
|
172
175
|
a copy of this software and associated documentation files (the
|
data/lib/gemma/utility.rb
CHANGED
@@ -13,7 +13,9 @@ module Gemma
|
|
13
13
|
file, comment_char = '#', io = $stdout
|
14
14
|
)
|
15
15
|
lines = File.readlines(file)
|
16
|
-
|
16
|
+
# ignore shebang and magic comments
|
17
|
+
lines.shift if lines.first =~ /^#!/
|
18
|
+
lines.shift if lines.first =~ /^#\s*frozen_string_literal/
|
17
19
|
lines.each do |line|
|
18
20
|
line.strip!
|
19
21
|
break unless line =~ /^#{comment_char}(.*)/
|
data/lib/gemma/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Lees-Miller
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: highline
|
@@ -158,7 +158,7 @@ rdoc_options:
|
|
158
158
|
- "--main"
|
159
159
|
- README.rdoc
|
160
160
|
- "--title"
|
161
|
-
- gemma-5.0.
|
161
|
+
- gemma-5.0.1 Documentation
|
162
162
|
require_paths:
|
163
163
|
- lib
|
164
164
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
version: '0'
|
174
174
|
requirements: []
|
175
175
|
rubyforge_project:
|
176
|
-
rubygems_version: 2.
|
176
|
+
rubygems_version: 2.7.3
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: A gem development tool that plays well with bundler.
|