oxen_media 0.0.4 → 0.0.5

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/oxen_media/version.rb +1 -1
  3. metadata +2 -4
  4. data/bin/rails +0 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f15d10a03449dc17e8b88f3dfbd900e671370ac
4
- data.tar.gz: a093cff9ec195bec917d0d4088749d31e2997576
3
+ metadata.gz: 94657ba67a3ea77deebba4ad7b8b6936c2065281
4
+ data.tar.gz: cef9fba94e62a496776433788169ca11dec85615
5
5
  SHA512:
6
- metadata.gz: aee72b2b2a06be16b54fb1849ff1fe67a6b5b16a81c7cc0892f9a55eb6c3c980aa06bd204119ae2052bfe2ab9ca92622472c9c73d22e691b87778bbea6d5cae8
7
- data.tar.gz: 3edb918ee56bc311450eb02884e6630887ac0f5eb40a4cc6c6a000f9c8fd3b87e5abee8efb4c4d3fa06fdb46cf271493744b7dec7d129f6838907c52301e0060
6
+ metadata.gz: 14adbf31ee8973057809423261515a2f7a023acaa8ab48f92cae7050cd31d4fc0d550894bc776f93d4cee5251461b5b615716d1df4025f787757f9b699b403f9
7
+ data.tar.gz: 10c90b9f8399ecaed6b9014413de04a30412cdc4cd7a184adc8c4e881477be808fac902a194eec00b4efd37c4dc093eccc0be15e53b6333b8bbbd42c84b63e09
@@ -1,3 +1,3 @@
1
1
  module OxenMedia
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxen_media
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Walther H Diechmann
@@ -279,8 +279,7 @@ dependencies:
279
279
  description: 'OxenMedia is a Gem in the Oxen* Family of Gem''s '
280
280
  email:
281
281
  - walther@diechmann.net
282
- executables:
283
- - rails
282
+ executables: []
284
283
  extensions: []
285
284
  extra_rdoc_files: []
286
285
  files:
@@ -332,7 +331,6 @@ files:
332
331
  - app/views/media/show.html.haml
333
332
  - app/views/media/show.json.jbuilder
334
333
  - app/views/media/update_crop.js.haml
335
- - bin/rails
336
334
  - config/initializers/backtrace_silencers.rb
337
335
  - config/initializers/carrier_wave.rb
338
336
  - config/initializers/simple_form.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/oxen_media/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'