failuregem 0.0.8.2.4 → 0.0.8.2.6
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 +4 -4
- data/.DS_Store +0 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/failuregem-0.0.7.3.gem +0 -0
- data/failuregem-0.0.7.4.gem +0 -0
- data/failuregem-0.0.7.5.gem +0 -0
- data/failuregem-0.0.7.6.gem +0 -0
- data/failuregem-0.0.7.7.gem +0 -0
- data/failuregem-0.0.7.8.gem +0 -0
- data/failuregem-0.0.7.9.gem +0 -0
- data/failuregem-0.0.8.1.gem +0 -0
- data/failuregem-0.0.8.2.1.gem +0 -0
- data/failuregem-0.0.8.2.2.gem +0 -0
- data/failuregem-0.0.8.2.3.gem +0 -0
- data/failuregem-0.0.8.2.4.gem +0 -0
- data/failuregem-0.0.8.2.gem +0 -0
- data/failuregem-0.0.8.gem +0 -0
- data/failuregem.gemspec +2 -5
- data/lib/failuregem/failuregem.scss +3 -0
- data/lib/failuregem/version.rb +3 -0
- data/pkg/failuregem-0.0.8.2.5.gem +0 -0
- data/vendor/assets/stylesheets/failuregem.scss +3 -0
- metadata +29 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 973462657a2d142363ae168364bb548925d7ffb12409cdcab4d992d54d5291ac
|
|
4
|
+
data.tar.gz: 40f1f9971e04c3b39a2d7bce186752e4f8f3d2fe5f91c0c023bb15f53c8536d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d1a8c8e9aeecb59d8d0fc03374fb6dd51f3fb6d340765a3d9b43f4b1212ba36e15676654572fa2a50c91b379800b47c10cf8008a8a7c92bacfa119a417f45c1b
|
|
7
|
+
data.tar.gz: 27aaa55ea0bb42f1c7e142494d908a2339192a1487bc4701a9da61fe279d64f3f38736ed575982489ab1335e272fc3c44791cacd03c61ac5db1731d911efbc4e
|
data/.DS_Store
ADDED
|
Binary file
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 Administrator
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "failuregem"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/failuregem.gemspec
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
lib = File.expand_path("../lib", __FILE__)
|
|
2
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
-
|
|
4
1
|
Gem::Specification.new do |s|
|
|
5
2
|
s.name = 'failuregem'
|
|
6
|
-
s.version = '0.0.8.2.
|
|
3
|
+
s.version = '0.0.8.2.6'
|
|
7
4
|
s.date = '2018-10-25'
|
|
8
5
|
s.summary = "failuregem!"
|
|
9
6
|
s.description = "A simple Gem that includes everything you need to start with Rails programming!"
|
|
@@ -13,7 +10,7 @@ Gem::Specification.new do |s|
|
|
|
13
10
|
s.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
14
11
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
15
12
|
end
|
|
16
|
-
s.bindir = "
|
|
13
|
+
s.bindir = "bin"
|
|
17
14
|
s.executables = s.files.grep(%r{^bin/}) { |f| f[3..-1] }
|
|
18
15
|
s.require_paths = ["lib", "vendor"]
|
|
19
16
|
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: failuregem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.8.2.
|
|
4
|
+
version: 0.0.8.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Leon Vogt
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2018-10-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -140,15 +140,41 @@ dependencies:
|
|
|
140
140
|
version: '10.0'
|
|
141
141
|
description: A simple Gem that includes everything you need to start with Rails programming!
|
|
142
142
|
email: leon.vogt@bl.ch
|
|
143
|
-
executables:
|
|
143
|
+
executables:
|
|
144
|
+
- "/console"
|
|
145
|
+
- "/setup"
|
|
144
146
|
extensions: []
|
|
145
147
|
extra_rdoc_files: []
|
|
146
148
|
files:
|
|
149
|
+
- ".DS_Store"
|
|
150
|
+
- Gemfile
|
|
151
|
+
- LICENSE.txt
|
|
147
152
|
- README.md
|
|
153
|
+
- Rakefile
|
|
154
|
+
- bin/console
|
|
155
|
+
- bin/setup
|
|
148
156
|
- failuregem-0.0.6.gem
|
|
157
|
+
- failuregem-0.0.7.3.gem
|
|
158
|
+
- failuregem-0.0.7.4.gem
|
|
159
|
+
- failuregem-0.0.7.5.gem
|
|
160
|
+
- failuregem-0.0.7.6.gem
|
|
161
|
+
- failuregem-0.0.7.7.gem
|
|
162
|
+
- failuregem-0.0.7.8.gem
|
|
163
|
+
- failuregem-0.0.7.9.gem
|
|
164
|
+
- failuregem-0.0.8.1.gem
|
|
165
|
+
- failuregem-0.0.8.2.1.gem
|
|
166
|
+
- failuregem-0.0.8.2.2.gem
|
|
167
|
+
- failuregem-0.0.8.2.3.gem
|
|
168
|
+
- failuregem-0.0.8.2.4.gem
|
|
169
|
+
- failuregem-0.0.8.2.gem
|
|
170
|
+
- failuregem-0.0.8.gem
|
|
149
171
|
- failuregem.gemspec
|
|
150
172
|
- git.rb
|
|
151
173
|
- lib/failuregem.rb
|
|
174
|
+
- lib/failuregem/failuregem.scss
|
|
175
|
+
- lib/failuregem/version.rb
|
|
176
|
+
- pkg/failuregem-0.0.8.2.5.gem
|
|
177
|
+
- vendor/assets/stylesheets/failuregem.scss
|
|
152
178
|
homepage: http://rubygems.org/gems/failuregem
|
|
153
179
|
licenses:
|
|
154
180
|
- MIT
|