flare-up 0.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 +15 -0
- data/.gitignore +1 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +14 -0
- data/README.md +0 -0
- data/Rakefile +2 -0
- data/flareup.gemspec +17 -0
- data/lib/flare_up.rb +3 -0
- data/lib/flare_up/version.rb +3 -0
- metadata +52 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
NjZjOGExYWMyODg1Y2FjNzZkZGIwZDg5Zjc3YzE3ODgxY2NlOWQ5NA==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
NTIwM2FiNWI1NGVmOGVkNzgzMGJjMDcwYzg2MTY3ZTFjNWQ5ZWE5Ng==
|
|
7
|
+
SHA512:
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
NDI5YzQ0Y2MzYWU0MjU5MDgzNjFmNzFkMWE0Y2U3OTU0ZDkzZWFkZjk4OTAy
|
|
10
|
+
NzEwNzhhMWMzNDBhZjdjNmQzYTdmYzQ0Y2RjODk2ZGY5N2UyMjUzYjIyZjY4
|
|
11
|
+
ZThhYmVjYzJiNTgxOWMzYWUwMTRhYjQ0NzU4ODIzMThiMGNmZmM=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
Y2QyMDc0NTg0ZGFjOTE3MGVmYzg2ZmYzZTA3YTQzMzdmMWEyZmZiZDEwZjc2
|
|
14
|
+
MGM1NTU2NGU0ZTFmMmQ2OWVkNmNhODlkZTY4N2VkNjdkOWEwNGMwMmYwYThj
|
|
15
|
+
NjFkZTg5MjA5ZDViMDAwMjMxOTBiNjE5NTVjY2JhNTMyN2ZkZTA=
|
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg/
|
data/.ruby-gemset
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
flare_up
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.9.3-p545
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
data/README.md
ADDED
|
File without changes
|
data/Rakefile
ADDED
data/flareup.gemspec
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
$:.push File.expand_path('../lib', __FILE__)
|
|
2
|
+
require 'flare_up/version'
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |s|
|
|
5
|
+
s.name = 'flare-up'
|
|
6
|
+
s.version = FlareUp::VERSION
|
|
7
|
+
s.platform = Gem::Platform::RUBY
|
|
8
|
+
s.authors = ['Robert Slifka']
|
|
9
|
+
s.homepage = 'http://www.github.com/rslifka/flareup'
|
|
10
|
+
s.summary = %q{I will fill this in momentarily.}
|
|
11
|
+
s.description = %q{I will fill this in momentarily.}
|
|
12
|
+
|
|
13
|
+
s.files = `git ls-files`.split("\n")
|
|
14
|
+
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
|
|
15
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
16
|
+
s.require_paths = %w(lib)
|
|
17
|
+
end
|
data/lib/flare_up.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: flare-up
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: '0.1'
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Robert Slifka
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-08-08 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: I will fill this in momentarily.
|
|
14
|
+
email:
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- .gitignore
|
|
20
|
+
- .ruby-gemset
|
|
21
|
+
- .ruby-version
|
|
22
|
+
- Gemfile
|
|
23
|
+
- Gemfile.lock
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- flareup.gemspec
|
|
27
|
+
- lib/flare_up.rb
|
|
28
|
+
- lib/flare_up/version.rb
|
|
29
|
+
homepage: http://www.github.com/rslifka/flareup
|
|
30
|
+
licenses: []
|
|
31
|
+
metadata: {}
|
|
32
|
+
post_install_message:
|
|
33
|
+
rdoc_options: []
|
|
34
|
+
require_paths:
|
|
35
|
+
- lib
|
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ! '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
requirements: []
|
|
47
|
+
rubyforge_project:
|
|
48
|
+
rubygems_version: 2.2.2
|
|
49
|
+
signing_key:
|
|
50
|
+
specification_version: 4
|
|
51
|
+
summary: I will fill this in momentarily.
|
|
52
|
+
test_files: []
|