much-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 27f3cbd1c25d6f0cf73e2c03fa74b46eafde3b21de611f2d3780dc0931673bef
4
+ data.tar.gz: c912adf462f52b7ad317ff8e5e490cc8af11b97e40bc5ee62409143506590c15
5
+ SHA512:
6
+ metadata.gz: ce101e8082e13fafc1ae6333d2b3e741541a6de012c2d476c3befcbd589af8103f5d0980c34f0663f08c8796f2a9340c0292db987b6681a3880c04eb34ef4a4e
7
+ data.tar.gz: '08807f38e83e8983ab6e5bd14bda024e39ed59d226093b669ad3cc379eeae0756c2725b4d8346978f2dd822537ccbd52f730dea86c35581b97eb3e79d997e6b4'
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ ruby "~> 2.5"
4
+
5
+ gemspec
6
+
7
+ gem "pry", "~> 0.12.2"
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2020-Present Kelly Redding and Collin Redding
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # MuchRails
2
+
3
+ Rails utilities.
4
+
5
+ ## Usage
6
+
7
+ TODO: Write code samples and usage instructions here
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ gem "much-rails"
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install much-rails
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am "Added some feature"`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1,4 @@
1
+ require "much-rails/version"
2
+
3
+ module MuchRails
4
+ end
@@ -0,0 +1,3 @@
1
+ module MuchRails
2
+ VERSION = "0.0.1"
3
+ end
File without changes
@@ -0,0 +1,26 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "much-rails/version"
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "much-rails"
8
+ gem.version = MuchRails::VERSION
9
+ gem.authors = ["Kelly Redding", "Collin Redding"]
10
+ gem.email = ["kelly@kellyredding.com", "collin.redding@me.com"]
11
+ gem.summary = "Rails utilities."
12
+ gem.description = "Rails utilities."
13
+ gem.homepage = "https://github.com/redding/much-rails"
14
+ gem.license = "MIT"
15
+
16
+ gem.files = `git ls-files | grep "^[^.]"`.split($/)
17
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.require_paths = ["lib"]
20
+
21
+ gem.required_ruby_version = "~> 2.5"
22
+
23
+ gem.add_development_dependency("assert", ["~> 2.18.4"])
24
+
25
+ # TODO: gem.add_dependency("gem-name", ["~> 0.0.0"])
26
+ end
@@ -0,0 +1,12 @@
1
+ # this file is automatically required when you run `assert`
2
+ # put any test helpers here
3
+
4
+ # add the root dir to the load path
5
+ $LOAD_PATH.unshift(File.expand_path("../..", __FILE__))
6
+
7
+ # require pry for debugging (`binding.pry`)
8
+ require "pry"
9
+
10
+ require "test/support/factory"
11
+
12
+ # TODO: put test helpers here...
@@ -0,0 +1,5 @@
1
+ require "assert/factory"
2
+
3
+ module Factory
4
+ extend Assert::Factory
5
+ end
File without changes
File without changes
@@ -0,0 +1,14 @@
1
+ require "assert"
2
+
3
+ module MuchRails
4
+ class UnitTests < Assert::Context
5
+ desc "MuchRails"
6
+ subject { unit_class }
7
+
8
+ let(:unit_class) { Assert }
9
+
10
+ should "be" do
11
+ assert_that(unit_class).is_not_nil
12
+ end
13
+ end
14
+ end
File without changes
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: much-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Kelly Redding
8
+ - Collin Redding
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2020-12-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: assert
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: 2.18.4
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: 2.18.4
28
+ description: Rails utilities.
29
+ email:
30
+ - kelly@kellyredding.com
31
+ - collin.redding@me.com
32
+ executables: []
33
+ extensions: []
34
+ extra_rdoc_files: []
35
+ files:
36
+ - Gemfile
37
+ - LICENSE
38
+ - README.md
39
+ - lib/much-rails.rb
40
+ - lib/much-rails/version.rb
41
+ - log/.keep
42
+ - much-rails.gemspec
43
+ - test/helper.rb
44
+ - test/support/factory.rb
45
+ - test/system/.keep
46
+ - test/unit/.keep
47
+ - test/unit/much-rails_tests.rb
48
+ - tmp/.keep
49
+ homepage: https://github.com/redding/much-rails
50
+ licenses:
51
+ - MIT
52
+ metadata: {}
53
+ post_install_message:
54
+ rdoc_options: []
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.5'
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ requirements: []
68
+ rubygems_version: 3.1.2
69
+ signing_key:
70
+ specification_version: 4
71
+ summary: Rails utilities.
72
+ test_files:
73
+ - test/helper.rb
74
+ - test/support/factory.rb
75
+ - test/system/.keep
76
+ - test/unit/.keep
77
+ - test/unit/much-rails_tests.rb