crane_rails 0.1.4 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c2a3eaaa55fcf7d9d00188f16294567e4f2cf82d
4
- data.tar.gz: c718e75988ab424888ff69ddb06dae7bd58e1376
3
+ metadata.gz: 70df32878a2383c0cb633016493d3b9ee7a0220d
4
+ data.tar.gz: 64222102e39428dd551168c01abcb9bb90d36972
5
5
  SHA512:
6
- metadata.gz: ee928a0415111e6cb370fc91c51454145d8c764dc1db8b7daef4b171552c884d766c42c9a61cbe9eabd864f03e62ac227ac5a033d904717857be1f365f7e11f0
7
- data.tar.gz: 13a1586a0db49b04522c056ed4af497fab7cf70c72604bbd925ca486ce8c3c9c729a9b4d11608e84fcf6f556d44d52dbcc97b220c3fa0bba55b60d7a0945497f
6
+ metadata.gz: 1cb4816cf53760479e387df754413ccccb4b21c4d91d04edcd1acee500476e89c9fe5b8bda6540ef6e05834dbfd3629692357aae718f82f5041d1b496b64637e
7
+ data.tar.gz: 61c203b264f6f552a9a3cc1d047b0c4467781da07e759de62bae7f7dab525cd1a25b8072f49b6b93111b1a043e25253dc9bd94b3c6c5a49cdc4e5fda6bf1e8b4
@@ -24,6 +24,6 @@ Vagrant.configure('2') do |config|
24
24
 
25
25
  # install service containers for rails application
26
26
  config.vm.provision 'shell', inline: <<-COMMANDS
27
- docker run --name=pg -d shicholas/postgres
27
+ docker run --name=pg -d shicholas/postgresql
28
28
  COMMANDS
29
29
  end
@@ -1,3 +1,3 @@
1
1
  module CraneRails
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crane_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicholas Shook
@@ -61,15 +61,11 @@ extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
63
  - ".gitignore"
64
- - Gemfile
65
- - Gemfile.lock
66
64
  - MIT-LICENSE
67
65
  - README.md
68
66
  - Rakefile
69
- - Vagrantfile
70
67
  - bin/crane_rails
71
68
  - crane_rails.gemspec
72
- - database.yml
73
69
  - features/generator.feature
74
70
  - features/support/setup.rb
75
71
  - lib/crane_rails.rb
data/Gemfile DELETED
@@ -1,14 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Declare your gem's dependencies in crane_rails.gemspec.
4
- # Bundler will treat runtime dependencies like base dependencies, and
5
- # development dependencies will be added by default to the :development group.
6
- gemspec
7
-
8
- # Declare any dependencies that are still in development here instead of in
9
- # your gemspec. These might include edge Rails or gems from your path or
10
- # Git. Remember to move these dependencies to your gemspec before releasing
11
- # your gem to rubygems.org.
12
-
13
- # To use debugger
14
- # gem 'debugger'
data/Gemfile.lock DELETED
@@ -1,39 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- crane_rails (0.1.1)
5
- thor (= 0.18.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- aruba (0.5.4)
11
- childprocess (>= 0.3.6)
12
- cucumber (>= 1.1.1)
13
- rspec-expectations (>= 2.7.0)
14
- builder (3.2.2)
15
- childprocess (0.5.1)
16
- ffi (~> 1.0, >= 1.0.11)
17
- cucumber (1.3.12)
18
- builder (>= 2.1.2)
19
- diff-lcs (>= 1.1.3)
20
- gherkin (~> 2.12)
21
- multi_json (>= 1.7.5, < 2.0)
22
- multi_test (>= 0.1.1)
23
- diff-lcs (1.2.5)
24
- ffi (1.9.3)
25
- gherkin (2.12.2)
26
- multi_json (~> 1.3)
27
- multi_json (1.9.2)
28
- multi_test (0.1.1)
29
- rspec-expectations (2.14.5)
30
- diff-lcs (>= 1.1.3, < 2.0)
31
- thor (0.18.1)
32
-
33
- PLATFORMS
34
- ruby
35
-
36
- DEPENDENCIES
37
- aruba
38
- crane_rails!
39
- cucumber
data/Vagrantfile DELETED
@@ -1,29 +0,0 @@
1
- Vagrant.configure('2') do |config|
2
- config.vm.box = 'coreos'
3
- config.vm.box_url = 'http://storage.core-os.net/coreos/amd64-generic/dev-channel/coreos_production_vagrant.box'
4
-
5
- config.vm.synced_folder '.', '/home/core/rails', id: 'core', type: 'rsync'
6
-
7
- # Rails server port
8
- config.vm.network 'forwarded_port', guest: 3000, host: 3000
9
-
10
- # Fix docker not being able to resolve private registry in VirtualBox
11
- config.vm.provider :virtualbox do |vb, override|
12
- vb.customize ['modifyvm', :id, '--natdnshostresolver1', 'on']
13
- vb.customize ['modifyvm', :id, '--natdnsproxy1', 'on']
14
- end
15
-
16
- config.vm.provider :vmware_fusion do |vb, override|
17
- override.vm.box_url = 'http://storage.core-os.net/coreos/amd64-generic/dev-channel/coreos_production_vagrant_vmware_fusion.box'
18
- end
19
-
20
- # plugin conflict
21
- if Vagrant.has_plugin?('vagrant-vbguest') then
22
- config.vbguest.auto_update = false
23
- end
24
-
25
- # install service containers for rails application
26
- config.vm.provision 'shell', inline: <<-COMMANDS
27
- docker run --name=pg -d shicholas/postgresql
28
- COMMANDS
29
- end
data/database.yml DELETED
@@ -1,21 +0,0 @@
1
- development:
2
- adapter: postgresql
3
- encoding: unicode
4
- database: rails_development
5
- pool: 5
6
- username: docker
7
- password: docker
8
- template: template0
9
- host: <%= ENV['PG_PORT_5432_TCP_ADDR'] %>
10
- port: <%= ENV['PG_PORT_5432_TCP_PORT'] %>
11
-
12
- test:
13
- adapter: postgresql
14
- encoding: unicode
15
- database: rails_test
16
- pool: 5
17
- username: docker
18
- password: docker
19
- template: template0
20
- host: <%= ENV['PG_PORT_5432_TCP_ADDR'] %>
21
- port: <%= ENV['PG_PORT_5432_TCP_PORT'] %>