pad_gem 1.1.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8154431c41f9bb6f1393c6e6581a4193b3c5e32b
4
- data.tar.gz: cc0f0753e9828c69f768ce9c7aeaa410402f5b19
3
+ metadata.gz: ae5fd562debe4188baa36603468b25d78471591d
4
+ data.tar.gz: af280dff0643daf4b576ac881447a55b5c5f15ed
5
5
  SHA512:
6
- metadata.gz: b0953703fdce18f1ac98986bbe006918fbad14f04f5b4fe5a029654db6cef0350cf0a2239d45a517dd912dab35f05710c62f3ea2f907d02a7559ff166298ff3c
7
- data.tar.gz: e631d90e32d9626ef9cbe904b32ec9460944b8a5f3025a7ec05c45d6f9f402160b57924d880d87c0da869dd096638686e9df2f63154e21e8db1f8817407bb18e
6
+ metadata.gz: aa89761e41e22eca2386c79835a05fa87e772fba09cc8c1a9868360c85938f5924ac8ae8e62e3a6937a2a399ebd1f6d3c347ecbfae413d6b7acb91adb1b5602b
7
+ data.tar.gz: ca0aa796633e44e38e15948d707f7ea39759f9a180feda3cb1472e792935b114d2ee3e12d85aff5bf4776bd50eb9feff10f27c47fce692092873700c61f5110f
@@ -0,0 +1,41 @@
1
+ .bundle/
2
+
3
+ # Ignore the default SQLite database.
4
+ /db/*.sqlite3
5
+ /db/*.sqlite3-journal
6
+
7
+ # Ignore all logfiles and tempfiles.
8
+ /log/*.log
9
+ /tmp
10
+ test/tmp
11
+ test/version_tmp
12
+ tmp
13
+ *.tmp
14
+
15
+ # Ignore other unneeded files.
16
+ doc/
17
+ *.swp
18
+ *~
19
+ .project
20
+ .DS_Store
21
+ .idea
22
+ *.gem
23
+ *.rbc
24
+ .yardoc
25
+ Gemfile.lock
26
+ InstalledFiles
27
+ _yardoc
28
+ coverage
29
+ doc/
30
+ lib/bundler/man
31
+ pkg/
32
+ rdoc
33
+ spec/reports
34
+ gemfiles/*.lock
35
+
36
+ test/dummy/db/*.sqlite3
37
+ test/dummy/db/*.sqlite3-journal
38
+ test/dummy/log/*.log
39
+ test/dummy/tmp/
40
+
41
+ test/results/*
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.description = "Gem description"
14
14
  spec.homepage = "PADGEM_HOMEPAGE"
15
15
  spec.license = "Apache-2.0"
16
- spec.files = Dir["{lib}/**/*", "LICENSE.txt", "Rakefile", "README.md"]
16
+ spec.files = Dir["{lib}/**/*", "{lib}/**/.*", "LICENSE.txt", "Rakefile", "README.md"]
17
17
  spec.executables << 'PADGEM_EXECUTABLE'
18
18
  spec.require_paths = ["lib"]
19
19
  end
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module PadGem
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pad_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nico Schuele
@@ -42,6 +42,7 @@ files:
42
42
  - README.md
43
43
  - Rakefile
44
44
  - bin/padgem
45
+ - lib/foundation/.gitignore
45
46
  - lib/foundation/Gemfile
46
47
  - lib/foundation/LICENSE.txt
47
48
  - lib/foundation/README.md
@@ -52,8 +53,10 @@ files:
52
53
  - lib/foundation/lib/foundation/version.rb
53
54
  - lib/foundation/test/Gemfile
54
55
  - lib/foundation/test/add_test.rb
56
+ - lib/foundation/test/fixtures/.keep
55
57
  - lib/foundation/test/helper.rb
56
58
  - lib/foundation/test/how_to_test.txt
59
+ - lib/foundation/test/results/.keep
57
60
  - lib/foundation/test/template/template.rb
58
61
  - lib/foundation/test/template/test.rb
59
62
  - lib/foundation/test/test_runner.rb