github_summarizer 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb2113bb09f593c4a767ec41efab048edbb8e045
4
- data.tar.gz: 6d373a452f5aa8d37b6c7e1de2105e5b65a2b3f6
3
+ metadata.gz: f70582e46d579791667716a9f301e886d6a78e39
4
+ data.tar.gz: e82e6f93c9da0cf0c4ed3156274eece0f725e9fa
5
5
  SHA512:
6
- metadata.gz: bdc48004312a9d1cf7adbf5ff41454b018fcf9be3eec55a62e1d1e716b1827b21acd15916932b1f29b8e5b53717e418f6d6ab46bc93a7ed0afdb2a7076bf2dc6
7
- data.tar.gz: f45e3580a5e6eefd863a055cd2b4b119ae87e9c721bae7b13d2779ce1a9b523607a4231c4eaaa4a69e04273d55dc5ae8ab776cc19b1a12753129a579cb69168e
6
+ metadata.gz: bfed4272b7094c2307dcd42f41aacc3780d427f476a6e8cbf92854ea29b3fdd82a997d37516cba79a525e97bef2a2e52e88304bb976c3bad6dc2d733ab4ade0c
7
+ data.tar.gz: 1c383be75aa5436f954da6df456218fed3daec73e10d924000316dff596a625c12e6a04e9a9de7e2df9dafb63bc41f8d1ee6fa7a050899a3f0bd0181f4869a51
@@ -20,6 +20,7 @@ Gem::Specification.new do |spec|
20
20
 
21
21
  spec.add_development_dependency "bundler", "~> 1.10"
22
22
  spec.add_development_dependency "rake", "~> 10.0"
23
- spec.add_development_dependency "github_api"
24
- spec.add_development_dependency "colorize"
23
+
24
+ spec.add_runtime_dependency "github_api", [">= 0"]
25
+ spec.add_runtime_dependency "colorize", [">= 0"]
25
26
  end
@@ -1,3 +1,3 @@
1
1
  module GithubSummarizer
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_summarizer
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
  - Michael Vessia
@@ -45,7 +45,7 @@ dependencies:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
- type: :development
48
+ type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
@@ -59,7 +59,7 @@ dependencies:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
- type: :development
62
+ type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
@@ -77,7 +77,6 @@ files:
77
77
  - ".gitignore"
78
78
  - Gemfile
79
79
  - LICENSE.txt
80
- - README.md
81
80
  - Rakefile
82
81
  - bin/console
83
82
  - bin/github_summarizer
data/README.md DELETED
@@ -1,41 +0,0 @@
1
- # GithubSummarizer
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/github_summarizer`. 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
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'github_summarizer'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install github_summarizer
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
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]/github_summarizer.
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
-