eefgilm 1.1.1 → 1.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: 7fff57dfc528b1dd02573696316647afa5ca75d6
4
- data.tar.gz: dfe17e32c3544978479e9ec0570b5d567d240437
3
+ metadata.gz: 0be33a97de8785b7ed0d5b96a0628319ae8c499b
4
+ data.tar.gz: e577abb477ded83e8c0728ea61a6e4fdc8482123
5
5
  SHA512:
6
- metadata.gz: 5667e86a822b3e66db7fee6e8b81899c58d13f25c944622c7e6e48250f20769588d3e01787269d53429f5c1084d12effa009a345791fea911416bdcd39abb174
7
- data.tar.gz: 30de5d657a1560ef2bbf67815c35e2daf8bf8633d42ba7feb697aa894143089b528e40e50710ff000256cc5c71e95b07a69e640d1e98ea9d2ec91ad5d379db85
6
+ metadata.gz: e8c0a19209fe06d5a970931de68e7d8f0af2248d76f498535f3ee8dbef3ebeca93dd5fb8bd2edfc9aedbb795ee6c73e0bac3692e1f5bb1eab09ad4703f0832d9
7
+ data.tar.gz: 2ee5a10e3f3d9046857296dd62b36ff3ec18b0fd6c98a7167528d0e969769d54e6544f8be872d722e809e8a94ba5012c8cc498f07f413ea12a511379bdb3eab8
data/README.md CHANGED
@@ -5,30 +5,29 @@
5
5
 
6
6
  #Description:
7
7
 
8
- This gem automatically modifies a ruby gemfile to make them a little easier to read, it does this by alphabetizing the gems, removing all comments, and removing all whitespace including leading and trailing.
8
+ Eefgilm automatically modifies a ruby gemfile to make them a little easier to read, it does this by alphabetizing the gems, removing all comments, and removing all whitespace including leading and trailing.
9
9
 
10
- These Gemfile best practices are all based on the [blog post](http://mcdowall.info/posts/gemfile-best-practices-and-discourse/) written by John McDowall.
10
+ These Gemfile best practices are all loosely based on a [blog post](http://mcdowall.info/posts/gemfile-best-practices-and-discourse/) written by John McDowall.
11
11
 
12
12
  ###These best practices are:
13
13
 
14
- Consistent use of Ruby hash syntax. Use either the old hashrocket or the new Ruby 1.9 syntax, but not both.
15
- Consistent use of a single quoted delimiter. Use either apostrophes or quotation marks, but not both.
16
- No commented Gem references. If it’s commented out, it shouldn’t be there.
17
- Comments relating to a Gem are on the same line as the gem statement, not above.
18
- Group gems that are sourced from Git repos at the top. Chances are they are referencing pre-versions that will become general release and you can change the reference to be part of the General project group later.
19
- Group gems that are sourced from a project path after Git repo sourced Gems. These are probably gems that you might make public and thus reference in the general project gem group later.
20
- Group all of the General project gems together (consider using the :default group).
21
- Group all of the Production project gems together after the General gems.
22
- Group all of the Asset gems after the Production group.
23
- Group all of the Test related gems after the Asset gems.
24
- Group all of the Development related gems after the Test gems.
25
- Within all Gem groups, sort the references by Alphabetical order.
26
- When adding new gems, maintain the alphabetical ordering within the groups.
27
- ---
14
+ - Consistent use of Ruby hash syntax. Use either the old hashrocket or the new Ruby 1.9 syntax, but not both.
15
+ - Consistent use of a single quoted delimiter. Use either apostrophes or quotation marks, but not both.
16
+ - No commented Gem references. If it’s commented out, it shouldn’t be there.
17
+ - Comments relating to a Gem are on the same line as the gem statement, not above.
18
+ - Group gems that are sourced from Git repos at the top. Chances are they are referencing pre-versions that will become general release and you can change the reference to be part of the General project group later.
19
+ - Group gems that are sourced from a project path after Git repo sourced Gems. These are probably gems that you might make public and thus reference in the general project gem group later.
20
+ - Group all of the General project gems together (consider using the :default group).
21
+ - Group all of the Production project gems together after the General gems.
22
+ - Group all of the Asset gems after the Production group.
23
+ - Group all of the Test related gems after the Asset gems.
24
+ - Group all of the Development related gems after the Test gems.
25
+ - Within all Gem groups, sort the references by Alphabetical order.
26
+ - When adding new gems, maintain the alphabetical ordering within the groups.
27
+
28
28
 
29
29
  ## Installation
30
- The simplest way to install Eefgilm is to
31
- Run this command:
30
+ The simplest way to install Eefgilm is to run this command:
32
31
 
33
32
  gem install eefgilm
34
33
 
@@ -53,7 +52,7 @@ A gif of 2 versions of Gemfile i.e before using the gem and after using the gem.
53
52
 
54
53
  Once you have installed eefgilm on your system or in a project directory its quite simple to use. In the directory who's gemfile you would like to modify run:
55
54
 
56
- eefglim
55
+ eefgilm
57
56
 
58
57
  Currently it will not ask you for any confirmation before making modifications, nor will it create a backup so please be careful when using eefgilm. It may be a good idea to backup your gemfile beforehand hand this can be done with:
59
58
 
data/eefgilm.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["enilsen16@live.com", "lindsay_marco@hotmail.com"]
11
11
  spec.summary = %q{A gem to keep your Gemfile in best practice .}
12
12
  spec.description = %q{Eefgilm is a gem that is written to help keep your gemfile in order. It will alphabetize your gems, remove comments, and remove unnecessary whitespace. }
13
- spec.homepage = "https://github.com/enilsen16/eefgilm"
13
+ spec.homepage = "http://enilsen16.github.io/Eefgilm/"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
@@ -35,6 +35,11 @@ module Eefgilm
35
35
 
36
36
  file_lines.each do |line|
37
37
  self.source = line if line.match(/^source/)
38
+
39
+ if self.source == "source 'http://rubygems.org'\n"
40
+ self.source = "source 'https://rubygems.org'\n"
41
+ end
42
+
38
43
  self.rubyversion = line if line.match(/^ruby/)
39
44
 
40
45
  if line.match(/^\s*group/)
@@ -1,3 +1,3 @@
1
1
  module Eefgilm
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
1
+ source 'http://rubygems.org'
2
2
 
3
3
  gem 'devise'
4
4
  gem 'foundation-rails'
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
1
+ source 'http://rubygems.org'
2
2
 
3
3
  gem 'devise'
4
4
  gem 'foundation-rails'
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
1
+ source 'http://rubygems.org'
2
2
 
3
3
  # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4
4
  gem 'rails', '4.1.1'
@@ -40,6 +40,11 @@ describe "Gemfile" do
40
40
  @worker.rubyversion.must_include 'ruby "2.0.0"'
41
41
  end
42
42
 
43
+ it do
44
+ @worker.clean!
45
+ @worker.source.must_include 'https://rubygems.org'
46
+ end
47
+
43
48
  it "without a specified ruby version, it should not have an extra line" do
44
49
  regex = /^[\s]*$\n/
45
50
  count = 0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eefgilm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Nilsen
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-08-05 00:00:00.000000000 Z
12
+ date: 2014-09-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
@@ -79,7 +79,7 @@ files:
79
79
  - test/data/sources/original/railsgem
80
80
  - test/features/gemfile_test.rb
81
81
  - test/test_helper.rb
82
- homepage: https://github.com/enilsen16/eefgilm
82
+ homepage: http://enilsen16.github.io/Eefgilm/
83
83
  licenses:
84
84
  - MIT
85
85
  metadata: {}