baldwin 0.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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +32 -0
- data/Rakefile +2 -0
- data/baldwin.gemspec +19 -0
- data/lib/baldwin/setup.rb +11 -0
- data/lib/baldwin/tasks.rb +29 -0
- data/lib/baldwin/version.rb +3 -0
- data/lib/baldwin.rb +5 -0
- metadata +71 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Jeremy Ruppel
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# Baldwin
|
2
|
+
|
3
|
+
**TODO:** provide a default rails template
|
4
|
+
**TODO:** add generated rails apps to .gitignore
|
5
|
+
|
6
|
+
TODO: Write a gem description
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
gem 'baldwin'
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install baldwin
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
TODO: Write usage instructions here
|
25
|
+
|
26
|
+
## Contributing
|
27
|
+
|
28
|
+
1. Fork it
|
29
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
30
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
31
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
32
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/baldwin.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/baldwin/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Jeremy Ruppel"]
|
6
|
+
gem.email = ["jeremy.ruppel@gmail.com"]
|
7
|
+
gem.description = %q{Bootstrap testing your rails 3 engine}
|
8
|
+
gem.summary = %q{Bootstrap testing your rails 3 engine}
|
9
|
+
gem.homepage = "https://github.com/jeremyruppel/baldwin"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "baldwin"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Baldwin::VERSION
|
17
|
+
|
18
|
+
gem.add_dependency 'appraisal', '>= 0.4.1'
|
19
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Set the environment variables for the test app
|
2
|
+
ENV[ 'RAILS_ENV' ] = 'test'
|
3
|
+
|
4
|
+
# Add the test app to the load path
|
5
|
+
$: << ENV[ 'BALDWIN_RAILS_PATH' ]
|
6
|
+
|
7
|
+
# Require all dependencies
|
8
|
+
Bundler.require
|
9
|
+
|
10
|
+
# Boot the rails app
|
11
|
+
require 'config/environment'
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'appraisal'
|
2
|
+
|
3
|
+
include Rake::DSL
|
4
|
+
|
5
|
+
namespace :baldwin do
|
6
|
+
|
7
|
+
desc "Set up current environment variables"
|
8
|
+
task :env do
|
9
|
+
require 'rails/version'
|
10
|
+
ENV[ 'BALDWIN_RAILS_NAME' ] = "rails-#{Rails::VERSION::STRING}"
|
11
|
+
ENV[ 'BALDWIN_RAILS_PATH' ] = "spec/rails/#{ENV[ 'BALDWIN_RAILS_NAME' ]}"
|
12
|
+
end
|
13
|
+
|
14
|
+
desc "Remove all test rails apps"
|
15
|
+
task :clean => [ :env ] do
|
16
|
+
Dir[ 'spec/rails/rails-*' ].each do |app|
|
17
|
+
FileUtils.rm_rf app
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
desc "Create a test rails app if necessary"
|
22
|
+
task :rails => [ :env ] do
|
23
|
+
if File.exist? ENV[ 'BALDWIN_RAILS_PATH' ]
|
24
|
+
puts "Using existing #{ENV[ 'BALDWIN_RAILS_NAME' ]} app"
|
25
|
+
else
|
26
|
+
sh "bundle exec rails new #{ENV[ 'BALDWIN_RAILS_PATH' ]} -m spec/support/rails_template.rb"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
data/lib/baldwin.rb
ADDED
metadata
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: baldwin
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jeremy Ruppel
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-05-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: appraisal
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.4.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.4.1
|
30
|
+
description: Bootstrap testing your rails 3 engine
|
31
|
+
email:
|
32
|
+
- jeremy.ruppel@gmail.com
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- Gemfile
|
39
|
+
- LICENSE
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- baldwin.gemspec
|
43
|
+
- lib/baldwin.rb
|
44
|
+
- lib/baldwin/setup.rb
|
45
|
+
- lib/baldwin/tasks.rb
|
46
|
+
- lib/baldwin/version.rb
|
47
|
+
homepage: https://github.com/jeremyruppel/baldwin
|
48
|
+
licenses: []
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
61
|
+
requirements:
|
62
|
+
- - ! '>='
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
requirements: []
|
66
|
+
rubyforge_project:
|
67
|
+
rubygems_version: 1.8.19
|
68
|
+
signing_key:
|
69
|
+
specification_version: 3
|
70
|
+
summary: Bootstrap testing your rails 3 engine
|
71
|
+
test_files: []
|