bbq-core 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a48e0d7e2b08e20b007adafe0ead84e77bb54cc68bd4c8cdf7e5d68a1ae1fde
4
- data.tar.gz: d8a944e766fb21bc119d771d28fcdee6e27a393e78ae4fded7bd403b420e613f
3
+ metadata.gz: 0f6d2101fb1c6e648c940dcba00f603ae53c06313282003d8492c3947a9fd3b0
4
+ data.tar.gz: 15536bbed9fde05e2dc6381428cab37c79c7da6933b6f26d85d56d06e23fe7bb
5
5
  SHA512:
6
- metadata.gz: 69a88b57acf34e2ec33f347a86d82f8c45f275f2ed25852e4a313fa4196ba9f6fc2fab33758f9059b67fa7b318a18ba2efd87ef4cc88bbb7114df4a84a47f6a6
7
- data.tar.gz: f90be21ff429c510175e37d08fa438734053b97260b9979bb04b53e2caf3bc8edcd17d4b2458cd4cb7e50be74ff7efcccba963e28b1553dc526c1d9afa29261c
6
+ metadata.gz: c545b59dbbcd5990d7f787132c2c730816054432fe30ec15577199a0ce419bf00592425ddd57cd059134efdb828a9f832484796e7e2bac17e83ca3d47c674f97
7
+ data.tar.gz: 6c6efbb64ec1dcab119008f4a9169e8b19d185c77e297e6d3d525e6eb830716892183fcf454cbc522eea26974b91423139afbf802cac6ee0437f57ed88db8eaf
@@ -0,0 +1,8 @@
1
+ GEM_VERSION = $(shell cat ../BBQ_VERSION)
2
+ GEM_NAME = bbq-core
3
+ REQUIRE = $(GEM_NAME)
4
+
5
+ include ../support/make/install.mk
6
+ include ../support/make/test.mk
7
+ include ../support/make/gem.mk
8
+ include ../support/make/help.mk
@@ -23,6 +23,5 @@ Gem::Specification.new do |s|
23
23
  s.add_dependency "activesupport", ">= 2.0"
24
24
 
25
25
  s.add_development_dependency "rake"
26
- s.add_development_dependency "rdoc", "~> 3.7"
27
26
  s.add_development_dependency "minitest", "~> 5.0"
28
27
  end
@@ -1,5 +1,5 @@
1
1
  module Bbq
2
2
  module Core
3
- VERSION = '0.3.0'
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bbq-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - DRUG - Dolnośląska Grupa Użytkowników Ruby
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capybara
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: rdoc
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '3.7'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '3.7'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: minitest
71
57
  requirement: !ruby/object:Gem::Requirement
@@ -88,10 +74,9 @@ extensions: []
88
74
  extra_rdoc_files: []
89
75
  files:
90
76
  - ".gitignore"
91
- - ".travis.yml"
92
77
  - CHANGELOG
93
78
  - Gemfile
94
- - MIT-LICENSE
79
+ - Makefile
95
80
  - README.md
96
81
  - Rakefile
97
82
  - bbq-core.gemspec
@@ -1,4 +0,0 @@
1
- rvm:
2
- - 1.9.3
3
- - 2.0.0
4
- - 2.1.0
@@ -1,20 +0,0 @@
1
- Copyright 2011 DRUG, Dolnośląska Grupa Użytkowników Ruby
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.