crane_rails 0.0.6 → 0.0.7

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: 9bab09f76332d39b2994439533d97a801a6fbf74
4
- data.tar.gz: d4fc820c5bda1858c29b0ec265d6ebf7a9e92187
3
+ metadata.gz: b7c334e2d81b87e42f59f359ae536de1311def11
4
+ data.tar.gz: ec140f6d3f29998ae4259df0950d4e3318408794
5
5
  SHA512:
6
- metadata.gz: 63ca740382b8a9e901c36db292573f9ba7e165140c7df094a86eb522426cbcabd139765e6ee47ec6b22206a8962753b42cdff23515e61756623dbcddd99b07a6
7
- data.tar.gz: 6fba3039516b46f5c5e04384559eb5c5e82616fc6b0ec9dc3530fde53d4d0d2ed1f017925f3af4139a234d3203253a2af8754487fc729521ef9ebb32b3c3e3f0
6
+ metadata.gz: 281e28802f05608ee1c7d46344d3de4e9a829ed006e0defe0c9c7f443212e0d6893c553c5c74fe663851c6ea25e5a6c21f9d74faee83bf367fd222992bf3322b
7
+ data.tar.gz: d77de967489f3f386f2e7238b5007478933a592210ea1b88c10385ecdeb7aa3432d6f21fb1ef79e0e1224ecdf025ea48e4d1338669e53c514e38ad404a478daa
data/Vagrantfile ADDED
@@ -0,0 +1,28 @@
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
+ # Uncomment below to enable NFS for sharing the host machine into the coreos-vagrant VM.
6
+ config.ssh.forward_agent = true
7
+ config.vm.network 'private_network', ip: '172.12.8.150'
8
+ config.vm.synced_folder '.', '/home/core/share', id: 'core', :nfs => true, :mount_options => ['nolock,vers=3,udp']
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
+ config.vm.provider 'shell', inline: <<-COMMANDS
26
+ docker build --name=redis -d shicholas/redis
27
+ COMMANDS
28
+ end
@@ -13,8 +13,8 @@ module CraneRails
13
13
  template 'Vagrantfile', 'Vagrantfile'
14
14
  remove_file 'Gemfile'
15
15
  remove_file 'Gemfile.lock'
16
- get 'https://raw.githubusercontent.com/shicholas/ng-cors-api/master/Gemfile', 'Gemfile'
17
- get 'https://raw.githubusercontent.com/shicholas/ng-cors-api/master/Gemfile.lock', 'Gemfile.lock'
16
+ get 'https://raw.githubusercontent.com/shicholas/Dockerfile-rails/master/Gemfile', 'Gemfile'
17
+ get 'https://raw.githubusercontent.com/shicholas/Dockerfile-rails/master/Gemfile.lock', 'Gemfile.lock'
18
18
  end
19
19
 
20
20
  default_task :bootstrap
@@ -1,3 +1,3 @@
1
1
  module CraneRails
2
- VERSION = '0.0.6'
2
+ VERSION = '0.0.7'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crane_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicholas Shook
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-22 00:00:00.000000000 Z
11
+ date: 2014-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -66,6 +66,7 @@ files:
66
66
  - MIT-LICENSE
67
67
  - README.md
68
68
  - Rakefile
69
+ - Vagrantfile
69
70
  - bin/crane_rails
70
71
  - crane_rails.gemspec
71
72
  - features/generator.feature