flag_shih_tzu 0.3.5 → 0.3.6

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: 33880b74805cf7ad653f77e4d0d4768c2c2c6e4c
4
- data.tar.gz: 0dcaec06a2d68885d2225bf66e43cadff4c2bd9d
3
+ metadata.gz: 3f3864c6fe734d0dc27d87b88a46085d57beed02
4
+ data.tar.gz: ea62d27e9fdf6749183a2720345b02efe34048a5
5
5
  SHA512:
6
- metadata.gz: 87e72860a03ca9de17d788bf274f7caf75cfe8c895447f22b576d7ccf03b201e7cea41c8846a46c401521764c3320f4493cbf32046ed3a0b91a05c65dd92032e
7
- data.tar.gz: cbf558efa240f5ad6e1e9a0ee9af6aefc1b1ebb5f04c44f06aa892cff13c059e6bac424e8ba63a506f1831e0e616495770c984de1dc7d9df4c6cad287fe71e75
6
+ metadata.gz: 0334d4da71237808fe90c033212b9c6dbc107b0a8ea6f63f79e02607ab8bdf76c667d11f0ff015c68007eefabf508d50e568143defb0e50e794f899f3c65b14e
7
+ data.tar.gz: 0145457f64fea344bbb589df30c537e178f5f4fc59e993522d3d2d8289ad677b4fb11f74bcea80a61a59ffe4261c9c5b74027392cbddbc852c79ed6357060b2e
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ Version 0.3.6 - AUG.29.2013
2
+ * Allow use with any gem manager by Peter Boling
3
+ * No need to alter Ruby's load path by Peter Boling
4
+
1
5
  Version 0.3.5 - AUG.06.2013
2
6
  * Fix Travis Build & Add Rails 4 by Peter M. Goldstein
3
7
  * Implemented update_flag! by Peter Boling (see https://github.com/pboling/flag_shih_tzu/issues/27)
@@ -1,6 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "flag_shih_tzu/version"
2
+ require File.expand_path('../lib/flag_shih_tzu/version', __FILE__)
4
3
 
5
4
  Gem::Specification.new do |s|
6
5
  s.name = "flag_shih_tzu"
data/lib/flag_shih_tzu.rb CHANGED
@@ -1,4 +1,3 @@
1
- require "rubygems"
2
1
  require "active_record"
3
2
  require "active_support/all"
4
3
  require "flag_shih_tzu/validators"
@@ -1,3 +1,3 @@
1
1
  module FlagShihTzu
2
- VERSION = "0.3.5"
2
+ VERSION = "0.3.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flag_shih_tzu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2013-08-06 00:00:00.000000000 Z
15
+ date: 2013-08-29 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: activerecord
@@ -108,7 +108,6 @@ files:
108
108
  - gemfiles/Gemfile.activerecord-3.1.x
109
109
  - gemfiles/Gemfile.activerecord-3.2.x
110
110
  - gemfiles/Gemfile.activerecord-4.0.x
111
- - init.rb
112
111
  - lib/flag_shih_tzu.rb
113
112
  - lib/flag_shih_tzu/validators.rb
114
113
  - lib/flag_shih_tzu/version.rb
data/init.rb DELETED
@@ -1 +0,0 @@
1
- require 'flag_shih_tzu'