randomuser-local-rails 0.4.0.3 → 0.4.0.4

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: b57f6c30991de00ea8c50a160a8e9b468e825c0b
4
- data.tar.gz: 63cd98c1fdd16bbda9804fe62e66804d8a64de28
3
+ metadata.gz: 420e10ab2418d201ec9f4c6b8d9dac136a5a23f4
4
+ data.tar.gz: f65339bbfd6593857188f36519e049ffd94abf5e
5
5
  SHA512:
6
- metadata.gz: b4af19f25e3ccd6c0f22fc54c721f1fee21b75a55d51dfc38b30ef6002f0b31ff55206ba28769507db29847c32abeebb342e62381b51e7ca8a952ea888ca5c5c
7
- data.tar.gz: ab9aa7203dab40a4994ee0dd08a86c600bc38844cfd70e91d60f980286321e6e601994e4ab908b7821098818143f5d06bc58aac6a4de63058a4c468d93fa6e76
6
+ metadata.gz: 96e610cffb37667cda6b465b066cfe49c0db9b6fe7a7418f4dcc67e302a558534fc6f9db7d89fd3d3fcd30cbed3e641df05e18ed625c0121f86620e5e71c5dbb
7
+ data.tar.gz: b4990c25454e59cd27f1ef0a0262dc48e0127c320159409f5683bade63383f674eca6d7c0741e5a00cf36186e81fd394edd0267ad2e241103e830ae439fc618f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- randomuser-local-rails (0.4.0.3)
4
+ randomuser-local-rails (0.4.0.4)
5
5
  rails (~> 4.1.4)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -8,7 +8,7 @@ Uses the US data here: https://github.com/RandomAPI/Randomuser.me-Data
8
8
 
9
9
  Add this line to your application's Gemfile:
10
10
 
11
- gem 'randomuser-local'
11
+ gem 'randomuser-local-rails', require: 'randomuser_local'
12
12
 
13
13
  And then execute:
14
14
 
@@ -1,3 +1,3 @@
1
1
  module RandomuserLocal
2
- VERSION = "0.4.0.3"
2
+ VERSION = "0.4.0.4"
3
3
  end
@@ -14,7 +14,6 @@ Gem::Specification.new do |s|
14
14
  s.license = "MIT"
15
15
 
16
16
  s.files = `git ls-files -z`.split("\x0")
17
- s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
17
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
19
18
  s.require_paths = ["lib"]
20
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: randomuser-local-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0.3
4
+ version: 0.4.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henry Poydar
@@ -41,8 +41,7 @@ dependencies:
41
41
  description:
42
42
  email:
43
43
  - hpoydar@gmail.com
44
- executables:
45
- - rails
44
+ executables: []
46
45
  extensions: []
47
46
  extra_rdoc_files: []
48
47
  files:
@@ -250,7 +249,6 @@ files:
250
249
  - app/assets/images/randomuser_local/portraits/women/93.jpg
251
250
  - app/assets/images/randomuser_local/portraits/women/94.jpg
252
251
  - app/assets/images/randomuser_local/portraits/women/95.jpg
253
- - bin/rails
254
252
  - lib/randomuser_local.rb
255
253
  - lib/randomuser_local/data/US/city_names.txt
256
254
  - lib/randomuser_local/data/US/female_first_names.txt
data/bin/rails DELETED
@@ -1,12 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
-
4
- ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/randomuser_local/engine', __FILE__)
6
-
7
- # Set up gems listed in the Gemfile.
8
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
10
-
11
- require 'rails/all'
12
- require 'rails/engine/commands'