forge-cli 0.1.0 → 0.1.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/README.md +8 -4
- data/lib/forge/app/models/my_settings.rb +3 -1
- data/lib/forge/app/views/user_mailer/approved.html.haml +2 -2
- data/lib/forge/config/database.yml +24 -0
- data/lib/forge/config/deploy.rb +53 -0
- data/lib/forge/config/dispatch_daemon.yml +23 -0
- data/lib/forge/config/s3.yml +19 -0
- data/lib/forge/log/development.log +2 -0
- data/lib/forge/public/javascripts/ckeditor/config.js +4 -1
- data/lib/forge/script/dispatch_daemon_fetcher +28 -0
- data/lib/forge-cli/version.rb +1 -1
- metadata +107 -109
- checksums.yaml +0 -7
- data/bin/cucumber +0 -16
- data/bin/erubis +0 -16
- data/bin/htmldiff +0 -16
- data/bin/ldiff +0 -16
- data/bin/rackup +0 -16
- data/bin/rake +0 -16
- data/bin/rdoc +0 -16
- data/bin/ri +0 -16
- data/bin/sprockets +0 -16
- data/bin/thor +0 -16
- data/bin/tilt +0 -16
- data/bin/tt +0 -16
data/README.md
CHANGED
@@ -30,13 +30,13 @@ For example:
|
|
30
30
|
|
31
31
|
The gem will display next steps once you've created the application.
|
32
32
|
|
33
|
-
|
33
|
+
To install a module into an existing application use:
|
34
34
|
|
35
|
-
forge
|
35
|
+
forge install MODULE_NAME
|
36
36
|
|
37
|
-
|
37
|
+
You can see a list of available modules by running:
|
38
38
|
|
39
|
-
forge
|
39
|
+
forge list
|
40
40
|
|
41
41
|
### Scaffold Generation
|
42
42
|
|
@@ -57,10 +57,14 @@ As well as generating standard text fields as per Rails' normal behaviour, the s
|
|
57
57
|
* `title:string` (generates a large text field at the top of the form for the title)
|
58
58
|
* `ATTRIBUTE_file_name:string, ATTRIBUTE_file_size:integer, ATTRIBUTE_content_type:string` (generates Paperclip-styled attachments that hook into the Asset Library)
|
59
59
|
* `list_order:integer` (makes the list of items in Forge reorderable using drag & drop)
|
60
|
+
* `published:boolean` (creates a 'Published' selector that is only accessible by users with the Admin or Super Admin role)
|
60
61
|
|
61
62
|
You can also generate scaffolds for "small" entities, such as post categories, that have a streamlined interface as follows:
|
62
63
|
|
64
|
+
rails generate forge:scaffold_small MODEL_NAME LIST_OF_ATTRIBUTES_IN_STANDARD_RAILS_FORMAT
|
65
|
+
|
63
66
|
|
67
|
+
For either generator it is highly recommended that you include an attribute called "title" as it is relied on in the list views. If you don't wish to use "title" you can edit the generated views. This will likely be more customizable in the future.
|
64
68
|
|
65
69
|
## Available Modules
|
66
70
|
|
@@ -1,3 +1,3 @@
|
|
1
|
-
%p
|
1
|
+
%p Your user account has been approved!
|
2
2
|
|
3
|
-
%p You can now #{link_to "log in here", "#{MySettings.
|
3
|
+
%p You can now #{link_to "log in here", "#{MySettings.full_url}/login"}.
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3-ruby (not necessary on OS X Leopard)
|
3
|
+
development:
|
4
|
+
adapter: postgresql
|
5
|
+
encoding: utf8
|
6
|
+
database: forge4_development
|
7
|
+
|
8
|
+
# Warning: The database defined as "test" will be erased and
|
9
|
+
# re-generated from your development database when you run "rake".
|
10
|
+
# Do not set this db to the same as development or production.
|
11
|
+
test:
|
12
|
+
adapter: postgresql
|
13
|
+
encoding: utf8
|
14
|
+
database: forge4_test
|
15
|
+
|
16
|
+
production:
|
17
|
+
adapter: mysql2
|
18
|
+
encoding: utf8
|
19
|
+
reconnect: true
|
20
|
+
database: _production
|
21
|
+
pool: 5
|
22
|
+
username:
|
23
|
+
password:
|
24
|
+
host: 10.200.113.226
|
@@ -0,0 +1,53 @@
|
|
1
|
+
default_run_options[:pty] = true
|
2
|
+
default_run_options[:shell] = '/bin/bash --login'
|
3
|
+
|
4
|
+
set :application, "" # The name of the application
|
5
|
+
set :repository, "git@github.com:factore/#{application}.git" # Path to the github repo
|
6
|
+
# set :repository, "git@bitbucket.org:factore/#{application}.git" # Path to the bitbucket repo
|
7
|
+
|
8
|
+
set :scm, "git"
|
9
|
+
set :scm_passphrase, "9shwartz90005"
|
10
|
+
set :user, "deploy"
|
11
|
+
set :deploy_via, :remote_cache
|
12
|
+
set :bundle_without, [:darwin, :development, :test, :linux]
|
13
|
+
|
14
|
+
set :deploy_to, "/var/apps/#{application}"
|
15
|
+
|
16
|
+
role :web, "metal1.factore.ca", "metal2.factore.ca"
|
17
|
+
role :db, "metal1.factore.ca", :primary => true
|
18
|
+
|
19
|
+
before("deploy:assets:precompile") { run "cd #{current_release}; cp config/database.yml.template config/database.yml" }
|
20
|
+
# Uncomment this line if the app uses ferret_server
|
21
|
+
# after("deploy:symlink") { run "chmod +rx #{current_path}/script/ferret_server" }
|
22
|
+
after("deploy:restart", "deploy:expire_cache")
|
23
|
+
|
24
|
+
# Clean up!
|
25
|
+
set :use_sudo, false
|
26
|
+
set :keep_releases, 2
|
27
|
+
after "deploy", "deploy:cleanup"
|
28
|
+
after "deploy:migrate", "deploy:cleanup"
|
29
|
+
|
30
|
+
|
31
|
+
# Passenger Stuff and Cache Expiry
|
32
|
+
namespace :deploy do
|
33
|
+
desc "Restarting mod_rails with restart.txt"
|
34
|
+
task :restart, :roles => :web, :except => { :no_release => true } do
|
35
|
+
run "touch #{current_path}/tmp/restart.txt"
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
[:start, :stop].each do |t|
|
40
|
+
desc "#{t} task is a no-op with mod_rails"
|
41
|
+
task t, :roles => :web do ; end
|
42
|
+
end
|
43
|
+
|
44
|
+
desc "Expire the cache"
|
45
|
+
task :expire_cache, :roles => :db do
|
46
|
+
run "cd /var/apps/#{application}/current; bundle exec rake forge:expire_cache RAILS_ENV=production;"
|
47
|
+
end
|
48
|
+
|
49
|
+
desc "Deploy Forge"
|
50
|
+
task :deploy_forge, :roles => :db do
|
51
|
+
run "cd #{current_release}; bundle exec rake forge:deploy RAILS_ENV=production PASSWORD=#{ENV['PASSWORD']}; bundle exec rake forge:load_help RAILS_ENV=production"
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
defaults: &defaults
|
2
|
+
type: pop # pop OR imap
|
3
|
+
server: pop.emailsrvr.com # server hostname
|
4
|
+
port: # 993 for IMAPs
|
5
|
+
ssl: false # Remove if not using SSL
|
6
|
+
username: forgetest-ca@forgemail.ca # Username
|
7
|
+
password: DdQhbTPE # Password
|
8
|
+
receiver: DispatchMailer # ActionMailer that will receive mail
|
9
|
+
use_login: true # Required for GMAIL
|
10
|
+
sleep_time: 60 # Poll Frequency. 60 seconds by default
|
11
|
+
authentication: # LOGIN, CRAM-MD5, PASSWORD (IMAP Only)
|
12
|
+
|
13
|
+
development:
|
14
|
+
<<: *defaults
|
15
|
+
# Override other values here
|
16
|
+
|
17
|
+
test:
|
18
|
+
<<: *defaults
|
19
|
+
# Override other values here
|
20
|
+
|
21
|
+
production:
|
22
|
+
<<: *defaults
|
23
|
+
# Override other values here
|
@@ -0,0 +1,19 @@
|
|
1
|
+
development:
|
2
|
+
bucket: forge3_development
|
3
|
+
access_key_id: AKIAI6K5OJBKKW2OCSBQ
|
4
|
+
secret_access_key: 7Be6P/8QjQfQ9NcRpaAk5IcGKBBsjMF/kDX1F1ap
|
5
|
+
|
6
|
+
test:
|
7
|
+
bucket: forge3_test
|
8
|
+
access_key_id: AKIAI6K5OJBKKW2OCSBQ
|
9
|
+
secret_access_key: 7Be6P/8QjQfQ9NcRpaAk5IcGKBBsjMF/kDX1F1ap
|
10
|
+
|
11
|
+
production:
|
12
|
+
bucket: forge3_production
|
13
|
+
access_key_id: AKIAI6K5OJBKKW2OCSBQ
|
14
|
+
secret_access_key: 7Be6P/8QjQfQ9NcRpaAk5IcGKBBsjMF/kDX1F1ap
|
15
|
+
|
16
|
+
encoded:
|
17
|
+
bucket: forge3_encoded
|
18
|
+
access_key_id: AKIAI6K5OJBKKW2OCSBQ
|
19
|
+
secret_access_key: 7Be6P/8QjQfQ9NcRpaAk5IcGKBBsjMF/kDX1F1ap
|
@@ -0,0 +1,2 @@
|
|
1
|
+
DEPRECATION WARNING: String based terminators are deprecated, please use a lambda. (called from define_paperclip_callbacks at /Users/adrianduyzer/www/forge/lib/forge/vendor/ruby/2.0.0/gems/paperclip-3.3.1/lib/paperclip/callbacks.rb:10)
|
2
|
+
DEPRECATION WARNING: String based terminators are deprecated, please use a lambda. (called from define_paperclip_callbacks at /Users/adrianduyzer/www/forge/lib/forge/vendor/ruby/2.0.0/gems/paperclip-3.3.1/lib/paperclip/callbacks.rb:10)
|
@@ -14,6 +14,9 @@ CKEDITOR.editorConfig = function( config )
|
|
14
14
|
|
15
15
|
config.height = '400px';
|
16
16
|
|
17
|
+
// remove collapsible toolbars so that it fits on one line
|
18
|
+
config.toolbarCanCollapse = false;
|
19
|
+
|
17
20
|
//config.resize_enabled = false;
|
18
21
|
//config.resize_maxHeight = 2000;
|
19
22
|
//config.resize_maxWidth = 750;
|
@@ -41,4 +44,4 @@ CKEDITOR.editorConfig = function( config )
|
|
41
44
|
|
42
45
|
config.toolbar_Basic =
|
43
46
|
[['Bold','Italic','Underline','Strike','BulletedList', 'NumberedList', 'BlockQuote'],['PasteText', 'ForgeAssets','Link','Unlink','Embed'],['Format','RemoveFormat'],['Source']];
|
44
|
-
};
|
47
|
+
};
|
@@ -0,0 +1,28 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require File.dirname(__FILE__) + '/../config/environment.rb'
|
3
|
+
require 'daemon'
|
4
|
+
|
5
|
+
class DispatchDaemonFetcherDaemon < Daemon::Base
|
6
|
+
|
7
|
+
@config = YAML.load_file("#{Rails.root}/config/dispatch_daemon.yml")
|
8
|
+
@config = @config[Rails.env].to_options
|
9
|
+
|
10
|
+
@sleep_time = @config.delete(:sleep_time) || 60
|
11
|
+
def self.start
|
12
|
+
puts "Starting DispatchDaemonFetcherDaemon"
|
13
|
+
# Add your own receiver object below
|
14
|
+
@fetcher = Fetcher.create({:receiver => DispatchMailer}.merge(@config))
|
15
|
+
|
16
|
+
loop do
|
17
|
+
@fetcher.fetch
|
18
|
+
sleep(@sleep_time)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def self.stop
|
23
|
+
puts "Stopping DispatchDaemonFetcherDaemon"
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
DispatchDaemonFetcherDaemon.daemonize
|
data/lib/forge-cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,120 +1,105 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: forge-cli
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
5
10
|
platform: ruby
|
6
|
-
authors:
|
11
|
+
authors:
|
7
12
|
- factor[e] design initiative
|
8
13
|
autorequire:
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
16
|
+
|
17
|
+
date: 2013-09-16 00:00:00 -04:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
14
21
|
name: rake
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - '>='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :development
|
21
22
|
prerelease: false
|
22
|
-
|
23
|
-
requirements:
|
24
|
-
- -
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
|
27
|
-
-
|
28
|
-
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - '>='
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
version: "0"
|
34
30
|
type: :development
|
31
|
+
version_requirements: *id001
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: rdoc
|
35
34
|
prerelease: false
|
36
|
-
|
37
|
-
requirements:
|
38
|
-
- -
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
|
41
|
-
-
|
42
|
-
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - '>='
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
35
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
segments:
|
40
|
+
- 0
|
41
|
+
version: "0"
|
48
42
|
type: :development
|
43
|
+
version_requirements: *id002
|
44
|
+
- !ruby/object:Gem::Dependency
|
45
|
+
name: aruba
|
49
46
|
prerelease: false
|
50
|
-
|
51
|
-
requirements:
|
52
|
-
- -
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
|
55
|
-
-
|
47
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
segments:
|
52
|
+
- 0
|
53
|
+
version: "0"
|
54
|
+
type: :development
|
55
|
+
version_requirements: *id003
|
56
|
+
- !ruby/object:Gem::Dependency
|
56
57
|
name: rails
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - '='
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '4.0'
|
62
|
-
type: :runtime
|
63
58
|
prerelease: false
|
64
|
-
|
65
|
-
requirements:
|
66
|
-
- -
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
|
69
|
-
-
|
70
|
-
|
71
|
-
|
72
|
-
requirements:
|
73
|
-
- - '>='
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
59
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - "="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
segments:
|
64
|
+
- 4
|
65
|
+
- 0
|
66
|
+
version: "4.0"
|
76
67
|
type: :runtime
|
68
|
+
version_requirements: *id004
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rainbow
|
77
71
|
prerelease: false
|
78
|
-
|
79
|
-
requirements:
|
80
|
-
- -
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
|
83
|
-
-
|
84
|
-
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - '>='
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
72
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
version: "0"
|
90
79
|
type: :runtime
|
80
|
+
version_requirements: *id005
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: thor
|
91
83
|
prerelease: false
|
92
|
-
|
93
|
-
requirements:
|
94
|
-
- -
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
|
84
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
segments:
|
89
|
+
- 0
|
90
|
+
version: "0"
|
91
|
+
type: :runtime
|
92
|
+
version_requirements: *id006
|
97
93
|
description:
|
98
94
|
email: sean@factore.ca
|
99
|
-
executables:
|
95
|
+
executables:
|
100
96
|
- forge
|
101
97
|
extensions: []
|
102
|
-
|
98
|
+
|
99
|
+
extra_rdoc_files:
|
103
100
|
- README.md
|
104
|
-
files:
|
105
|
-
- bin/cucumber
|
106
|
-
- bin/erubis
|
101
|
+
files:
|
107
102
|
- bin/forge
|
108
|
-
- bin/htmldiff
|
109
|
-
- bin/ldiff
|
110
|
-
- bin/rackup
|
111
|
-
- bin/rake
|
112
|
-
- bin/rdoc
|
113
|
-
- bin/ri
|
114
|
-
- bin/sprockets
|
115
|
-
- bin/thor
|
116
|
-
- bin/tilt
|
117
|
-
- bin/tt
|
118
103
|
- lib/forge/app/abilities/video_ability.rb
|
119
104
|
- lib/forge/app/assets/javascripts/app.js
|
120
105
|
- lib/forge/app/assets/javascripts/application.js
|
@@ -459,7 +444,10 @@ files:
|
|
459
444
|
- lib/forge/Capfile
|
460
445
|
- lib/forge/config/application.rb
|
461
446
|
- lib/forge/config/boot.rb
|
447
|
+
- lib/forge/config/database.yml
|
462
448
|
- lib/forge/config/database.yml.template
|
449
|
+
- lib/forge/config/deploy.rb
|
450
|
+
- lib/forge/config/dispatch_daemon.yml
|
463
451
|
- lib/forge/config/environment.rb
|
464
452
|
- lib/forge/config/environments/development.rb
|
465
453
|
- lib/forge/config/environments/production.rb
|
@@ -481,6 +469,7 @@ files:
|
|
481
469
|
- lib/forge/config/locales/devise.en.yml
|
482
470
|
- lib/forge/config/locales/en.yml
|
483
471
|
- lib/forge/config/routes.rb
|
472
|
+
- lib/forge/config/s3.yml
|
484
473
|
- lib/forge/config/s3.yml.template
|
485
474
|
- lib/forge/config/settings.yml
|
486
475
|
- lib/forge/config/settings.yml.template
|
@@ -699,6 +688,7 @@ files:
|
|
699
688
|
- lib/forge/lib/recipes/aaf_recipes.rb
|
700
689
|
- lib/forge/lib/tasks/forge.rake
|
701
690
|
- lib/forge/lib/templates/active_record/model/model.rb
|
691
|
+
- lib/forge/log/development.log
|
702
692
|
- lib/forge/public/404.html
|
703
693
|
- lib/forge/public/422.html
|
704
694
|
- lib/forge/public/500.html
|
@@ -1308,6 +1298,7 @@ files:
|
|
1308
1298
|
- lib/forge/public/robots.txt
|
1309
1299
|
- lib/forge/Rakefile
|
1310
1300
|
- lib/forge/script/delayed_job
|
1301
|
+
- lib/forge/script/dispatch_daemon_fetcher
|
1311
1302
|
- lib/forge/script/ferret_server
|
1312
1303
|
- lib/forge/script/rails
|
1313
1304
|
- lib/forge/spec/controllers/contact_controller_spec.rb
|
@@ -1461,33 +1452,40 @@ files:
|
|
1461
1452
|
- lib/forge-cli/version.rb
|
1462
1453
|
- lib/forge-cli.rb
|
1463
1454
|
- README.md
|
1455
|
+
has_rdoc: true
|
1464
1456
|
homepage: http://factore.ca/forge-cms
|
1465
1457
|
licenses: []
|
1466
|
-
|
1458
|
+
|
1467
1459
|
post_install_message:
|
1468
|
-
rdoc_options:
|
1460
|
+
rdoc_options:
|
1469
1461
|
- --title
|
1470
1462
|
- forge-cli
|
1471
1463
|
- --main
|
1472
1464
|
- README.rdoc
|
1473
1465
|
- -ri
|
1474
|
-
require_paths:
|
1466
|
+
require_paths:
|
1475
1467
|
- lib
|
1476
1468
|
- lib
|
1477
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
1478
|
-
requirements:
|
1479
|
-
- -
|
1480
|
-
- !ruby/object:Gem::Version
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1469
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1470
|
+
requirements:
|
1471
|
+
- - ">="
|
1472
|
+
- !ruby/object:Gem::Version
|
1473
|
+
segments:
|
1474
|
+
- 0
|
1475
|
+
version: "0"
|
1476
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1477
|
+
requirements:
|
1478
|
+
- - ">="
|
1479
|
+
- !ruby/object:Gem::Version
|
1480
|
+
segments:
|
1481
|
+
- 0
|
1482
|
+
version: "0"
|
1487
1483
|
requirements: []
|
1484
|
+
|
1488
1485
|
rubyforge_project:
|
1489
|
-
rubygems_version:
|
1486
|
+
rubygems_version: 1.3.6
|
1490
1487
|
signing_key:
|
1491
|
-
specification_version:
|
1492
|
-
summary:
|
1488
|
+
specification_version: 3
|
1489
|
+
summary: "Forge: A CMS for Rapid Application Development"
|
1493
1490
|
test_files: []
|
1491
|
+
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: e10ec0676cc31af13d158fae4cbfd36751bb7b6c
|
4
|
-
data.tar.gz: 2459df7caa0e5c5db327afaefa4c9d7c9b464ae2
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: c53dd6ce30134a189abd235fd26543cde5157ce99daf8e016c4f407041fae7b03df3bd17effac3f5480364370d915f7a87bf2c88afc3ba747500a255289c0d9e
|
7
|
-
data.tar.gz: 38fd8650401584d9f884d5144dad934450faf64ae45d95cc5d62fac30a1ef99715592b89bb102f63b7f4566a363c1f672ab25996bb0ffa6bb1843a37f7b661cf
|
data/bin/cucumber
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'cucumber' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('cucumber', 'cucumber')
|
data/bin/erubis
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'erubis' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('erubis', 'erubis')
|
data/bin/htmldiff
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'htmldiff' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('diff-lcs', 'htmldiff')
|
data/bin/ldiff
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'ldiff' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('diff-lcs', 'ldiff')
|
data/bin/rackup
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rackup' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rack', 'rackup')
|
data/bin/rake
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rake' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rake', 'rake')
|
data/bin/rdoc
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rdoc' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rdoc', 'rdoc')
|
data/bin/ri
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'ri' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rdoc', 'ri')
|
data/bin/sprockets
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'sprockets' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('sprockets', 'sprockets')
|
data/bin/thor
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'thor' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('thor', 'thor')
|
data/bin/tilt
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'tilt' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('tilt', 'tilt')
|
data/bin/tt
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'tt' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('treetop', 'tt')
|