bable 0.1.0 → 0.2.0

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: 80a52778b8d0bc8b38193d5052416259fdaf8754
4
- data.tar.gz: 44382d772d69ea548c17ba7542a95d13dd260c4e
3
+ metadata.gz: b6e37b28c00f6965d3cfa0bdc3831361d58ea6c1
4
+ data.tar.gz: e0f3c6e2733ad047028c6aac3c8eac187934c8a7
5
5
  SHA512:
6
- metadata.gz: db49fa8b22439844d4b9edc74c88c27784c6d59afe54d82f7790293a5d64c2418f961f115d4d38a4c045e97d9267d3c28a14268ce97c7a8ebf886737a6a58546
7
- data.tar.gz: 2df068c45f1d074eeb483a047eefd9d374158c6f29012ad3fdef2a3a3d25201f4832cc9b85e22958a08ae2b6c8e209493a41b1dba5b6fe51e13efae3bab49a0b
6
+ metadata.gz: 987cbdb6007c0afcb4c50450f65e6f87f6d19248ecd5d9766f1cae4bb9e979840e7e913ecd7d346fd9475eafa91e8df32fc2b399a0be11d909967045393484a2
7
+ data.tar.gz: 4cc18d457706bede81376d6d185445875a7e9b99f274302ef37c0b0002eaef3e35cdbd26df8b2db7dd55d4831512b3b44c0a7180a79b84b3b1b177f3729eb314
data/README.md CHANGED
@@ -1,4 +1,7 @@
1
+ [![Gem Version](https://badge.fury.io/rb/bable.svg)](http://badge.fury.io/rb/bable)
1
2
  [![Build Status](https://travis-ci.org/danimashu/bable.svg?branch=master)](https://travis-ci.org/danimashu/bable)
3
+ [![Code Climate](https://codeclimate.com/github/danimashu/bable/badges/gpa.svg)](https://codeclimate.com/github/danimashu/bable)
4
+ [![Inch CI](https://inch-ci.org/github/danimashu/bable.svg?branch=master)](https://inch-ci.org/github/danimashu/bable)
2
5
 
3
6
  # Bable: Text readability indexes calculator
4
7
 
@@ -6,6 +9,8 @@ Bable is a library that will allow you calculate quantitative readability indexe
6
9
 
7
10
  Besides calculating indexes (currently available: `Automated Readability Index` and `Coleman-Liau index`), it will help you build your own index calculator, giving you the structure and the helper methods for making the process smoother.
8
11
 
12
+ _Did you know? Bable [ˈbaβle] is an endangered Romance language from the Iberian peninsula._
13
+
9
14
  ## Installation
10
15
 
11
16
  Add this line to your application’s Gemfile:
@@ -16,7 +21,7 @@ gem "bable"
16
21
 
17
22
  And then execute:
18
23
 
19
- $ bundle
24
+ $ bundle install
20
25
 
21
26
  Or install it yourself as:
22
27
 
@@ -62,11 +67,15 @@ Bable.index("text", index: :my_new_index).calc
62
67
 
63
68
  ## Contributing
64
69
 
65
- 1. Fork the repo ( http://github.com/danimashu/bable/fork ).
66
- 2. Create your feature branch `git checkout -b my-new-feature`.
67
- 3. Commit your changes `git commit -am "Add some feature"` referencing a GitHub issue.
68
- 4. Push to the branch `git push origin my-new-feature`.
69
- 5. Create a new Pull Request.
70
+ 1. Check for issues of your interest or create a new one.
71
+ 2. Fork the repo ( http://github.com/danimashu/bable/fork ).
72
+ 3. Create your feature branch `git checkout -b my-new-feature`.
73
+ 4. Implement a test covering what you're going to do.
74
+ 5. Commit your changes `git commit -am "Add some feature"` referencing the GitHub issue.
75
+ 6. Push to the branch `git push origin my-new-feature`.
76
+ 7. Create a new Pull Request.
77
+
78
+ Many thanks!
70
79
 
71
80
  ## License
72
81
 
@@ -17,6 +17,8 @@ Gem::Specification.new do |s|
17
17
  s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
18
  s.require_paths = ["lib"]
19
19
 
20
+ s.required_ruby_version = ">= 2.0.0"
21
+
20
22
  s.add_runtime_dependency "activesupport", "~> 4.2.4"
21
23
 
22
24
  s.add_development_dependency "bundler", "~> 1.10"
@@ -1,3 +1,3 @@
1
1
  module Bable
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Madrid
@@ -145,7 +145,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
145
145
  requirements:
146
146
  - - ">="
147
147
  - !ruby/object:Gem::Version
148
- version: '0'
148
+ version: 2.0.0
149
149
  required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  requirements:
151
151
  - - ">="