date_to_word 0.1.5 → 0.1.7

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: 6a36d6664b812e64fc578d8054af24e56962e85e
4
- data.tar.gz: e38210db3bab2fe32d3b87e3dab4be5f4a98ea59
3
+ metadata.gz: d9efb0464ffc9c75ff97ae29aae9a74bb9b94f8b
4
+ data.tar.gz: 679ed14e26e15528376618896ab313afa0933801
5
5
  SHA512:
6
- metadata.gz: 9c4b71c27498ad66f5a33aefe6c1bad2b992443ac4c9dad7448da4f2070e3a6ca022880ad0232c8ff54e978f2a7e58133cb5d9c1d18f6be283250a14fb293e6c
7
- data.tar.gz: 6dc9bbf269b5558620d25f428a2e9c2642d9064d63dd0f52922e3422725343118ed16e5cdf3f00085d5162f63775a5dc1843d0beae237523ca8b0e0e1dff0969
6
+ metadata.gz: 331ef53c661dfd9659a17a974b59e99be98379d372afada752025beb59f9b91eaa1a7b35e1c881c136ff9f0b34bd333bf4085c47b40f4d7ab8796d0ea1c9b016
7
+ data.tar.gz: b390651b6991b0c86df6f4a357d56f76a64eb813142d0070948c0563584d4a27d08767797b5a72576191fc465c498c3c54a6e807fbefd7977d08180e12f292c5
data/Gemfile CHANGED
@@ -1,5 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in date_to_word.gemspec
4
- gem 'date_to_word', git: 'https://github/nidhinnambiar/date_to_word'
5
4
  gemspec
data/Gemfile.lock CHANGED
@@ -1,20 +1,17 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- date_to_word (0.1.2)
4
+ date_to_word (0.1.7)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- rake (10.4.2)
10
9
 
11
10
  PLATFORMS
12
11
  ruby
13
12
 
14
13
  DEPENDENCIES
15
- bundler (~> 1.10)
16
14
  date_to_word!
17
- rake (~> 10.0)
18
15
 
19
16
  BUNDLED WITH
20
17
  1.10.6
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # DateToWord
2
2
 
3
+ [![Version ](https://img.shields.io/gem/v/date_to_word.svg?style=flat)](https://rubygems.org/gems/date_to_word)
4
+ [![Code Climate](https://codeclimate.com/github/nidhinnambiar/date_to_word/badges/gpa.svg)](https://codeclimate.com/github/nidhinnambiar/date_to_word)
5
+ [![Inline docs](http://inch-ci.org/github/nidhinnambiar/date_to_word.svg?branch=master)](http://inch-ci.org/github/nidhinnambiar/date_to_word)
3
6
 
4
7
  ## Installation
5
8
 
data/date_to_word.gemspec CHANGED
@@ -8,22 +8,18 @@ Gem::Specification.new do |spec|
8
8
  spec.version = DateToWord::VERSION
9
9
  spec.authors = ["Nidhin Nambiar"]
10
10
  spec.email = ["dnidhin5@gmail.com"]
11
-
12
11
  spec.summary = %q{ruby gem to convert date in to words}
13
12
  spec.description = %q{Using date_to_word gem it is possible to convert ruby date object into words}
14
- spec.homepage = "http://github.com/nidhinnambiar/date_to_word"
15
13
  spec.license = "MIT"
16
-
17
- # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
- # delete this section to allow pushing this gem to any host.
14
+ spec.homepage = "http://nidhin.me"
19
15
  if spec.respond_to?(:metadata)
20
- spec.metadata['allowed_push_host'] = "https://rubygems.org"
16
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
17
  else
22
- raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
18
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
19
  end
24
-
25
20
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
21
  spec.bindir = "exe"
27
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
23
  spec.require_paths = ["lib"]
24
+ spec.required_ruby_version = ">= 2.0"
29
25
  end
@@ -1,3 +1,3 @@
1
1
  module DateToWord
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: date_to_word
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nidhin Nambiar
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-24 00:00:00.000000000 Z
11
+ date: 2016-05-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Using date_to_word gem it is possible to convert ruby date object into
14
14
  words
@@ -29,8 +29,7 @@ files:
29
29
  - date_to_word.gemspec
30
30
  - lib/date_to_word.rb
31
31
  - lib/date_to_word/version.rb
32
- - pkg/date_to_word-0.1.0.gem
33
- homepage: http://github.com/nidhinnambiar/date_to_word
32
+ homepage: http://nidhin.me
34
33
  licenses:
35
34
  - MIT
36
35
  metadata:
@@ -43,7 +42,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
43
42
  requirements:
44
43
  - - ">="
45
44
  - !ruby/object:Gem::Version
46
- version: '0'
45
+ version: '2.0'
47
46
  required_rubygems_version: !ruby/object:Gem::Requirement
48
47
  requirements:
49
48
  - - ">="
Binary file