much-plugin 0.1.0 → 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ data.tar.gz: 84f275cfa293994f90ba140878ad4ed41eb9d858
4
+ metadata.gz: 260ffbd14617020d9552de0c32cc715e31e40964
5
+ SHA512:
6
+ data.tar.gz: 07044deac53c6a4bc29ff6fcc7e58a099e404f1dff5bef1195be897d03e916e8da6f56f76f61ebfdf953dc90d0e67befcad1d08080936e9a9114105255f5dc1d
7
+ metadata.gz: c5459f146e1162ba23cb234bdedcc2e3126985eddf1be2308da30a099f4453fd836f502684483b48c73c04727d7b79681badb1d80545a1c405d40e80eca9539a
data/Gemfile CHANGED
@@ -2,5 +2,4 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'rake', "~> 10.4.0"
6
- gem 'pry', "~> 0.9.0"
5
+ gem 'pry', "~> 0.9.0"
@@ -1,3 +1,3 @@
1
1
  module MuchPlugin
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/much-plugin.gemspec CHANGED
@@ -1,15 +1,15 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "much-plugin/version"
4
+ require File.expand_path("../lib/much-plugin/version", __FILE__)
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "much-plugin"
8
8
  gem.version = MuchPlugin::VERSION
9
9
  gem.authors = ["Kelly Redding", "Collin Redding"]
10
10
  gem.email = ["kelly@kellyredding.com", "collin.redding@me.com"]
11
- gem.description = %q{An API to ensure mixin included logic (the "plugin") only runs once.}
12
11
  gem.summary = %q{An API to ensure mixin included logic (the "plugin") only runs once.}
12
+ gem.description = %q{An API to ensure mixin included logic (the "plugin") only runs once.}
13
13
  gem.homepage = "http://github.com/redding/much-plugin"
14
14
  gem.license = 'MIT'
15
15
 
@@ -18,6 +18,6 @@ Gem::Specification.new do |gem|
18
18
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
19
  gem.require_paths = ["lib"]
20
20
 
21
- gem.add_development_dependency("assert", ["~> 2.15"])
21
+ gem.add_development_dependency("assert", ["~> 2.16.1"])
22
22
 
23
23
  end
data/test/helper.rb CHANGED
@@ -8,3 +8,12 @@ $LOAD_PATH.unshift(File.expand_path("../..", __FILE__))
8
8
  require 'pry'
9
9
 
10
10
  require 'test/support/factory'
11
+
12
+ # 1.8.7 backfills
13
+
14
+ # Array#sample
15
+ if !(a = Array.new).respond_to?(:sample) && a.respond_to?(:choice)
16
+ class Array
17
+ alias_method :sample, :choice
18
+ end
19
+ end
metadata CHANGED
@@ -1,13 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: much-plugin
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease:
6
- segments:
7
- - 0
8
- - 1
9
- - 0
10
- version: 0.1.0
4
+ version: 0.1.1
11
5
  platform: ruby
12
6
  authors:
13
7
  - Kelly Redding
@@ -16,23 +10,18 @@ autorequire:
16
10
  bindir: bin
17
11
  cert_chain: []
18
12
 
19
- date: 2015-11-24 00:00:00 Z
13
+ date: 2016-06-01 00:00:00 Z
20
14
  dependencies:
21
15
  - !ruby/object:Gem::Dependency
16
+ name: assert
17
+ prerelease: false
22
18
  requirement: &id001 !ruby/object:Gem::Requirement
23
- none: false
24
19
  requirements:
25
20
  - - ~>
26
21
  - !ruby/object:Gem::Version
27
- hash: 29
28
- segments:
29
- - 2
30
- - 15
31
- version: "2.15"
22
+ version: 2.16.1
32
23
  type: :development
33
- name: assert
34
24
  version_requirements: *id001
35
- prerelease: false
36
25
  description: An API to ensure mixin included logic (the "plugin") only runs once.
37
26
  email:
38
27
  - kelly@kellyredding.com
@@ -48,7 +37,6 @@ files:
48
37
  - Gemfile
49
38
  - LICENSE
50
39
  - README.md
51
- - Rakefile
52
40
  - lib/much-plugin.rb
53
41
  - lib/much-plugin/version.rb
54
42
  - log/.gitkeep
@@ -60,35 +48,28 @@ files:
60
48
  homepage: http://github.com/redding/much-plugin
61
49
  licenses:
62
50
  - MIT
51
+ metadata: {}
52
+
63
53
  post_install_message:
64
54
  rdoc_options: []
65
55
 
66
56
  require_paths:
67
57
  - lib
68
58
  required_ruby_version: !ruby/object:Gem::Requirement
69
- none: false
70
59
  requirements:
71
- - - ">="
60
+ - &id002
61
+ - ">="
72
62
  - !ruby/object:Gem::Version
73
- hash: 3
74
- segments:
75
- - 0
76
63
  version: "0"
77
64
  required_rubygems_version: !ruby/object:Gem::Requirement
78
- none: false
79
65
  requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- hash: 3
83
- segments:
84
- - 0
85
- version: "0"
66
+ - *id002
86
67
  requirements: []
87
68
 
88
69
  rubyforge_project:
89
- rubygems_version: 1.8.29
70
+ rubygems_version: 2.6.4
90
71
  signing_key:
91
- specification_version: 3
72
+ specification_version: 4
92
73
  summary: An API to ensure mixin included logic (the "plugin") only runs once.
93
74
  test_files:
94
75
  - test/helper.rb
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"