orlando_tech_meetups 0.1.5
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 +9 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/NOTES.md +28 -0
- data/README.md +41 -0
- data/Rakefile +1 -0
- data/bin/console +14 -0
- data/bin/orlando_tech_meetups +8 -0
- data/bin/setup +7 -0
- data/lib/orlando_tech_meetups/cli.rb +43 -0
- data/lib/orlando_tech_meetups/meetups.rb +220 -0
- data/lib/orlando_tech_meetups/version.rb +3 -0
- data/lib/orlando_tech_meetups.rb +6 -0
- data/orlando_tech_meetups.gemspec +31 -0
- metadata +103 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e4aa5850f514a16196320799368205c0a3185ec2
|
4
|
+
data.tar.gz: bee5acfd8ca5ede29562157adf3e03bf8084e8d5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 11297f9592044bb97a37b2341e5d2f9695c4a2da32121e692db5c09e1315859a2321a7ee4b5cc5d78471bd899b5c2684164c9cc863264ec16306d54471f52044
|
7
|
+
data.tar.gz: 6090a826fd4e160776152559ebf74d8a5157c3cb5cb41c821d1bc39ef9a999fcfd1fa0c390846498eef188a20df90f16a3c30b2a900ac8d8748ab9bb87acaabe
|
data/.gitignore
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 joshnevius
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/NOTES.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
Orlando Tech Meetups
|
2
|
+
--------------------
|
3
|
+
1 - Greet user and ask for input
|
4
|
+
a - "Hello and Welcome to the Orlando Tech Scene!"
|
5
|
+
b - "Enter the number of the meetup group you're interested in learning about."
|
6
|
+
1. Orlando Tech
|
7
|
+
2. Orlando Developers Meetup
|
8
|
+
3. Code For Orlando
|
9
|
+
4. The Iron Yard - Orlando
|
10
|
+
5. Front End Orlando
|
11
|
+
6. Downtown UX Meetup
|
12
|
+
7. The Orlando Python User Group
|
13
|
+
8. Orlando MongoDB Group
|
14
|
+
9. Orlando Ruby Users Group
|
15
|
+
10. Orlando PHP Users Group
|
16
|
+
11. Central Florida Android Developers Group
|
17
|
+
12. OrlandoJS
|
18
|
+
13. Orlando Java User Group
|
19
|
+
14. Orlando Ruby Dojo
|
20
|
+
15. Central Florida Raspberry Pi Users Group
|
21
|
+
16. Orlando iOS Developer Group
|
22
|
+
17. Internet of Things (IoT) Orlando
|
23
|
+
2 - Each number will list what the meet up is about and the upcoming meetup if any, otherwise it will say:
|
24
|
+
a - "Sorry, there's no meetup planned yet!"
|
25
|
+
3 - Link will be provided to copy and paste to go to that meetup page and rsvp.
|
26
|
+
ba - "Copy and paste this link into your browser and go RSVP."
|
27
|
+
c - If n, reload 1 - a & b
|
28
|
+
4 - When ending gem, puts "Hope to see you soon!" - gem ends.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Orlando Tech Meetups
|
2
|
+
|
3
|
+
This Ruby Gem provides a CLI to learn about the different tech meetup groups in the central FL/Orlando area.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'orlando_tech_meetups'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install orlando_tech_meetups
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
Type the below and follow the on screen prompts.
|
24
|
+
|
25
|
+
$ orlando_tech_meetups
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/orlando_tech_meetups. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "orlando_tech_meetups"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
class OrlandoTechMeetups::CLI
|
2
|
+
def call
|
3
|
+
list_meetups
|
4
|
+
menu
|
5
|
+
end
|
6
|
+
|
7
|
+
def menu
|
8
|
+
input = nil
|
9
|
+
while input != "exit"
|
10
|
+
input = gets.strip.downcase
|
11
|
+
if input.to_i > 0
|
12
|
+
the_group = @meetups[input.to_i-1]
|
13
|
+
puts "#{the_group.name}"
|
14
|
+
puts "#{the_group.about}"
|
15
|
+
puts "The next meetup is: #{the_group.next_meetup}"
|
16
|
+
if the_group.next_meetup < 0.to_s
|
17
|
+
puts "Sorry, there's no meetup planned yet!"
|
18
|
+
end
|
19
|
+
puts "\n"
|
20
|
+
puts "#{the_group.url}"
|
21
|
+
puts "Copy and paste the link above into your browser to check it out and learn more!"
|
22
|
+
puts "To go back to the menu, enter 'menu'. To exit, type 'exit'."
|
23
|
+
elsif input == "menu"
|
24
|
+
list_meetups
|
25
|
+
else
|
26
|
+
puts "Hope to see you soon!"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def list_meetups
|
32
|
+
puts "Hello and Welcome to the Orlando Tech Scene!"
|
33
|
+
puts "Enter the number of the meetup group you're interested in learning about."
|
34
|
+
meetup
|
35
|
+
end
|
36
|
+
|
37
|
+
def meetup
|
38
|
+
@meetups = OrlandoTechMeetups::Meetups.all
|
39
|
+
@meetups.each.with_index(1) do |meetups, i|
|
40
|
+
puts "#{i}. #{meetups.name}"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,220 @@
|
|
1
|
+
class OrlandoTechMeetups::Meetups
|
2
|
+
attr_accessor :name, :about, :next_meetup, :url
|
3
|
+
|
4
|
+
def self.all
|
5
|
+
self.meetup_scraper
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.meetup_scraper
|
9
|
+
meetups = []
|
10
|
+
meetups << self.orlando_tech
|
11
|
+
meetups << self.orlando_developers_meetup
|
12
|
+
meetups << self.code_for_orlando
|
13
|
+
meetups << self.iron_yard
|
14
|
+
meetups << self.front_end_orlando
|
15
|
+
meetups << self.downtown_ux
|
16
|
+
meetups << self.orlando_python_group
|
17
|
+
meetups << self.orlando_mongodb_group
|
18
|
+
meetups << self.orlando_ruby_group
|
19
|
+
meetups << self.orlando_php_group
|
20
|
+
meetups << self.central_florida_android_group
|
21
|
+
meetups << self.orlandojs
|
22
|
+
meetups << self.orlando_coding_dojo
|
23
|
+
meetups << self.raspberry_pi_group
|
24
|
+
meetups << self.orlando_ios_dev_group
|
25
|
+
meetups << self.iot_orlando
|
26
|
+
meetups
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.orlando_tech
|
30
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Orlando-Tech/'))
|
31
|
+
meetup = self.new
|
32
|
+
meetup.name = doc.search("h1 span").text
|
33
|
+
meetup.about = <<-DOC
|
34
|
+
Orlando Tech is a community-built organization that connects, promotes and fosters the growth of technology companies in Orlando. We host the monthly Orlando Tech Meetup, a platform for technologists, entrepreneurs, and companies to share their products. Since our founding in 2011, OTM has grown to over 2100 members and monthly attendance exceeding 200+. Though we like to highlight homegrown Orlando-based companies and entrepreneurs, our members come from all over Florida. Come check out Orlando!
|
35
|
+
DOC
|
36
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
37
|
+
meetup.url = "http://www.meetup.com/Orlando-Tech/"
|
38
|
+
meetup
|
39
|
+
end
|
40
|
+
|
41
|
+
def self.orlando_developers_meetup
|
42
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/OrlandoDevs/'))
|
43
|
+
meetup = self.new
|
44
|
+
meetup.name = doc.search("h1 span").text
|
45
|
+
meetup.about = <<-DOC
|
46
|
+
The Orlando Developers User Group is for developers of all skill levels in the Orlando area to come learn about improving yourself as a developer. We focus primarily on professional development and soft skills, but we will also be featuring technical talks and presentations on various different subjects that our community is interested in.
|
47
|
+
DOC
|
48
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
49
|
+
meetup.url = "http://www.meetup.com/OrlandoDevs/"
|
50
|
+
meetup
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.code_for_orlando
|
54
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Code-For-Orlando/'))
|
55
|
+
meetup = self.new
|
56
|
+
meetup.name = doc.search("h1 span").text
|
57
|
+
meetup.about = <<-DOC
|
58
|
+
Want To Help Your City? Good, we could use your help. We are working to become an official Code for America Brigade, which means we're volunteers that contribute our talents toward improving the way our local governments and community organizations use the web. Brigade is about action and you're here because you are someone who takes action. See what kind of things brigades do, or watch the inspirational TED talk given by Jennifer Pahlka, the founder of Code for America.
|
59
|
+
DOC
|
60
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
61
|
+
meetup.url = "http://www.meetup.com/Code-For-Orlando/"
|
62
|
+
meetup
|
63
|
+
end
|
64
|
+
|
65
|
+
def self.iron_yard
|
66
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/The-Iron-Yard-Orlando/'))
|
67
|
+
meetup = self.new
|
68
|
+
meetup.name = doc.search("h1 span").text
|
69
|
+
meetup.about = <<-DOC
|
70
|
+
The Iron Yard exists to create exceptional growth and mentorship for people and their ideas through tech-focused education. We're passionate about the communities we exist in and strive to be good citizens of the tech industry. Our doors are open to everyone who wants to learn about technology, from kids to people who want to change careers. Come to one of our events to see what all of the excitement is about.
|
71
|
+
DOC
|
72
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
73
|
+
meetup.url = "http://www.meetup.com/The-Iron-Yard-Orlando/"
|
74
|
+
meetup
|
75
|
+
end
|
76
|
+
|
77
|
+
def self.front_end_orlando
|
78
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Front-End-Orlando/'))
|
79
|
+
meetup = self.new
|
80
|
+
meetup.name = doc.search("h1 span").text
|
81
|
+
meetup.about = <<-DOC
|
82
|
+
This group is for Orlando Front End Developers who work with HTML/CSS/Javascript regularly. Newbies are welcome too! We're all here to learn :)
|
83
|
+
DOC
|
84
|
+
meetup.next_meetup = doc.search("ul script h2").text.strip
|
85
|
+
meetup.url = "http://www.meetup.com/Front-End-Orlando/"
|
86
|
+
meetup
|
87
|
+
end
|
88
|
+
|
89
|
+
def self.downtown_ux
|
90
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Downtown-UX-Meetup/'))
|
91
|
+
meetup = self.new
|
92
|
+
meetup.name = doc.search("h1 span").text
|
93
|
+
meetup.about = <<-DOC
|
94
|
+
Our mission is to create opportunities for anyone to learn, discuss, and share knowledge about the field of User Experience. We try to create opportunities for our community to learn about tools and techniques for UX Design from each other. Typically our meetups have a presentation paired with a workshop so that we can both learn and then do. We hope you will join us.
|
95
|
+
DOC
|
96
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
97
|
+
meetup.url = "http://www.meetup.com/Downtown-UX-Meetup/"
|
98
|
+
meetup
|
99
|
+
end
|
100
|
+
|
101
|
+
def self.orlando_python_group
|
102
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/OrlandoPython/'))
|
103
|
+
meetup = self.new
|
104
|
+
meetup.name = doc.search("h1 span").text
|
105
|
+
meetup.about = <<-DOC
|
106
|
+
The OrlandoPy(thon) User Group is for users, enthusiasts, and students in Orlando, Florida, interested in the Python computer programming language. We meet monthly to discuss and present emerging issues and interesting projects in Python, practice our skill, and trade stories from the workforce. All skill levels are welcome.
|
107
|
+
DOC
|
108
|
+
meetup.next_meetup = doc.search("ul script h2").text.strip
|
109
|
+
meetup.url = "http://www.meetup.com/OrlandoPython/"
|
110
|
+
meetup
|
111
|
+
end
|
112
|
+
|
113
|
+
def self.orlando_mongodb_group
|
114
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Orlando-MongoDB-User-Group/'))
|
115
|
+
meetup = self.new
|
116
|
+
meetup.name = doc.search("h1 span").text
|
117
|
+
meetup.about = <<-DOC
|
118
|
+
This group is a place for developers, systems admins, and tech enthusiasts to learn more about the open source, document-oriented database MongoDB. MongoDB is the leading NoSQL database and many organizations are adopting this technology. If you are facing challenges with MySQL or Postgres or Oracle and want to explore a more flexible, scalable alternative, please join us at one of our sessions.
|
119
|
+
DOC
|
120
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
121
|
+
meetup.url = "http://www.meetup.com/Orlando-MongoDB-User-Group/"
|
122
|
+
meetup
|
123
|
+
end
|
124
|
+
|
125
|
+
def self.orlando_ruby_group
|
126
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Orlando-Ruby/'))
|
127
|
+
meetup = self.new
|
128
|
+
meetup.name = doc.search("h1 span").text
|
129
|
+
meetup.about = <<-DOC
|
130
|
+
Dedicated to educate about the Ruby language, and associated technologies. We typically meet on the second Thursday of the month providing a presentation and networking.
|
131
|
+
DOC
|
132
|
+
meetup.next_meetup = doc.search("ul script h2").text.strip
|
133
|
+
meetup.url = "http://www.meetup.com/Orlando-Ruby/"
|
134
|
+
meetup
|
135
|
+
end
|
136
|
+
|
137
|
+
def self.orlando_php_group
|
138
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/OrlandoPHP/'))
|
139
|
+
meetup = self.new
|
140
|
+
meetup.name = doc.search("h1 span").text
|
141
|
+
meetup.about = <<-DOC
|
142
|
+
The Orlando PHP User Group is for web development professionals looking to discuss and learn about the C-type programming language PHP, which is used in a variety of common web applications. We meet on the first Wednesday of each month to present and discuss projects we're working on and trade stories from the workforce. All skill levels are welcome.
|
143
|
+
DOC
|
144
|
+
meetup.next_meetup = doc.search("ul script h2").text.strip
|
145
|
+
meetup.url = "http://www.meetup.com/OrlandoPHP/"
|
146
|
+
meetup
|
147
|
+
end
|
148
|
+
|
149
|
+
def self.central_florida_android_group
|
150
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Central-Florida-Android-Developers-Group/'))
|
151
|
+
meetup = self.new
|
152
|
+
meetup.name = doc.search("h1 span").text
|
153
|
+
meetup.about = <<-DOC
|
154
|
+
A group for developers of all skill levels to network, share information, and learn from each other. We also host the http://www.meetup.com/Orlando-iOS-Developer... at our offices in downtown Orlando ( http:www.justecho.com ) and will regularly meet for group discussions, network or job opportunities, and to share ideas and whatever projects group members are working on. Sorry but due to current membership suggestions, no recruiters or non-tech attendees.
|
155
|
+
DOC
|
156
|
+
meetup.next_meetup = doc.search("ul script h2").text.strip
|
157
|
+
meetup.url = "http://www.meetup.com/Central-Florida-Android-Developers-Group/"
|
158
|
+
meetup
|
159
|
+
end
|
160
|
+
|
161
|
+
def self.orlandojs
|
162
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/OrlandoJS/'))
|
163
|
+
meetup = self.new
|
164
|
+
meetup.name = doc.search("h1 span").text
|
165
|
+
meetup.about = <<-DOC
|
166
|
+
The Orlando JavaScript group is a place to talk about all things JavaScript.
|
167
|
+
DOC
|
168
|
+
meetup.next_meetup = doc.search("ul script h2").text.strip
|
169
|
+
meetup.url = "http://www.meetup.com/OrlandoJS/"
|
170
|
+
meetup
|
171
|
+
end
|
172
|
+
|
173
|
+
def self.orlando_coding_dojo
|
174
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/orlandodojo/'))
|
175
|
+
meetup = self.new
|
176
|
+
meetup.name = doc.search("h1 span").text
|
177
|
+
meetup.about = <<-DOC
|
178
|
+
The Orlando Coding Dojo is the dedicated group for practicing the craft of test-driven development while pair programming. We meet biweekly in various places around the Orlando area, pick a programming language to use, a problem to attempt to solve, and briefly discuss a proposed implementation to follow.
|
179
|
+
DOC
|
180
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
181
|
+
meetup.url = "http://www.meetup.com/orlandodojo/"
|
182
|
+
meetup
|
183
|
+
end
|
184
|
+
|
185
|
+
def self.raspberry_pi_group
|
186
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Central-Florida-RPi-Users-Group/'))
|
187
|
+
meetup = self.new
|
188
|
+
meetup.name = doc.search("h1 span").text
|
189
|
+
meetup.about = <<-DOC
|
190
|
+
The Central Florida Raspberry Pi Users Group’s mission includes creating, and maintaining an active user and developer community for the Raspberry Pi platform in the Central Florida area. Meetups for the Raspberry Pi are called Raspberry Jams. We have been meeting at different venues in order to cover more territory. Be sure to check out our next Raspberry Jam!
|
191
|
+
DOC
|
192
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
193
|
+
meetup.url = "http://www.meetup.com/Central-Florida-RPi-Users-Group/"
|
194
|
+
meetup
|
195
|
+
end
|
196
|
+
|
197
|
+
def self.orlando_ios_dev_group
|
198
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/Orlando-iOS-Developer-Group/'))
|
199
|
+
meetup = self.new
|
200
|
+
meetup.name = doc.search("h1 span").text
|
201
|
+
meetup.about = <<-DOC
|
202
|
+
This group is an attempt to organize iOS developers in the Central Florida area. The group's purpose is to help developers further their iOS, iPhone, iPad education, and network with fellow iOS developers in the area. Anyone who wants to learn, teach, and get to know your fellow geeks should join.
|
203
|
+
DOC
|
204
|
+
meetup.next_meetup = doc.search("ul script h2").text.strip
|
205
|
+
meetup.url = "http://www.meetup.com/Orlando-iOS-Developer-Group/"
|
206
|
+
meetup
|
207
|
+
end
|
208
|
+
|
209
|
+
def self.iot_orlando
|
210
|
+
doc = Nokogiri::HTML(open('http://www.meetup.com/iot-orlando/'))
|
211
|
+
meetup = self.new
|
212
|
+
meetup.name = doc.search("h1 span").text
|
213
|
+
meetup.about = <<-DOC
|
214
|
+
This is the place for people with a project or product idea they want to have connected to the internet. IoT has a lot of potential for new and exciting devices, with so many hardware and software options out there it can be difficult to get started or know what technology is right for your project. As a group we can share knowledge and learn together to unlock the IoT potential. Designers, programmers, engineers and entrepreneurs are all welcome. We will offer introductory overviews of the relevant technologies but will also generate small groups building out their ideas.
|
215
|
+
DOC
|
216
|
+
meetup.next_meetup = doc.search("div li time span").first.text.strip
|
217
|
+
meetup.url = "http://www.meetup.com/iot-orlando/"
|
218
|
+
meetup
|
219
|
+
end
|
220
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'orlando_tech_meetups/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "orlando_tech_meetups"
|
8
|
+
spec.version = OrlandoTechMeetups::VERSION
|
9
|
+
spec.authors = ["joshnevius"]
|
10
|
+
spec.email = ["joshnevius92@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = "Check out all of your favorite tech meetups in Central Florida"
|
13
|
+
spec.description = "This Ruby Gem provides a CLI to learn about the different tech meetup groups in the central FL/Orlando area."
|
14
|
+
spec.homepage = "https://github.com/joshnevius/orlando-tech-meetups-cli-gem"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
18
|
+
# delete this section to allow pushing this gem to any host.
|
19
|
+
|
20
|
+
|
21
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
|
+
spec.bindir = "bin"
|
23
|
+
spec.executables = ["orlando_tech_meetups"]
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
|
29
|
+
spec.add_dependency "nokogiri"
|
30
|
+
|
31
|
+
end
|
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: orlando_tech_meetups
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- joshnevius
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-06-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: nokogiri
|
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
|
+
description: This Ruby Gem provides a CLI to learn about the different tech meetup
|
56
|
+
groups in the central FL/Orlando area.
|
57
|
+
email:
|
58
|
+
- joshnevius92@gmail.com
|
59
|
+
executables:
|
60
|
+
- orlando_tech_meetups
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- ".gitignore"
|
65
|
+
- CODE_OF_CONDUCT.md
|
66
|
+
- Gemfile
|
67
|
+
- LICENSE.txt
|
68
|
+
- NOTES.md
|
69
|
+
- README.md
|
70
|
+
- Rakefile
|
71
|
+
- bin/console
|
72
|
+
- bin/orlando_tech_meetups
|
73
|
+
- bin/setup
|
74
|
+
- lib/orlando_tech_meetups.rb
|
75
|
+
- lib/orlando_tech_meetups/cli.rb
|
76
|
+
- lib/orlando_tech_meetups/meetups.rb
|
77
|
+
- lib/orlando_tech_meetups/version.rb
|
78
|
+
- orlando_tech_meetups.gemspec
|
79
|
+
homepage: https://github.com/joshnevius/orlando-tech-meetups-cli-gem
|
80
|
+
licenses:
|
81
|
+
- MIT
|
82
|
+
metadata: {}
|
83
|
+
post_install_message:
|
84
|
+
rdoc_options: []
|
85
|
+
require_paths:
|
86
|
+
- lib
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
requirements: []
|
98
|
+
rubyforge_project:
|
99
|
+
rubygems_version: 2.4.8
|
100
|
+
signing_key:
|
101
|
+
specification_version: 4
|
102
|
+
summary: Check out all of your favorite tech meetups in Central Florida
|
103
|
+
test_files: []
|