roundhouse 0.5.0.237 → 0.5.0.242

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/bin/rh +2 -0
  2. data/bin/rh.exe +0 -0
  3. data/lib/ReadMe.txt +118 -0
  4. metadata +11 -6
data/bin/rh ADDED
@@ -0,0 +1,2 @@
1
+ result = system(File.dirname(__FILE__) + "/rh.exe " + ARGV.join(' '))
2
+ exit 1 unless result
data/bin/rh.exe CHANGED
Binary file
data/lib/ReadMe.txt ADDED
@@ -0,0 +1,118 @@
1
+ Project RoundhousE - Database Change Management done right
2
+ =======
3
+ ![RoundhousE](http://github.com/ferventcoder/roundhouse/raw/master/docs/logo/RoundhousE_Logo.jpg "RoundhousE - Professional Database Management.")
4
+
5
+ # LICENSE
6
+ Apache 2.0 - see docs\legal (just LEGAL in the zip folder)
7
+
8
+ # IMPORTANT
9
+ NOTE: If you are looking at the source - please run build.bat before opening the solution. It creates the SolutionVersion.cs file that is necessary for a successful build.
10
+
11
+ # INFO
12
+ ## Overview
13
+ RoundhousE is an automated database deployment (change management) system that allows you to use your current idioms and gain much more. Currently it only supports Microsoft SQL Server, but there are future plans for other databases.
14
+
15
+ It seeks to solve both maintenance concerns and ease of deployment. We follow some of the same idioms as other database management systems (SQL scripts), but we are different in that we think about future maintenance concerns. We want to always apply certain scripts (anything stateless like functions, views, stored procedures, and permissions), so we don�t have to throw everything into our change scripts. This seeks to solves future source control concerns. How sweet is it when you can version the database according to your current source control version?
16
+
17
+ ## Getting started with RoundhousE
18
+ ### Downloads
19
+ You can download RoundhousE from [http://code.google.com/p/roundhouse/downloads/list](http://code.google.com/p/roundhouse/downloads/list)
20
+
21
+ You can also obtain a copy from the build server at [http://teamcity.codebetter.com](http://teamcity.codebetter.com).
22
+
23
+ ### Source
24
+ This is the best way to get to the bleeding edge of what we are doing.
25
+
26
+ 1. Clone the source down to your machine.
27
+ `git clone git://github.com/chucknorris/roundhouse.git`
28
+ 2. Type `cd roundhouse`
29
+ 3. Type `git config core.autocrlf true` to set line endings to auto convert for this repository
30
+ 4. Type `git status`. You should not see any files to change.
31
+ 5. Run `build.bat`. NOTE: You must have git on the path (open a regular command line and type git).
32
+
33
+
34
+ # REQUIREMENTS
35
+ * .NET Framework 3.5
36
+ * SQL Server 2005/2008 installed (or required DLLS in the GAC for SQL Server 2005/2008)
37
+ * SA access to the sql server (for creation or deletion)
38
+ * change access to the database (for everything else)
39
+
40
+ # DONATE
41
+ Donations Accepted - If you enjoy using this product or it has saved you time and money in some way, please consider making a donation.
42
+ It helps keep to the product updated, pays for site hosting, etc. https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9831498
43
+
44
+ # RELEASE NOTES
45
+ =0.5.0.188=
46
+ * RH handles nonsupported DDL transactions. RH will also stop and inform the user when DDL transactions are not supported, so user can choose to continue - see [issue 28](http://code.google.com/p/roundhouse/issues/detail?id=28) for details. (r172 - branch, r185)
47
+ * RH logs when errors occur in the RoundhousE.ScriptRunErrors table - see [issue 28](http://code.google.com/p/roundhouse/issues/detail?id=28) for details. (r167 - branch, r185)
48
+ * RH supports SQL Server 2000 - see [issue 30](http://code.google.com/p/roundhouse/issues/detail?id=30) for details. (r167 - branch, r185)
49
+ * RH supports Oracle - see [issue 34](http://code.google.com/p/roundhouse/issues/detail?id=34) for details. (r157 - branch, r185)
50
+
51
+ =0.2.0.175=
52
+ * RH should handle when user names have apostrophes (') in them - see [issue 32](http://code.google.com/p/roundhouse/issues/detail?id=32) for details. (r175)
53
+ * Database names should have delimiters to allow for non standard characters - see [issue 31](http://code.google.com/p/roundhouse/issues/detail?id=31) for details. (r174)
54
+ * Added autowiring permissions sample. (r169)
55
+ * If copying to change output fails, log a warning and move on. (r156)
56
+
57
+ =0.2.0.150=
58
+ * Turning off batch splitting where it is not necessary as it does affect performance. (r150)
59
+ * Splitting statements on GO has been enhanced to catch end of file GOs - see [issue 25](http://code.google.com/p/roundhouse/issues/detail?id=25) for details. (r149)
60
+
61
+ =0.2.0.148=
62
+ * Splitting statements on GO has been enhanced - see [issue 25](http://code.google.com/p/roundhouse/issues/detail?id=25) for details. (r147)
63
+
64
+ =0.2.0.144=
65
+ * Splitting statements on GO is now a two-phased approach - see [issue 25](http://code.google.com/p/roundhouse/issues/detail?id=25) for details. (r143)
66
+ * Trying out StructureMap (r136)
67
+
68
+ =0.2.0.131=
69
+ * More fine-grained splitting by the word GO - see [issue 25](http://code.google.com/p/roundhouse/issues/detail?id=25) for details. (r130)
70
+ * Command timeout became more explicit so database decorators can access and manipulate the value now. (r129)
71
+ * RH should be able to use ADO.NET instead of SMO for SqlServer - see [issue 22](http://code.google.com/p/roundhouse/issues/detail?id=22) for details. (r125)
72
+ * Option not to create a database if none exists - see [issue 24](http://code.google.com/p/roundhouse/issues/detail?id=24) for details. (r123)
73
+ * Console should exit with an error code instead of crashing on errors - see [issue 23](http://code.google.com/p/roundhouse/issues/detail?id=23) for details. (r119)
74
+
75
+ =0.2.0.117=
76
+ * Restore timeouts can now be specified (with a default timeout of 900 seconds) - see [issue 21](http://code.google.com/p/roundhouse/issues/detail?id=21) for details. (r117)
77
+ * Custom database create scripts are now possible - see [issue 20](http://code.google.com/p/roundhouse/issues/detail?id=20) for details. (r116)
78
+ * All types of migrations will split sql statements from files that have more than one statement into multiple statements and run each consecutively - see [issue 27](http://code.google.com/p/roundhouse/issues/detail?id=17) for details. (r113)
79
+ * Fixed issue with running roundhouse twice during MSBuild - see [issue 16](http://code.google.com/p/roundhouse/issues/detail?id=16) for details. (r112)
80
+
81
+ =0.2.0.108=
82
+ * Reports version during run - see [issue 9](http://code.google.com/p/roundhouse/issues/detail?id=9) for details. (r108)
83
+ * Logs what type of script it is looking for and where it is looking for them - see [issue 14](http://code.google.com/p/roundhouse/issues/detail?id=14) for details. (r107)
84
+ * Removed double error reporting on exception. (r107)
85
+ * Adding getting started documentation
86
+ * Added a custom restore option to add additional arguments (like MOVE) to a restore - see [issue 12](http://code.google.com/p/roundhouse/issues/detail?id=12) for details. (r104)
87
+ * Fixed a connection string initialization issue (r103)
88
+
89
+ =0.2.0.101=
90
+ * File Sorting - Fixed a sorting issue with file names to do explicit sorting. (r101)
91
+ * RH has an icon of the logo (r99)
92
+
93
+ =0.2.0.97=
94
+ * OleDB Support - RH can now be run for advanced database connections with a connection string. (r96)
95
+ - OleDB may not support creating/restoring/deleting databases.
96
+ - Microsoft Access is supported through OleDB.
97
+ - Other databases will need to have scripts written for their type before they would be supported.
98
+
99
+ =0.0.0.86=
100
+ * Environment awareness - RH determines an environment file first that it has ".ENV." in the file name and then if it is the proper environment file based on whether the file also contains the specific environment name. For example LOCAL.0001_DoSomething.ENV.sql will run in the LOCAL environment but no where else.
101
+ * Runs permissions files every time regardless of changes.
102
+
103
+ =0.0.0.85=
104
+ * Added synonyms for database types - see [issue 10](http://code.google.com/p/roundhouse/issues/detail?id=10) for details. (r85)
105
+ * Removed some of the logging - no more event logging for limited permissions running (r83)
106
+
107
+ =0.0.0.82=
108
+ * The command line version (rh.exe) is merged into a single assembly with all dependencies (except Microsoft.SQL dlls) internalized. No configuration file necessary either. (r77, r82)
109
+ * Log from console runner is now copied into the change_drop folder. (r81)
110
+ * Recovery mode is now explicit. Default is full. Otherwise pass in /simple - see [issue 8](http://code.google.com/p/roundhouse/issues/detail?id=8) for details. (r78)
111
+ * Excluded the drop database from transactions (not that you would call /drop with /t). (r76)
112
+
113
+ =0.0.0.74=
114
+ * Fixed an issue with holding connections - see [issue 7](http://code.google.com/p/roundhouse/issues/detail?id=7) for details. (r74)
115
+ * Added the ability to run with transactions
116
+
117
+ # CREDITS
118
+ UppercuT - Automated Builds (automated build in 10 minutes or less?!) [http://projectuppercut.org](http://projectuppercut.org)
metadata CHANGED
@@ -1,29 +1,32 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roundhouse
3
3
  version: !ruby/object:Gem::Version
4
- hash: 445
4
+ hash: 387
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
9
  - 0
10
- - 237
11
- version: 0.5.0.237
10
+ - 242
11
+ version: 0.5.0.242
12
12
  platform: ruby
13
13
  authors:
14
14
  - Rob "FerventCoder" Reynolds
15
+ - Pascal Mestdach
16
+ - Jochen Jonckheere
17
+ - Dru Sellers
15
18
  autorequire:
16
19
  bindir: bin
17
20
  cert_chain: []
18
21
 
19
- date: 2010-07-14 00:00:00 -05:00
22
+ date: 2010-07-15 00:00:00 -05:00
20
23
  default_executable:
21
24
  dependencies: []
22
25
 
23
- description: RoundhousE - Professional Database Change and Versioning Management
26
+ description: RoundhousE is a Professional Database Change and Versioning Management tool
24
27
  email: chucknorrisframework@googlegroups.com
25
28
  executables:
26
- - rh.exe
29
+ - rh
27
30
  extensions: []
28
31
 
29
32
  extra_rdoc_files: []
@@ -38,6 +41,8 @@ files:
38
41
  - lib/docs/RoundhousEPresentation.pptx
39
42
  - lib/LEGAL/LICENSE
40
43
  - lib/LEGAL/NOTICE
44
+ - lib/ReadMe.txt
45
+ - bin/rh
41
46
  - bin/rh.exe
42
47
  has_rdoc: true
43
48
  homepage: http://projectroundhouse.org