lead_management 0.1.0 → 0.1.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 +4 -4
- data/.idea/lead_management.iml +0 -10
- data/README.md +6 -12
- data/lib/generators/lead_management/USAGE +3 -0
- data/lib/generators/lead_management/install_generator.rb +17 -0
- data/lib/generators/templates/lead_management_config.rb +5 -0
- data/lib/lead_management/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71e2ea21b7954f22d91afb7d1d78357c0e268d51a5745a3f858e3b99cbad2a93
|
|
4
|
+
data.tar.gz: 460f21ed64dbd953c377da675635e1fe17a7be881d2c516a8106f8783562611f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2d808a5689e86d3939419904c8860a8ae0cc279d656d82874e7e89674e0c61eb356c33bc86f9cf7cf1eb7e3617003b07b42a3bb214c02929cfefeadc5509974
|
|
7
|
+
data.tar.gz: e798f90a697cbd0a4e62b5f1740c98e7bb22b221f5ec833a154384de944a321270f1493a78b2f2e723c6593cf7b50f163bb023cd08a359d96eedf59500ad021a
|
data/.idea/lead_management.iml
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<module type="RUBY_MODULE" version="4">
|
|
3
|
-
<component name="ModuleRunConfigurationManager">
|
|
4
|
-
<shared />
|
|
5
|
-
</component>
|
|
6
3
|
<component name="NewModuleRootManager">
|
|
7
4
|
<content url="file://$MODULE_DIR$">
|
|
8
5
|
<sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
|
|
@@ -11,12 +8,5 @@
|
|
|
11
8
|
</content>
|
|
12
9
|
<orderEntry type="inheritedJdk" />
|
|
13
10
|
<orderEntry type="sourceFolder" forTests="false" />
|
|
14
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.4.13, ruby-2.7.0-p0) [gem]" level="application" />
|
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v13.0.1, ruby-2.7.0-p0) [gem]" level="application" />
|
|
16
|
-
</component>
|
|
17
|
-
<component name="RakeTasksCache">
|
|
18
|
-
<option name="myRootTask">
|
|
19
|
-
<RakeTaskImpl id="rake" />
|
|
20
|
-
</option>
|
|
21
11
|
</component>
|
|
22
12
|
</module>
|
data/README.md
CHANGED
|
@@ -1,34 +1,28 @@
|
|
|
1
1
|
# LeadManagement
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/lead_management`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
3
|
+
Welcome to LeadManagement, In this directory, you'll find the files you need to be able to package up your Ruby library into a gem.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
9
|
-
TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
|
|
10
|
-
|
|
11
7
|
Install the gem and add to the application's Gemfile by executing:
|
|
12
8
|
|
|
13
|
-
$ bundle add
|
|
9
|
+
$ bundle add lead_management
|
|
14
10
|
|
|
15
11
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
|
16
12
|
|
|
17
|
-
$ gem install
|
|
13
|
+
$ gem install lead_management
|
|
18
14
|
|
|
19
15
|
## Usage
|
|
20
16
|
|
|
21
|
-
|
|
17
|
+
Automate the lead management system.
|
|
22
18
|
|
|
23
19
|
## Development
|
|
24
20
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
21
|
+
We are working on this and soon we will introduce some features and if you are willing to contribute door is open.
|
|
28
22
|
|
|
29
23
|
## Contributing
|
|
30
24
|
|
|
31
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
25
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/santu-essence/lead_management. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/lead_management/blob/master/CODE_OF_CONDUCT.md).
|
|
32
26
|
|
|
33
27
|
## License
|
|
34
28
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
module LeadManagement
|
|
2
|
+
module Generators
|
|
3
|
+
class InstallGenerator < Rails::Generators::Base
|
|
4
|
+
source_root File.expand_path('../templates', __dir__)
|
|
5
|
+
|
|
6
|
+
desc 'This will create initializer files for lead management'
|
|
7
|
+
def create_initializer
|
|
8
|
+
create_file "config/initializer/lead_management.rb" <<~ RUBY
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
desc 'This will create config file for lead management'
|
|
12
|
+
def create_config
|
|
13
|
+
templates 'lead_management_config.rb', "#{Rails.root}/config/lead_management_config.rb"
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lead_management
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- santu essence
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-08-
|
|
11
|
+
date: 2023-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Lead management that will help us to manage our team.
|
|
14
14
|
email:
|
|
@@ -29,6 +29,9 @@ files:
|
|
|
29
29
|
- README.md
|
|
30
30
|
- Rakefile
|
|
31
31
|
- lead_management.gemspec
|
|
32
|
+
- lib/generators/lead_management/USAGE
|
|
33
|
+
- lib/generators/lead_management/install_generator.rb
|
|
34
|
+
- lib/generators/templates/lead_management_config.rb
|
|
32
35
|
- lib/lead_management.rb
|
|
33
36
|
- lib/lead_management/version.rb
|
|
34
37
|
- sig/lead_management.rbs
|