abstracted 0.0.15 → 0.1.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/abstracted/version.rb +1 -1
  3. metadata +3 -5
  4. data/bin/rails +0 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d37fdc45795f03804da74023540c393d8c32ba21
4
- data.tar.gz: 9012ecedbe89d88d7d2781e0a40aede77812a61e
3
+ metadata.gz: a36e927d83eabb37b7c1c75d3cf32ff989189eb5
4
+ data.tar.gz: 3cd2541a170241929c61fb83e9a542125f78a534
5
5
  SHA512:
6
- metadata.gz: dddd1bd9e1c72f6678403b1215c87899793c1883cb4c90ca167ef3e376fab018179a59e1d31ebe05ac61910b1808cdc9e5f8f9d0f9c9991e95c3fe586d04dff2
7
- data.tar.gz: 68dc19fe35faef2c45e616e01c45aee3d528cee4f6964a9c1f382f99f1d8b4758d928f6ef76dfd78b81ebccdc17fd7a41aaee5412bb1851c45e6590cb4ec4cd3
6
+ metadata.gz: 72f67a0d8706bf2e3e091e9f794f00c7c204a5a30be2afa39dac23ee298f7e90ceea0727ae48d25d8a3fa630777353262ee8c054e1f5a692729ae4f345dadc6d
7
+ data.tar.gz: 9902f7543e18a12abdafcb00150c6ae5375fb4bd9b1b655bf5260910cfaac4fa4f47712ada81d05ab0dabd696a858400355310353b91585764cc16d0a1fd5250
@@ -1,3 +1,3 @@
1
1
  module Abstracted
2
- VERSION = "0.0.15"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: abstracted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Walther H Diechmann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-12 00:00:00.000000000 Z
11
+ date: 2016-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -252,8 +252,7 @@ description: Abstracted has a lot of inspiration from gems like resources_contro
252
252
  by Ian White!
253
253
  email:
254
254
  - walther@diechmann.net
255
- executables:
256
- - rails
255
+ executables: []
257
256
  extensions: []
258
257
  extra_rdoc_files: []
259
258
  files:
@@ -311,7 +310,6 @@ files:
311
310
  - app/views/abstract_resources/show.html.haml
312
311
  - app/views/layouts/_messages.html.haml
313
312
  - app/views/layouts/_navigation.html.haml
314
- - bin/rails
315
313
  - bower.json
316
314
  - config/initializers/exception.rb
317
315
  - config/initializers/pundit.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/abstracted/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'