finstyle 1.0.0 → 1.0.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
2
  SHA1:
3
- metadata.gz: cbee44330185e487fcd9540fef46baa1f9fd2d4a
4
- data.tar.gz: 5fa6b8817d44f84dba2e6979c121c2e179b93400
3
+ metadata.gz: eeb5600cba9fae12940b3709436b5208a5159123
4
+ data.tar.gz: f3c5753c338cc74f7b8096901f1eaa52ca785785
5
5
  SHA512:
6
- metadata.gz: 4cfb6dec10fa41f26baf4d04f5b8b0c3ac9dab8a3f6b1a198c472a1952f3b8053f1cf4dce56b57b10908d7fc2a93f1a23031a5ec7afa980735cff51d460d3709
7
- data.tar.gz: c1d0ed710e04ea4fe4255f0ebec7ca3b3ca528c216888ad6927eb9d486ebe4c592ac2dd3b67e898de302f4b766dbe8afee75c2fc763e4b101e244812625f688d
6
+ metadata.gz: 7b6678252f07c278e9c6cac0ab6a1c2d5e14344a869bba7e3dd8cdd3823866c3255dfbd988f6ac341086c0f5d6e8b4cd9865ed20655a4e10a7964322da4836f8
7
+ data.tar.gz: 7a65f642a4182990a786df9223a8d86ffd489395e0dabd36743d00428208a00faacb6b6b43c695540a72bbbcbfb9f0dd5168262fe99f14a2ead167a6fc327da6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 1.0.1 / 2014-07-21
2
+
3
+ ### Code changes
4
+
5
+ * Add source encoding comments to Ruby files for better Ruby 1.9 compat. (@fnichol)
6
+ * Updates to README. (@fnichol)
7
+
8
+
1
9
  ## 1.0.0 / 2014-07-21
2
10
 
3
11
  The initial release.
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Finstyle: Version Pinning RuboCop and Configuration for CI
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/finstyle.svg)](http://badge.fury.io/rb/finstyle)
3
4
  [![Build Status](https://travis-ci.org/fnichol/finstyle.svg?branch=master)](https://travis-ci.org/fnichol/finstyle)
4
5
  [![Code Climate](https://codeclimate.com/github/fnichol/finstyle.png)](https://codeclimate.com/github/fnichol/finstyle)
5
6
  [![Dependency Status](https://gemnasium.com/fnichol/finstyle.svg)](https://gemnasium.com/fnichol/finstyle)
@@ -92,4 +93,4 @@ MIT (see [LICENSE.txt][license])
92
93
  [rubocop]: https://github.com/bbatsov/rubocop
93
94
  [patch]: https://github.com/fnichol/finstyle/blob/master/lib/finstyle.rb
94
95
  [rakefile]: https://github.com/fnichol/finstyle/blob/master/Rakefile
95
- [upstream]: https://github.com/fnichol/finstyle/blob/master/config/deault.yml
96
+ [upstream]: https://github.com/fnichol/finstyle/blob/master/config/default.yml
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # -*- encoding: utf-8 -*-
2
+
1
3
  require "bundler/gem_tasks"
2
4
 
3
5
  upstream = Gem::Specification.find_by_name("rubocop")
data/finstyle.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Finstyle::VERSION
9
9
  spec.authors = ["Fletcher Nichol"]
10
10
  spec.email = ["fnichol@nichol.ca"]
11
- spec.summary = "Version pinning RuboCop and configuration for" \
11
+ spec.summary = "Version pinning RuboCop and configuration for " \
12
12
  "consistentcy in CI"
13
13
  spec.description = spec.description
14
14
  spec.homepage = "http://fnichol.github.io/finstyle"
@@ -1,3 +1,5 @@
1
+ # -*- encoding: utf-8 -*-
2
+
1
3
  module Finstyle
2
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
3
5
  end
data/lib/finstyle.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # -*- encoding: utf-8 -*-
2
+
1
3
  require "finstyle/version"
2
4
  require "rubocop"
3
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: finstyle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fletcher Nichol
@@ -128,5 +128,5 @@ rubyforge_project:
128
128
  rubygems_version: 2.2.2
129
129
  signing_key:
130
130
  specification_version: 4
131
- summary: Version pinning RuboCop and configuration forconsistentcy in CI
131
+ summary: Version pinning RuboCop and configuration for consistentcy in CI
132
132
  test_files: []