empower 0.1.0 → 0.1.1

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: 988f2741acc65aa587d283a981fb51a6f3b1d847
4
- data.tar.gz: 644900fd7cf1e5428c0738dfe7c87be5cf378b42
3
+ metadata.gz: be69ae4ebfc41949946358819b13f4664288f788
4
+ data.tar.gz: 514769ae06879dc16c90b8ebacc6eae9e7571988
5
5
  SHA512:
6
- metadata.gz: c6efa48565eac7d21db4fc6b961ddab361754f968b36ff8c935ee06f3a5cfce74ebdc1c0eed13d69a6353a5e568be5e51e59859c36cb0c8d0b7874a200173734
7
- data.tar.gz: fdf99f3c3c694a03545889d65488405a5645bf112348970fddf4020b557b9542caf820389716230cabb0409ef29ba79ca4629b92787c0636d2f27f27d5360a3b
6
+ metadata.gz: a61d910115c519a078bfc71f96c415da13768d908bbc0d7cfde639010c17f8155956a1238e9d459396ce3b22206799f77fc5b1b46660198a1e67bdaa2e0bd9ab
7
+ data.tar.gz: 758e18117e446e62c925c89ecc2d1f1c3fcd91f9621f5d574db5cdbe3a709588bd5344df35da7b696cf65dff8570dd6eac3798a954c6ef3416ab3d04615e4daa
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- empower (0.1.0)
4
+ empower (0.1.1)
5
5
  devise
6
6
  omniauth-facebook
7
7
  rails (~> 4.1.0)
data/README.md CHANGED
@@ -18,7 +18,7 @@ Installation
18
18
  Add this line to your application's Gemfile:
19
19
 
20
20
  ```text
21
- gem 'cambium'
21
+ gem 'empower'
22
22
  ```
23
23
 
24
24
  And then execute:
@@ -30,7 +30,7 @@ $ bundle
30
30
  Or install it yourself as:
31
31
 
32
32
  ```text
33
- $ gem install cambium
33
+ $ gem install empower
34
34
  ```
35
35
 
36
36
  Requirements
@@ -85,7 +85,7 @@ Otherwise, if you want to handle your own links, they would look like this:
85
85
  Contributing
86
86
  ----------
87
87
 
88
- 1. Fork it ( https://github.com/[my-github-username]/cambium/fork )
88
+ 1. Fork it ( https://github.com/[my-github-username]/empower/fork )
89
89
  2. Create your feature branch (`git checkout -b my-new-feature`)
90
90
  3. Commit your changes (`git commit -am 'Add some feature'`)
91
91
  4. Push to the branch (`git push origin my-new-feature`)
@@ -1,3 +1,3 @@
1
1
  module Empower
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: empower
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean C Davis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-13 00:00:00.000000000 Z
11
+ date: 2015-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -69,8 +69,7 @@ dependencies:
69
69
  description: ''
70
70
  email:
71
71
  - scdavis41@gmail.com
72
- executables:
73
- - rails
72
+ executables: []
74
73
  extensions: []
75
74
  extra_rdoc_files: []
76
75
  files:
@@ -88,7 +87,6 @@ files:
88
87
  - app/helpers/empower/application_helper.rb
89
88
  - app/helpers/empower/omniauth_helper.rb
90
89
  - app/views/layouts/empower/application.html.erb
91
- - bin/rails
92
90
  - config/routes.rb
93
91
  - empower.gemspec
94
92
  - lib/empower.rb
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/empower/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'