Skip to content

Commit 07eb253

Browse files
committed
v0.23.2
2 parents c729aea + 80dc386 commit 07eb253

File tree

606 files changed

+5570
-3139
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

606 files changed

+5570
-3139
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.vagrant
12
*.beam
23
*.class
34
workspaces
@@ -12,7 +13,6 @@ erlide.log.*
1213
External_Files
1314
cover_report
1415
*.bak
15-
refac_proj
1616
junit-*
1717
temp
1818
ttb_last_config
@@ -21,4 +21,6 @@ ttb_last_config
2121
.~lock.*
2222
.recommenders
2323
*._trace
24-
24+
buildroot
25+
tools
26+
target.platform

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jruby-1.7.4

CHANGES

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
List of user visible changes between 0.23.1 and 0.23.2 (20130823)
2+
3+
911efe6 1250 - io:format statements output is not ordered
4+
99e138e gh120: fix stack overflow when terminating debugged node
5+
626a7b7 don't report runtime down when shutting down
6+
6666ce0 gh117: fix stack overflow when terminating debugger
7+
c8f83b2 add product feature
8+
6eb14aa fix problem with dispatching events after shutdown
9+
65a5393 create crash report even for exit code = 1, just in case
10+
68daf34 make sure beam processes are killed when checking hostname compatibility
11+
112
List of user visible changes between 0.23.0 and 0.23.1 (20130620)
213

314
72a1373 better looking local documentation in hover

Vagrantfile

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
5+
VAGRANTFILE_API_VERSION = "2"
6+
7+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
8+
# All Vagrant configuration is done here. The most common configuration
9+
# options are documented and commented below. For a complete reference,
10+
# please see the online documentation at vagrantup.com.
11+
12+
# Every Vagrant virtual environment requires a box to build off of.
13+
config.vm.box = "erlide"
14+
15+
# The url from where the 'config.vm.box' box will be fetched if it
16+
# doesn't already exist on the user's system.
17+
# config.vm.box_url = "http://domain.com/path/to/above.box"
18+
19+
# Create a forwarded port mapping which allows access to a specific port
20+
# within the machine from a port on the host machine. In the example below,
21+
# accessing "localhost:8080" will access port 80 on the guest machine.
22+
# config.vm.network :forwarded_port, guest: 80, host: 8080
23+
24+
config.vm.provision :shell, :path => "bootstrap.sh"
25+
# Create a private network, which allows host-only access to the machine
26+
# using a specific IP.
27+
# config.vm.network :private_network, ip: "192.168.33.10"
28+
29+
# Create a public network, which generally matched to bridged network.
30+
# Bridged networks make the machine appear as another physical device on
31+
# your network.
32+
# config.vm.network :public_network
33+
34+
# If true, then any SSH connections made will enable agent forwarding.
35+
# Default value: false
36+
# config.ssh.forward_agent = true
37+
38+
# Share an additional folder to the guest VM. The first argument is
39+
# the path on the host to the actual folder. The second argument is
40+
# the path on the guest to mount the folder. And the optional third
41+
# argument is a set of non-required options.
42+
# config.vm.synced_folder "../data", "/vagrant_data"
43+
44+
# Provider-specific configuration so you can fine-tune various
45+
# backing providers for Vagrant. These expose provider-specific options.
46+
# Example for VirtualBox:
47+
#
48+
config.vm.provider :virtualbox do |vb|
49+
vb.name = "erlide"
50+
# config.vm.provider :virtualbox do |vb|
51+
# # Don't boot with headless mode
52+
# vb.gui = true
53+
#
54+
# # Use VBoxManage to customize the VM. For example to change memory:
55+
vb.customize ["modifyvm", :id, "--memory", "2048", "--cpus", "3", "--ioapic", "on"]
56+
end
57+
# vb.customize ["modifyvm", :id, "--memory", "1024"]
58+
# end
59+
#
60+
# View the documentation for the provider you're using for more
61+
# information on available options.
62+
63+
# Enable provisioning with Puppet stand alone. Puppet manifests
64+
# are contained in a directory path relative to this Vagrantfile.
65+
# You will need to create the manifests directory and a manifest in
66+
# the file erlide.pp in the manifests_path directory.
67+
#
68+
# An example Puppet manifest to provision the message of the day:
69+
#
70+
# # group { "puppet":
71+
# # ensure => "present",
72+
# # }
73+
# #
74+
# # File { owner => 0, group => 0, mode => 0644 }
75+
# #
76+
# # file { '/etc/motd':
77+
# # content => "Welcome to your Vagrant-built virtual machine!
78+
# # Managed by Puppet.\n"
79+
# # }
80+
#
81+
# config.vm.provision :puppet do |puppet|
82+
# puppet.manifests_path = "manifests"
83+
# puppet.manifest_file = "init.pp"
84+
# end
85+
86+
# Enable provisioning with chef solo, specifying a cookbooks path, roles
87+
# path, and data_bags path (all relative to this Vagrantfile), and adding
88+
# some recipes and/or roles.
89+
#
90+
# config.vm.provision :chef_solo do |chef|
91+
# chef.cookbooks_path = "../my-recipes/cookbooks"
92+
# chef.roles_path = "../my-recipes/roles"
93+
# chef.data_bags_path = "../my-recipes/data_bags"
94+
# chef.add_recipe "mysql"
95+
# chef.add_role "web"
96+
#
97+
# # You may also specify custom JSON attributes:
98+
# chef.json = { :mysql_password => "foo" }
99+
# end
100+
101+
# Enable provisioning with chef server, specifying the chef server URL,
102+
# and the path to the validation key (relative to this Vagrantfile).
103+
#
104+
# The Opscode Platform uses HTTPS. Substitute your organization for
105+
# ORGNAME in the URL and validation key.
106+
#
107+
# If you have your own Chef Server, use the appropriate URL, which may be
108+
# HTTP instead of HTTPS depending on your configuration. Also change the
109+
# validation key to validation.pem.
110+
#
111+
# config.vm.provision :chef_client do |chef|
112+
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
113+
# chef.validation_key_path = "ORGNAME-validator.pem"
114+
# end
115+
#
116+
# If you're using the Opscode platform, your validator client is
117+
# ORGNAME-validator, replacing ORGNAME with your organization name.
118+
#
119+
# If you have your own Chef Server, the default validation client name is
120+
# chef-validator, unless you changed the configuration.
121+
#
122+
# chef.validation_client_name = "ORGNAME-validator"
123+
end

Vagrantfile.pkg

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
Vagrant.configure("2") do |config|
5+
6+
# config.vm.network :forwarded_port, guest: 80, host: 8080
7+
8+
# config.vm.synced_folder "../data", "/vagrant_data"
9+
10+
config.vm.provider :virtualbox do |vb|
11+
vb.name = "erlide"
12+
vb.customize ["modifyvm", :id, "--memory", "2048", "--cpus", "3", "--ioapic", "on"]
13+
end
14+
15+
end
16+

bootstrap.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
sudo apt-get update
4+
sudo apt-mark hold grub2 grub2-common grub-pc grub-pc-bin
5+
#sudo apt-get upgrade -y
6+
sudo apt-get install -y erlang ant openjdk-6-jdk
7+
8+
set +x
9+
10+
rm -rf $HOME/erlide
11+
ln -s /vagrant $HOME/erlide
12+

build.wrangler/bucky_build

Lines changed: 0 additions & 10 deletions
This file was deleted.

build.wrangler/bucky_test

Lines changed: 0 additions & 6 deletions
This file was deleted.

build.wrangler/build

Lines changed: 0 additions & 33 deletions
This file was deleted.

build.wrangler/build.properties

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)