impact_hub_events 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f523a31acd94078c1176364d75957e0ee11e69c5
4
- data.tar.gz: '00738db39e5e6fd0a33e5fea37a64aee766ad8a1'
2
+ SHA256:
3
+ metadata.gz: 3c23481614a4a3ca0fa517b4203cd89a599dc40d8d7c72ad35e6490b74c65e2b
4
+ data.tar.gz: 635fcaf04eb30a721e0cc1b878edc63f855eeef5a1e6e7a295e377d3deee1a87
5
5
  SHA512:
6
- metadata.gz: c035c96773911dc3f31d5edde6b56e508a059a14905c6278922298dbfc7d2007632a539d811652822ddeadeefb920c0d8528a677724cba47662abbd6d895d905
7
- data.tar.gz: c7a7ebdcbc237228d728db1466b549307a9bd3188e98a0bf738f53e954679280bf73f4dfe35880c1b2c433286ba48caf034f93b4df197bdd11a3e4cced986055
6
+ metadata.gz: f45381efbac0f0ebb62737c770f2997702438c455cda50d57eb1a7d1dc9d0510382d9678e185d1839c831e1445e26f7665a4f5d8de3eee9433e861458e6f50a4
7
+ data.tar.gz: da92a76d138c1b97415611c717eb4d37f9383b195bb792084eafd51e9330518585fb928166bfe5d900917192647e271359923956abaf743d90cf45b0a46e6b80
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- impact_hub_events (0.1.0)
4
+ impact_hub_events (0.1.1)
5
5
  nokogiri (~> 1.8)
6
6
  paint
7
7
  require_all
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # ImpactHubEvents
2
2
 
3
- 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/impact_hub_events`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ This gem provides a command-line interface for viewing and browsing upcoming events at Impact Hub Seattle.
6
4
 
7
5
  ## Installation
8
6
 
7
+ This gem depends on Ruby version >= 2.3.0. If you need to install another version of Ruby, visit [RVM](https://rvm.io).
8
+
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
@@ -20,15 +20,11 @@ Or install it yourself as:
20
20
 
21
21
  $ gem install impact_hub_events
22
22
 
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
23
+ If `bundle` fails to build native extensions for dependencies, execute `gem update --system` and try again.
28
24
 
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.
25
+ ## Usage
30
26
 
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).
27
+ Install gem as per instructions above. Simply run the command `impact_hub_events` in your terminal to view a list of upcoming events. Follow the menu instructions provided in the terminal for more options.
32
28
 
33
29
  ## Contributing
34
30
 
File without changes
@@ -30,6 +30,9 @@ Gem::Specification.new do |spec|
30
30
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
31
31
  spec.require_paths = ["lib"]
32
32
 
33
+ # This gem will work with 2.3.0 or greater...
34
+ spec.required_ruby_version = '>= 2.3.0'
35
+
33
36
  spec.add_development_dependency "bundler", "~> 1.16"
34
37
  spec.add_development_dependency "rake", "~> 10.0"
35
38
  spec.add_development_dependency "pry", "~> 0.11"
@@ -1,3 +1,3 @@
1
1
  module ImpactHubEvents
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: impact_hub_events
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aspen James
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-30 00:00:00.000000000 Z
11
+ date: 2018-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -99,7 +99,7 @@ email:
99
99
  - aspenjames@tqca.org
100
100
  executables:
101
101
  - console
102
- - run
102
+ - impact_hub_events
103
103
  - setup
104
104
  extensions: []
105
105
  extra_rdoc_files: []
@@ -112,7 +112,7 @@ files:
112
112
  - README.md
113
113
  - Rakefile
114
114
  - bin/console
115
- - bin/run
115
+ - bin/impact_hub_events
116
116
  - bin/setup
117
117
  - impact_hub_events.gemspec
118
118
  - lib/impact_hub_events.rb
@@ -132,7 +132,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
132
132
  requirements:
133
133
  - - ">="
134
134
  - !ruby/object:Gem::Version
135
- version: '0'
135
+ version: 2.3.0
136
136
  required_rubygems_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - ">="
@@ -140,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
140
  version: '0'
141
141
  requirements: []
142
142
  rubyforge_project:
143
- rubygems_version: 2.4.8
143
+ rubygems_version: 2.7.6
144
144
  signing_key:
145
145
  specification_version: 4
146
146
  summary: CLI to show upcoming events at Impact Hub Seattle