mariana 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b8e28cf05af46e8123472035dc4155f064f8d65d
4
+ data.tar.gz: 49e16886e59e9f6dc67a6854af40258f2d1a7e72
5
+ SHA512:
6
+ metadata.gz: 9deea9becb567c99c1b44bd5d63d47b50f9fb38d3cc926f9895988e7e1db593399f4455c7edc07becaa8bfc66ce112fc9f16c8fa0b6595368a2b55473d9f54d9
7
+ data.tar.gz: 8421cd49c9a8119c8c464afabc6459b43e0e71d494aba451836ffb07ac9cab6a58376e76a02ca8aebaeb79f87527089c9c1ba18446cff04bc951163e1b89a9db
data/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright © 2014 Joshua Kendall <me@joshuakendall.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # Mariana
2
+
3
+
4
+
5
+ [![Code Climate](https://codeclimate.com/github/jtkendall/mariana/badges/gpa.svg)](https://codeclimate.com/github/jtkendall/mariana) [![Gem Version](https://badge.fury.io/rb/mariana.svg)](https://badge.fury.io/rb/mariana) [![Dependency Status](https://gemnasium.com/jtkendall/mariana.svg)](https://gemnasium.com/jtkendall/mariana)
6
+
7
+ ## Installation
8
+
9
+ gem install mariana
10
+
11
+ or in your Gemfile
12
+
13
+ gem 'mariana'
14
+
15
+
16
+ ## Documentation
17
+
18
+ [rdoc.info/github/jtkendall/mariana](http://rdoc.info/github/jtkendall/mariana)
19
+
20
+ ## Usage
21
+
22
+
23
+
24
+
25
+ ## Contributing & Development
26
+
27
+ $ git clone https://github.com/jtkendall/mariana && cd mariana
28
+ $ bundle install
29
+
30
+ * Fork the project.
31
+ * Make your feature addition or bug fix. All specs should pass.
32
+ * Add specs for your changes. This is important so I don't break it in a future version unintentionally.
33
+ * Commit, do not mess with version, or history. If you want to have your own version, that is fine but bump version in a commit by itself in another branch so a maintainer ignores it when your pull request is merged.
34
+ * Send a pull request. Bonus points for topic branches.
35
+
36
+ ## License & Copyright
37
+
38
+ See LICENSE for details.
data/lib/mariana.rb ADDED
@@ -0,0 +1,4 @@
1
+ # Mariana -
2
+ module Mariana
3
+
4
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+ module Mariana
3
+ VERSION = '0.0.0'.freeze
4
+ end
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mariana
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Josh Kendall
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-01-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '10.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '10.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: yard
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.8'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.8'
41
+ - !ruby/object:Gem::Dependency
42
+ name: codeclimate-test-reporter
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.4'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.36'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.36'
69
+ description: ''
70
+ email: me@joshuakendall.com
71
+ executables: []
72
+ extensions: []
73
+ extra_rdoc_files: []
74
+ files:
75
+ - LICENSE
76
+ - README.md
77
+ - lib/mariana.rb
78
+ - lib/mariana/version.rb
79
+ homepage: http://github.com/jtkendall/mariana
80
+ licenses:
81
+ - MIT
82
+ metadata: {}
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 2.5.1
100
+ signing_key:
101
+ specification_version: 4
102
+ summary: ''
103
+ test_files: []
104
+ has_rdoc: