ebooks 0.0.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 +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/ebooks.gemspec +27 -0
- data/lib/ebooks.rb +21 -0
- data/lib/ebooks/generator.rb +29 -0
- data/lib/ebooks/twitter.rb +24 -0
- data/lib/ebooks/version.rb +3 -0
- metadata +124 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 89faedd51fce5d08320b71bcdc1c66596d03f738
|
4
|
+
data.tar.gz: 0fae632c95ecdc2e76cfc17f988f4f5074153b69
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ae09c854c570138b325224c1d55070c5b631e2055d38ddbf72d26b8e879c95f4964c5be1afed090606056e70f9b54ec6e14e40f6994950e6428f3c6cdb320b31
|
7
|
+
data.tar.gz: 31b8ff107d3dcc4e7b73b15a2db3f39e855b5c450bb1999f29a2da22548aa18b9e2e64a833fdd4afa8c0f66232c17295e39cdeb9f978f3c1d29db08e92a8830e
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Parker Moore
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Ebooks
|
2
|
+
|
3
|
+
Generate your own horse_ebooks by @busterbenson and compiled as a gem by @parkr
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'ebooks'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install ebooks
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/ebooks.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'ebooks/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "ebooks"
|
8
|
+
spec.version = Ebooks::VERSION
|
9
|
+
spec.authors = ["Parker Moore"]
|
10
|
+
spec.email = ["parkrmoore@gmail.com"]
|
11
|
+
spec.description = %q{Generate your own horse_ebooks for fun and for profit}
|
12
|
+
spec.summary = %q{horse_ebooks with and without twitter}
|
13
|
+
spec.homepage = "https://github.com/parkr/ebooks"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_runtime_dependency "thread"
|
22
|
+
spec.add_runtime_dependency "twitter"
|
23
|
+
spec.add_runtime_dependency "marky_markov"
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
26
|
+
spec.add_development_dependency "rake"
|
27
|
+
end
|
data/lib/ebooks.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require "ebooks/version"
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'thread'
|
5
|
+
require 'csv'
|
6
|
+
require 'twitter'
|
7
|
+
require 'marky_markov'
|
8
|
+
|
9
|
+
module Ebooks
|
10
|
+
autoload :Generator, 'ebooks/generator'
|
11
|
+
autoload :Twitter, 'ebooks/twitter'
|
12
|
+
|
13
|
+
def self.configuration(overrides = {})
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.generate(config = {})
|
18
|
+
config = self.configuration(config)
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Ebooks
|
2
|
+
module Generator
|
3
|
+
|
4
|
+
def self.generate_twitter_corpus(tweets_csv_path = 'tweets.csv', corpus_path = 'markov_dict.txt')
|
5
|
+
# Go to Twitter.com -> Settings -> Download Archive.
|
6
|
+
# This tweets.csv file is in the top directory. Put it in the same directory as this script.
|
7
|
+
csv_text = CSV.parse(File.read(tweets_csv_path))
|
8
|
+
|
9
|
+
# Create a new clean file of text that acts as the seed for your Markov chains
|
10
|
+
File.open(corpus_path, 'w') do |file|
|
11
|
+
csv_text.reverse.each do |row|
|
12
|
+
# Strip links and new lines
|
13
|
+
tweet_text = row[5].gsub(/(?:f|ht)tps?:\/[^\s]+/, '').gsub(/\n/,' ')
|
14
|
+
# Save the text
|
15
|
+
file.write("#{tweet_text}\n")
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.generate_sentence(corpus_path = 'markov_dict.txt')
|
21
|
+
# Run when you want to generate a new Markov tweet
|
22
|
+
markov = MarkyMarkov::Dictionary.new('dictionary') # Saves/opens dictionary.mmd
|
23
|
+
markov.parse_file(corpus_path)
|
24
|
+
tweet_text = markov.generate_n_sentences(2).split(/\#\</).first.chomp.chop
|
25
|
+
markov.save_dictionary!
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Ebooks
|
2
|
+
module Twitter
|
3
|
+
|
4
|
+
def initialize(credentials = {})
|
5
|
+
@consumer_key = credentials.fetch(:consumer_key)
|
6
|
+
@consumer_secret = credentials.fetch(:consumer_secret)
|
7
|
+
@access_token = credentials.fetch(:oauth_token)
|
8
|
+
@access_token_secret = credentials.fetch(:oauth_token_secret)
|
9
|
+
|
10
|
+
Twitter.configure do |config|
|
11
|
+
config.consumer_key = @consumer_key
|
12
|
+
config.consumer_secret = @consumer_secret
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def tweet(tweet_text)
|
17
|
+
twitter_client = Twitter::Client.new(:oauth_token => @access_token,
|
18
|
+
:oauth_token_secret => @access_token_secret)
|
19
|
+
p "#{Time.now}: #{tweet_text}"
|
20
|
+
twitter_client.update(tweet_text)
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ebooks
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Parker Moore
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-09-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: thread
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: twitter
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: marky_markov
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.3'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.3'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Generate your own horse_ebooks for fun and for profit
|
84
|
+
email:
|
85
|
+
- parkrmoore@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- .gitignore
|
91
|
+
- Gemfile
|
92
|
+
- LICENSE.txt
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- ebooks.gemspec
|
96
|
+
- lib/ebooks.rb
|
97
|
+
- lib/ebooks/generator.rb
|
98
|
+
- lib/ebooks/twitter.rb
|
99
|
+
- lib/ebooks/version.rb
|
100
|
+
homepage: https://github.com/parkr/ebooks
|
101
|
+
licenses:
|
102
|
+
- MIT
|
103
|
+
metadata: {}
|
104
|
+
post_install_message:
|
105
|
+
rdoc_options: []
|
106
|
+
require_paths:
|
107
|
+
- lib
|
108
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - '>='
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
requirements: []
|
119
|
+
rubyforge_project:
|
120
|
+
rubygems_version: 2.0.3
|
121
|
+
signing_key:
|
122
|
+
specification_version: 4
|
123
|
+
summary: horse_ebooks with and without twitter
|
124
|
+
test_files: []
|