simple_flash 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: 48b0a3a84943fdeb5608be13371a0dd082158dd6
4
- data.tar.gz: c7c8447a80307a2c7d36a2a78f0b33699f9f4358
3
+ metadata.gz: 3e2c4e513061b669007f44a14f16c9ccedd3796d
4
+ data.tar.gz: 219b9790caef01cd11eebe25160b916048897924
5
5
  SHA512:
6
- metadata.gz: 6c92bd4a705db5bd6ea0e8f8d53a11fd06f693d180722aba2ce0ac4cfd77a43c223b7355a51e8a9a4423588525f32ecba8b1dc16a21039243ef9864405c4d16f
7
- data.tar.gz: a2b23968f8d2f118e204ea0d308de11b3897612d0eb954ac2354508a0ae915632c86764a736695fa99f39c0de407f70cd28520f9c50dd63fc97333eb2dc7f1de
6
+ metadata.gz: d83651ab6a3779bd11182eb3b4e5f3fbd5405955fe0f954915b752c1176b74b8b6265635691306118f563a464e4b2901c258486ef6e03e03e5434143b68a7f2e
7
+ data.tar.gz: e592bf7732dfc4a5e84d427fe20508bc1fbbf2c51d528f89dd99aa378a03518ad75731b9b7d79490609654d3d2dcba43e9ba43c19e7526090c4ecf55ec6cbdbc
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # SimpleFlash
2
2
 
3
+ [![Code Climate](https://codeclimate.com/github/bsboris/simple_flash/badges/gpa.svg)](https://codeclimate.com/github/bsboris/simple_flash)
4
+
3
5
  I18n for flashes in Rails.
4
6
 
5
7
  ## Installation
@@ -1,3 +1,3 @@
1
1
  module SimpleFlash
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_flash
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
  - Eugene Likholetov
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-23 00:00:00.000000000 Z
11
+ date: 2015-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -59,18 +59,11 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
- - ".gitignore"
63
- - ".travis.yml"
64
- - Gemfile
65
62
  - LICENSE.txt
66
63
  - README.md
67
- - Rakefile
68
- - bin/console
69
- - bin/setup
70
64
  - lib/simple_flash.rb
71
65
  - lib/simple_flash/controller_helpers.rb
72
66
  - lib/simple_flash/version.rb
73
- - simple_flash.gemspec
74
67
  homepage: https://github.com/bsboris/simple_flash
75
68
  licenses:
76
69
  - MIT
@@ -96,3 +89,4 @@ signing_key:
96
89
  specification_version: 4
97
90
  summary: I18n for flashes in Rails.
98
91
  test_files: []
92
+ has_rdoc:
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
data/.travis.yml DELETED
@@ -1,3 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.0
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in simple_flash.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1,2 +0,0 @@
1
- require "bundler/gem_tasks"
2
-
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "simple_flash"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here
data/simple_flash.gemspec DELETED
@@ -1,26 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'simple_flash/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "simple_flash"
8
- spec.version = SimpleFlash::VERSION
9
- spec.authors = ["Eugene Likholetov"]
10
- spec.email = ["bsboris@gmail.com"]
11
-
12
- spec.summary = %q{I18n for flashes in Rails.}
13
- spec.description = %q{I18n for flashes in Rails.}
14
- spec.homepage = "https://github.com/bsboris/simple_flash"
15
- spec.license = "MIT"
16
-
17
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
19
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
- spec.require_paths = ["lib"]
21
-
22
- spec.add_dependency "actionpack", ">= 3.0.0"
23
-
24
- spec.add_development_dependency "bundler", "~> 1.8"
25
- spec.add_development_dependency "rake", "~> 10.0"
26
- end