inform-runtime 1.2.1 → 1.2.2

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
2
  SHA256:
3
- metadata.gz: 9f79733e3acaea7ef29ef54048e40496a2e59f4eb3e367369cfadfc7a9ac1e7a
4
- data.tar.gz: 60560e1801f0489cf40b6144adb7ec5618d0bbb265f3304ea59d1837e61bd379
3
+ metadata.gz: 3c1f6b9a2d86d9855a752009619386dd1e8af63c40e2c0cf9dfba94f38b1ac3c
4
+ data.tar.gz: b0558bb28bf5348f55b42b0b9a038ba23a77a75ee6c939e5deb843820f616022
5
5
  SHA512:
6
- metadata.gz: 154bb199c8b4de11899a9206abe0805b71a8a678c62dac81fbb326de36d7f2092f7b70c14702403dab7ae45752ea647fb012d941498d554d7196d9f6cd651562
7
- data.tar.gz: 4000a694bde0d03cd6a88b7959f2e451fb2935cc8468330a6fbbcb8408696e30a1cde5912da28289a5a35c9027eca75c52cbb952a0d408cb64e8a30a4727573a
6
+ metadata.gz: 73ad7ed36d79a1a512f9c69c9c1b0069a04718e72c7547869326559bfe3d56f3fea32c383e57191e6ef1c48048195aed4380bc1014d79be13d3a6514c52eebeb
7
+ data.tar.gz: ebb8265637ff63fe25ea54b9f0dbcdd81a6c9aab2e1b9a900b02b113fe350011973083af788b68c3950a09c2506a514ed59b74daaa09037bfa582bbafed4d7d2
data/Rakefile CHANGED
@@ -23,24 +23,6 @@ CLOBBER.add '*.gem', 'pkg'
23
23
 
24
24
  task default: %i[package]
25
25
 
26
- desc 'Archive the current codebase snapshot'
27
- task :archive do
28
- repo_path = '.'
29
- archive = File.expand_path(File.join('..', "#{StoryTeller::PROJECT}.zip"), Dir.pwd)
30
-
31
- diff_clean = system('git', '-C', repo_path, 'diff-index', '--quiet', 'HEAD', '--')
32
- untracked = `git -C #{repo_path.shellescape} ls-files --others --exclude-standard`
33
-
34
- unless diff_clean && untracked.empty?
35
- warn 'Please resolve uncommitted or untracked changes in working tree.'
36
- exit 1
37
- end
38
-
39
- FileUtils.rm_f(archive)
40
-
41
- system('git', '-C', repo_path, 'archive', '-o', archive, '--format=zip', 'HEAD') or abort
42
- end
43
-
44
26
  desc 'Run the rubocop linter'
45
27
  task :lint do
46
28
  system('bundle', 'exec', 'rubocop') or abort
@@ -63,6 +45,7 @@ task :verify do
63
45
  system('bundle', 'exec', 'rspec', 'spec/verify_gem_spec.rb') or abort
64
46
  system('bundle', 'exec', 'rake', 'clean')
65
47
  end
48
+ task verify: :package
66
49
 
67
50
  desc 'Publish the gem'
68
51
  task :publish do
@@ -19,6 +19,8 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with StoryTeller. If not, see <http://www.gnu.org/licenses/>.
21
21
 
22
+ require_relative 'version'
23
+
22
24
  # The Inform module
23
25
  module Inform
24
26
  # These are built-ins primarily found used in the InformLibrary.
@@ -23,7 +23,7 @@
23
23
  module StoryTeller
24
24
  # module Engine
25
25
  module Engine
26
- VERSION = '1.2.1'.freeze
26
+ VERSION = '1.2.2'.freeze
27
27
  end
28
28
  end
29
29
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inform-runtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nels Nelson