customer_miner 0.0.1

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: 6dccef15d21a4b982d9941e9758f178195f17836
4
+ data.tar.gz: 5ddfe0047ead123ad08454d20152c431a88c9f75
5
+ SHA512:
6
+ metadata.gz: 6d2a7dcc775de22b73e114e3f4cd1cd5e321d4907e06c3f670c3e45fedf7e839b90eb14f05326062f1ca0e194788de8caff59cca673dc662661cfd93a73f13e0
7
+ data.tar.gz: b8909a924ae0f09e724b44a8552512825fb63223068b7b21f38126b249e19e9f5bc932afb2b9e4724f95fa47239d4a82c170d93efa96e96d90a4da55f34f80d4
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ *.gem
2
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,19 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ customer_miner.gemspec (0.0.1)
5
+ thor (~> 0.19.4)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ thor (0.19.4)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ customer_miner.gemspec!
17
+
18
+ BUNDLED WITH
19
+ 1.13.7
data/bin/cm ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ lib_dir = File.expand_path(File.join(File.dirname(__FILE__),'..','lib'))
4
+ $LOAD_PATH << lib_dir unless $LOAD_PATH.include?(lib_dir)
5
+
6
+ require 'customer_miner/cli'
7
+
8
+ CustomerMiner::CLI.start(ARGV)
@@ -0,0 +1,20 @@
1
+ lib_dir = File.join(File.dirname(__FILE__),'lib')
2
+ $LOAD_PATH << lib_dir unless $LOAD_PATH.include?(lib_dir)
3
+ require 'customer_miner/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'customer_miner'
7
+ s.version = CustomerMiner::VERSION
8
+ s.date = '2017-05-25'
9
+ s.summary = "Fetch customer data using Clearbit API"
10
+ s.description = "Fetch customer data using Clearbit API"
11
+ s.authors = ["ocowchun"]
12
+ s.email = 'ocowchun@gmail.com'
13
+ s.executables = ["cm"]
14
+ s.files = `git ls-files`.split($/)
15
+ s.homepage =
16
+ 'https://github.com/ocowchun/customer_miner'
17
+ s.license = 'MIT'
18
+
19
+ s.add_dependency('thor',["~> 0.19.4"])
20
+ end
@@ -0,0 +1,14 @@
1
+ require 'thor'
2
+ require 'customer_miner/version'
3
+
4
+ module CustomerMiner
5
+ class CLI< Thor
6
+ map '--version' => :version
7
+
8
+ desc 'version', 'Prints the cm version'
9
+ def version
10
+ puts "#{File.basename($0)} #{VERSION}"
11
+ end
12
+
13
+ end
14
+ end
@@ -0,0 +1,3 @@
1
+ module CustomerMiner
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: customer_miner
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - ocowchun
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-05-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.19.4
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.19.4
27
+ description: Fetch customer data using Clearbit API
28
+ email: ocowchun@gmail.com
29
+ executables:
30
+ - cm
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".gitignore"
35
+ - Gemfile
36
+ - Gemfile.lock
37
+ - bin/cm
38
+ - customer_miner.gemspec
39
+ - lib/customer_miner/cli.rb
40
+ - lib/customer_miner/version.rb
41
+ homepage: https://github.com/ocowchun/customer_miner
42
+ licenses:
43
+ - MIT
44
+ metadata: {}
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 2.5.1
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: Fetch customer data using Clearbit API
65
+ test_files: []