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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 50de89c768f1926c49fcf8710eb45a0828d92815
4
- data.tar.gz: 3213328600aca48ce8c54c5a984d5548a844d3a9
2
+ SHA256:
3
+ metadata.gz: 5de5140af28c81d37e8fd0c866a7f6c8ff3477e25c8ef4ebda025e394c7f8458
4
+ data.tar.gz: 8dcf3341ec3906930d3e97c719f4810b7242ebb4a72eb8aae7ff25046e2f74be
5
5
  SHA512:
6
- metadata.gz: bb86aa15921e9ffd00b0441a087a726e97f5cd0cd77cf5fffdf55b0127f003ba46f1ae3dfd0703488bc223c11b2ce3adacc43899d9260a1d3bf2da0436cd7e5c
7
- data.tar.gz: f04872a8b10b1ead1132381dbdd88e0b203bfd253015371a7b5b92bb9688cd451081f7fa8a76b9b3ef39e8b8c362b82bbfaf4d1651360b4eda1255327644900c
6
+ metadata.gz: 418f976c89b423d4611e40a08664773710df3f49c50179e922beb5eb3b79d998cb5c0800996a7de53171b16d79f85ad7a8e94ea1f39760bf8ceaf3ef81f1e691
7
+ data.tar.gz: 76187653c72259c71f3f48af09c35cfab72562c63c35b63d82131a6424dc87b671e74368bd9955db14b18ae3e3ad729a5f1bf5deaee58f4f7cb1a169c419b854
@@ -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-2014 John Lees-Miller
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
@@ -69,7 +69,6 @@ module Gemma
69
69
  tt.libs = gemspec.require_paths.dup
70
70
  tt.libs << 'test'
71
71
  tt.test_files = files
72
- tt.ruby_opts << '-rubygems' << '-rbundler/setup'
73
72
  @with_test_task.call(tt) if @with_test_task
74
73
  end
75
74
  end
@@ -13,7 +13,9 @@ module Gemma
13
13
  file, comment_char = '#', io = $stdout
14
14
  )
15
15
  lines = File.readlines(file)
16
- lines.shift if lines.first =~ /^#!/ # ignore shebang
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}(.*)/
@@ -2,6 +2,6 @@
2
2
  module Gemma
3
3
  VERSION_MAJOR = 5
4
4
  VERSION_MINOR = 0
5
- VERSION_PATCH = 0
5
+ VERSION_PATCH = 1
6
6
  VERSION = [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH].join('.')
7
7
  end
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.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: 2017-03-10 00:00:00.000000000 Z
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.0 Documentation
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.6.8
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.