annotate_gemfile 0.1.1 → 0.1.2

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
2
  SHA1:
3
- metadata.gz: 472bc3f9880832b5a8f3b1488ef86f9caaf59ff2
4
- data.tar.gz: 75aa5f11f0b9280a37d4e909bfa709de08f01ec8
3
+ metadata.gz: bdcb4668417db7f2e044c2be300c008b45514bad
4
+ data.tar.gz: 7d33678d701b47f18244812077bb6c1dcc843987
5
5
  SHA512:
6
- metadata.gz: 88243fe8bde96171ec3a23a83818cb668ddb12ccb84ce0c3ca83bcade81e5373f9013a10d431379ae791a1bc9105828dbc9054ddabd95c3bf5064c215cf65c6d
7
- data.tar.gz: 6fa834cab585bd40b2083c6cb74dc09e8d73324c74d84d81bcf335a1caf9592c3ff783aa326d524058d00bb54ade7fe1a5077cf371eb79cea4706b63a26992d4
6
+ metadata.gz: a113b92ce3c068e9f2294137cc8f22aef93f4556fe82ff64b753be3d44afec252a5b8b25d770164d6c26376785689a80166a51221738369f46a0879220945339
7
+ data.tar.gz: ff710aaae3dcd49e425cf92e7333ddd53a21f891a32fe7bd572678cab7a6b60a151169e3d44093c436ce1a6ad9f78736479666baeed1226226c475a0a088b145
data/.gitignore CHANGED
@@ -7,3 +7,4 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ *.gem
data/README.md CHANGED
@@ -4,6 +4,38 @@
4
4
 
5
5
  This tool will hit the API at Rubygems and get a description for each gem listed in your project's Gemfile, and add that description as a comment above that gem.
6
6
 
7
+ For example, it will turn this Gemfile:
8
+
9
+ ```ruby
10
+ source 'https://rubygems.org'
11
+
12
+ gem 'rails'
13
+ gem 'devise'
14
+ gem 'marco-polo'
15
+
16
+ ```
17
+
18
+ Into this Gemfile (saved as Gemfile.annotated):
19
+
20
+ ```ruby
21
+ source 'https://rubygems.org'
22
+
23
+ # Ruby on Rails is a full-stack web framework optimized for programmer happiness
24
+ # and sustainable productivity. It encourages beautiful code by favoring
25
+ # convention over configuration. (http://github.com/rails/rails)
26
+ gem 'rails', '~> 3.2.22'
27
+
28
+
29
+ # Flexible authentication solution for Rails with Warden
30
+ # (http://github.com/plataformatec/devise)
31
+ gem 'devise', '~> 2.2' # upgrade to 3.x too complicated
32
+
33
+ # MarcoPolo shows your app name and environment in your console prompt so you
34
+ # don't accidentally break production
35
+ gem 'marco-polo'
36
+
37
+ ```
38
+
7
39
  ## Installation
8
40
 
9
41
  First install the gem:
@@ -1,8 +1,6 @@
1
1
  require 'gems'
2
2
  require 'ruby-progressbar'
3
3
 
4
- require 'awesome_print'
5
-
6
4
  module AnnotateGemfile
7
5
  class Annotator
8
6
 
@@ -1,3 +1,3 @@
1
1
  module AnnotateGemfile
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: annotate_gemfile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jake Moffatt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-24 00:00:00.000000000 Z
11
+ date: 2016-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gems
@@ -165,7 +165,6 @@ files:
165
165
  - Guardfile
166
166
  - README.md
167
167
  - Rakefile
168
- - annotate_gemfile-0.1.0.gem
169
168
  - annotate_gemfile.gemspec
170
169
  - bin/annotate-gemfile
171
170
  - bin/console
Binary file