prost 0.1.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
+ SHA256:
3
+ metadata.gz: b98e31ebad41d15481f8925d85917881493c928e50d751cd481882919eb397f5
4
+ data.tar.gz: 7c62f4d5f9a53d3088d27dda40e6aee923a9e4a35ac739dc92743e718c31b6da
5
+ SHA512:
6
+ metadata.gz: a4693fb5ddbb85522b4610d8f9969f2bcacc947ccbe2ed2f3716b889d9fce72d2782f3f89954b6b58d8401a34053bc5512be90ae6b021825d0120c3150c83f76
7
+ data.tar.gz: 6e1a0cf8dcc6c2de1d7090dd96704cd73a9cd94dfffe7673ad462830096968b4ecc06d64636ad9290ddbecb4dbf22a5aa992fbff8b2451e8da5c477a879b2864
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Prost
2
+ Craft your emails in your database.
3
+
4
+ ## Usage
5
+ Coming soon.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem "prost"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install prost
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/setup"
2
+
3
+ require "bundler/gem_tasks"
@@ -0,0 +1,4 @@
1
+ module Prost
2
+ class Railtie < ::Rails::Railtie
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module Prost
2
+ VERSION = "0.1.0"
3
+ end
data/lib/prost.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "prost/version"
2
+ require "prost/railtie"
3
+
4
+ module Prost
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :prost do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: prost
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - josh
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-10-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 7.0.8
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 7.0.8
27
+ description: Craft your emails in your database.
28
+ email:
29
+ - git@josh.mn
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - README.md
35
+ - Rakefile
36
+ - lib/prost.rb
37
+ - lib/prost/railtie.rb
38
+ - lib/prost/version.rb
39
+ - lib/tasks/prost_tasks.rake
40
+ homepage: https://josh.mn/gems/prost
41
+ licenses:
42
+ - LGPL-3.0
43
+ metadata:
44
+ homepage_uri: https://josh.mn/gems/prost
45
+ source_code_uri: https://github.com/joshmn/prost
46
+ changelog_uri: https://github.com/joshmn/prost
47
+ post_install_message:
48
+ rdoc_options: []
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ requirements: []
62
+ rubygems_version: 3.4.6
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Craft your emails in your database.
66
+ test_files: []