cambium 1.0.0 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99887d04074970f7daa654f9fa7ff4eea5c3f0e7
4
- data.tar.gz: 3933cd4cb15076a974d220c7331ad161fa563d33
3
+ metadata.gz: 55e0c6ba063d67d63a7a2b1aebf15184f382a187
4
+ data.tar.gz: 8f4e3b991403f865d617538c4400723f49fe239c
5
5
  SHA512:
6
- metadata.gz: db9cf246df9160103a22885bdca5dd61a01619ced628d36902913961190a75030f865b4902eb904b86b86b41b3efc6299a8fed04b711030dce2d8d4455eccb21
7
- data.tar.gz: 162da5ef45897e73adeaa75e82dbd89076e41c3be2df3ea387dd1b676e6abf9f9fcccbf54f400e7d4fd6efb4c660c4f9389f96154fa8648b8310d92992661248
6
+ metadata.gz: 6ae5318fa4875d723a662f2a780beeabd304ada48cd4cb77bd1860a5d98a3ecc699ca2f01a05065f173e51eb721885871ac4387e940d773e03bef8f4bd6b8a89
7
+ data.tar.gz: 888140cc0b88c6c70e2e5e4b4cce324bff053f0f04c29a47220993248ecb165840ed66cdce185e2978b232aa402c7c0e9bf39c70ebece86d8d425b24ee30d0c7
data/cambium.gemspec CHANGED
@@ -14,7 +14,6 @@ Gem::Specification.new do |spec|
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
18
  spec.require_paths = ["lib"]
20
19
 
@@ -1,3 +1,3 @@
1
1
  module Cambium
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cambium
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean C Davis
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-04-24 00:00:00.000000000 Z
12
+ date: 2015-04-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -141,8 +141,7 @@ description: ''
141
141
  email:
142
142
  - scdavis41@gmail.com
143
143
  - warren@hungry-media.com
144
- executables:
145
- - rails
144
+ executables: []
146
145
  extensions: []
147
146
  extra_rdoc_files: []
148
147
  files:
@@ -205,7 +204,6 @@ files:
205
204
  - app/views/cambium/admin/paper_trail/versions/_version.html.erb
206
205
  - app/views/cambium/admin/search/index.html.erb
207
206
  - app/views/layouts/admin.html.erb
208
- - bin/rails
209
207
  - cambium.gemspec
210
208
  - config/routes.rb
211
209
  - lib/cambium.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/cambium/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'