upgrow 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +23 -0
- data/Rakefile +17 -0
- data/lib/upgrow.rb +6 -0
- data/test/documentation_test.rb +10 -0
- data/test/test_helper.rb +7 -0
- metadata +51 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3b332e16457e8d2d1e8d1392f217f9f8755b998cd5888dedba58a7ebce9f213b
|
4
|
+
data.tar.gz: fb61e9ee12281e326a9468847a9b3eb6753c5df7e39acf8978d00f4a783f6838
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8fe7ac0a75bc514a24ed3656f68b926b40007dfd5aa596c7fa7b58fcd64fb5081b5f17435ee508cb174b9c1da98526bb189ece5d88acec56b2b28d4b710b5abe
|
7
|
+
data.tar.gz: 2e12cb7c99f5ce534e9f4c55c338b31d0772838765b69832669503f3d81a373340ebb5bfa916028d8ccdb58340ec79015afb520cb66fea5e945eed97617aecf0
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# Upgrow
|
2
|
+
|
3
|
+
TODO: Delete this and the text above, and describe your gem
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'upgrow'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle install
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install upgrow
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'bundler/gem_tasks'
|
4
|
+
require 'rake/testtask'
|
5
|
+
|
6
|
+
Rake::TestTask.new do |t|
|
7
|
+
t.libs << 'test'
|
8
|
+
t.warning = true
|
9
|
+
t.verbose = true
|
10
|
+
t.test_files = FileList['test/**/*.rb']
|
11
|
+
end
|
12
|
+
|
13
|
+
require 'rubocop/rake_task'
|
14
|
+
|
15
|
+
RuboCop::RakeTask.new
|
16
|
+
|
17
|
+
task default: [:test, :rubocop]
|
data/lib/upgrow.rb
ADDED
data/test/test_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: upgrow
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Shopify Engineering
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-02-18 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email: gems@shopify.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- README.md
|
20
|
+
- Rakefile
|
21
|
+
- lib/upgrow.rb
|
22
|
+
- test/documentation_test.rb
|
23
|
+
- test/test_helper.rb
|
24
|
+
homepage: https://github.com/Shopify/upgrow
|
25
|
+
licenses:
|
26
|
+
- MIT
|
27
|
+
metadata:
|
28
|
+
source_code_uri: https://github.com/Shopify/upgrow/tree/v0.0.1
|
29
|
+
allowed_push_host: https://rubygems.org
|
30
|
+
post_install_message:
|
31
|
+
rdoc_options: []
|
32
|
+
require_paths:
|
33
|
+
- lib
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ">="
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
requirements: []
|
45
|
+
rubygems_version: 3.0.3
|
46
|
+
signing_key:
|
47
|
+
specification_version: 4
|
48
|
+
summary: Patterns for Rails Architecture
|
49
|
+
test_files:
|
50
|
+
- test/test_helper.rb
|
51
|
+
- test/documentation_test.rb
|