seriousify 11

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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +0 -0
  3. data/README.md +28 -0
  4. data/lib/seriousify.rb +40 -0
  5. metadata +46 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: df2f82d8cbc93be5398da370bcd9ade41fbcd4b7
4
+ data.tar.gz: 41c71546554ed8af15eab37c847fdb550f862674
5
+ SHA512:
6
+ metadata.gz: 7232d420f1481cc4634eb62c78afadce9c2c1cbd926346f5bd51e9955240e7487156859651132917ad9a2672ec1494fa571a7f1b7284c3b5632d75672cda62f0
7
+ data.tar.gz: 43aca61d0cbe8334439aa8efe85f2e0cdf1f035c4d6c5700f930094367035d4160a1f099bfcda130f49f0794be094b49d532e247d78fa25dbda119ad1d4b81c5
data/LICENSE ADDED
File without changes
@@ -0,0 +1,28 @@
1
+ seriousify
2
+ ==========
3
+
4
+ Serious business for your synergistic customer-centric applications
5
+
6
+ - scale interactive e-tailers
7
+
8
+ - aggregate enterprise technologies
9
+
10
+ - integrate efficient infrastructures
11
+
12
+ - orchestrate intuitive technologies
13
+
14
+ usage:
15
+
16
+ <pre><code>
17
+ class Business
18
+ include Seriousify
19
+
20
+ def revenue
21
+ sleep 1000
22
+ Rand(1000)
23
+ end
24
+ end
25
+
26
+ Business.new.revenue => "redefine global supply-chains"
27
+ Business.new.revenue_seriously => 47
28
+ </code></pre>
@@ -0,0 +1,40 @@
1
+ module Seriousify
2
+ def self.included(base)
3
+ base.instance_eval do
4
+ instance_methods(false).each do |method|
5
+ alias_method "#{method}_seriously", method
6
+ define_method(method) { generate_bs }
7
+ end
8
+ end
9
+ end
10
+
11
+ def generate_bs
12
+
13
+ array1 = ["implement", "utilize", "integrate", "streamline", "optimize", "evolve", "transform", "embrace",
14
+ "enable", "orchestrate", "leverage", "reinvent", "aggregate", "architect", "enhance", "incentivize", "morph", "empower",
15
+ "envisioneer", "monetize", "harness", "facilitate", "seize", "disintermediate", "synergize", "strategize", "deploy",
16
+ "brand", "grow", "target", "syndicate", "synthesize", "deliver", "mesh", "incubate", "engage", "maximize", "benchmark",
17
+ "expedite", "reintermediate", "whiteboard", "visualize", "repurpose", "innovate", "scale", "unleash", "drive", "extend",
18
+ "engineer", "revolutionize", "generate", "exploit", "transition", "e-enable", "iterate", "cultivate", "matrix",
19
+ "productize", "redefine",
20
+ "recontextualize"]
21
+
22
+ array2 = ["clicks-and-mortar", "value-added", "vertical", "proactive", "robust", "revolutionary", "scalable",
23
+ "leading-edge", "innovative", "intuitive", "strategic", "e-business", "mission-critical", "sticky", "one-to-one",
24
+ "24/7", "end-to-end", "global", "B2B", "B2C", "granular", "frictionless", "virtual", "viral", "dynamic", "24/365",
25
+ "best-of-breed", "killer", "magnetic", "bleeding-edge", "web-enabled", "interactive", "dot-com", "sexy", "back-end",
26
+ "real-time", "efficient", "front-end", "distributed", "seamless", "extensible", "turn-key", "world-class",
27
+ "open-source", "cross-platform", "cross-media", "synergistic", "bricks-and-clicks", "out-of-the-box", "enterprise",
28
+ "integrated", "impactful", "wireless", "transparent", "next-generation", "cutting-edge", "user-centric", "visionary",
29
+ "customized", "ubiquitous", "plug-and-play", "collaborative", "compelling", "holistic", "rich"]
30
+
31
+ array3 = ["synergies", "web-readiness", "paradigms", "markets", "partnerships", "infrastructures", "platforms",
32
+ "initiatives", "channels", "eyeballs", "communities", "ROI", "solutions", "e-tailers", "e-services", "action-items",
33
+ "portals", "niches", "technologies", "content", "vortals", "supply-chains", "convergence", "relationships",
34
+ "architectures", "interfaces", "e-markets", "e-commerce", "systems", "bandwidth", "infomediaries", "models",
35
+ "mindshare", "deliverables", "users", "schemas", "networks", "applications", "metrics", "e-business", "functionalities",
36
+ "experiences", "web services", "methodologies"]
37
+
38
+ "#{array1[Random.rand(array1.size-1)]} #{array2[Random.rand(array2.size-1)]} #{array3[Random.rand(array3.size-1)]}"
39
+ end
40
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: seriousify
3
+ version: !ruby/object:Gem::Version
4
+ version: '11'
5
+ platform: ruby
6
+ authors:
7
+ - Brian Johnson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-20 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Scale interactive e-tailers, aggregate enterprise technologies, integrate
14
+ efficient infrastructures, orchestrate intuitive technologies
15
+ email:
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - LICENSE
22
+ - lib/seriousify.rb
23
+ homepage: https://github.com/bridiver/seriousify
24
+ licenses: []
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - '>='
33
+ - !ruby/object:Gem::Version
34
+ version: 1.9.3
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.1.5
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Serious business for your synergistic customer-centric applications
46
+ test_files: []