vagrant-rubymine 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +22 -0
- data/README.md +64 -0
- data/Rakefile +10 -0
- data/lib/vagrant/rubymine.rb +10 -0
- data/lib/vagrant/rubymine/bash_profile.rb +33 -0
- data/lib/vagrant/rubymine/config.rb +15 -0
- data/lib/vagrant/rubymine/middleware.rb +62 -0
- data/lib/vagrant/rubymine/plugin.rb +27 -0
- data/lib/vagrant/rubymine/rubymine_conf.rb +83 -0
- data/lib/vagrant/rubymine/version.rb +5 -0
- data/test/.test_rubymine_config_dir/config/options/gemmanager.xml +1425 -0
- data/test/.test_rubymine_config_dir/config/options/other.xml +66 -0
- data/test/test_bash_profile.rb +37 -0
- data/test/test_rubymine_conf.rb +41 -0
- data/vagrant-rubymine.gemspec +20 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1a3efa78547f90269d0dbc5c8f8129c013893b08
|
4
|
+
data.tar.gz: 6a818a1d30dc6336ebf7c4c34ea30c9f0b8d2754
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bf513c7e55db65887b5694e50b9d89afa49d539bebcc7cca3b9d80200452db5d165241a476ef5ba1b7c93ab22c8578c1638ef34366bc131d5d774cfbeb61ca4e
|
7
|
+
data.tar.gz: f50ed45276945b1580a4b098962af44af5f0b8cebc211bf4207e63999c51020787e72462736c491fb7cb6a65ea5f5dfd595457ccb1e6c0a815d4ef0485247417
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Bartosz Jaroszewski
|
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,64 @@
|
|
1
|
+
# Vagrant Rubymine
|
2
|
+
|
3
|
+
This plugin creates an environment variables on guest machine with paths to your Rubymine projects and its gems directory on host machine. Paths are read from Rubymine configuration.
|
4
|
+
|
5
|
+
Variables naming convention (e.g. for project named "sample"):
|
6
|
+
```
|
7
|
+
sample_path # path to your project
|
8
|
+
sample_gems_path # path to your project's gems
|
9
|
+
```
|
10
|
+
|
11
|
+
## Requirments
|
12
|
+
|
13
|
+
This is first version tested on Rubymine 7.0.4 and Vagrant 1.7.2. If you need support for other version you can submit an issue.
|
14
|
+
|
15
|
+
## Installation
|
16
|
+
|
17
|
+
Execute:
|
18
|
+
```
|
19
|
+
$ vagrant plugin install vagrant-rubymine
|
20
|
+
```
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
After login on your guest machine you can use variables with your projects' paths, e.g:
|
25
|
+
```
|
26
|
+
$ echo $sample_path
|
27
|
+
$ echo $sample_gems_dir
|
28
|
+
```
|
29
|
+
|
30
|
+
You can use it to configure [charliesome/better_errors] (https://github.com/charliesome/better_errors):
|
31
|
+
```ruby
|
32
|
+
# initializers/better_errors.rb
|
33
|
+
|
34
|
+
if defined? BetterErrors
|
35
|
+
# Opening files
|
36
|
+
BetterErrors.editor = proc do |full_path, line|
|
37
|
+
project_name = Rails.root.to_s.split('/').last.downcase
|
38
|
+
project_path = ENV["#{project_name}_path"]
|
39
|
+
gems_path = ENV["#{project_name}_gems_path"]
|
40
|
+
|
41
|
+
if project_path && full_path =~ /#{Rails.root.to_s}/
|
42
|
+
full_path = full_path.sub(Rails.root.to_s, project_path).sub('/', '\\')
|
43
|
+
elsif gems_path && full_path =~ /#{Gem.dir}/
|
44
|
+
full_path = full_path.sub("#{Gem.dir}/gems", gems_path).sub('/', '\\')
|
45
|
+
end
|
46
|
+
|
47
|
+
"runapp://rubymine?project_path=#{project_path}&line=#{line}&file_path=#{full_path}"
|
48
|
+
end
|
49
|
+
|
50
|
+
# Allowing host
|
51
|
+
host = ENV["SSH_CLIENT"] ? ENV["SSH_CLIENT"].match(/\A([^\s]*)/)[1] : nil
|
52
|
+
BetterErrors::Middleware.allow_ip! host if [:development, :test].member?(Rails.env.to_sym) && host
|
53
|
+
end
|
54
|
+
|
55
|
+
```
|
56
|
+
|
57
|
+
|
58
|
+
## Contributing
|
59
|
+
|
60
|
+
1. Fork it ( https://github.com/bjarosze/vagrant-rubymine/fork )
|
61
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
62
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
63
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
64
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
module Vagrant
|
2
|
+
module Rubymine
|
3
|
+
class BashProfile
|
4
|
+
|
5
|
+
def initialize(profile_path)
|
6
|
+
@profile_path = profile_path
|
7
|
+
@commands = []
|
8
|
+
end
|
9
|
+
|
10
|
+
def add_command(command)
|
11
|
+
@commands << "echo \"#{escape_shell(command)}\" >> \"#{@profile_path}\""
|
12
|
+
end
|
13
|
+
|
14
|
+
def apply(&block)
|
15
|
+
@commands.each do |command|
|
16
|
+
block.call(command)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def create_profile
|
21
|
+
@commands << "rm -f #{@profile_path}"
|
22
|
+
@commands << "touch #{@profile_path}"
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def escape_shell(content)
|
28
|
+
content.gsub(/["`\\]/, '\\\\\0')
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module Vagrant
|
2
|
+
module Rubymine
|
3
|
+
class Config < Vagrant.plugin(2, :config)
|
4
|
+
attr_accessor :config_path
|
5
|
+
|
6
|
+
def initialize
|
7
|
+
@config_path = UNSET_VALUE
|
8
|
+
end
|
9
|
+
|
10
|
+
def finalize!
|
11
|
+
@config_path = nil if @config_path == UNSET_VALUE
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require_relative 'rubymine_conf'
|
2
|
+
require_relative 'bash_profile'
|
3
|
+
|
4
|
+
module Vagrant
|
5
|
+
module Rubymine
|
6
|
+
class Middleware
|
7
|
+
|
8
|
+
PROFILE_PATH = '/etc/profile.d/vagrant-rubymine.sh'
|
9
|
+
|
10
|
+
def initialize(app, env)
|
11
|
+
@app = app
|
12
|
+
end
|
13
|
+
|
14
|
+
def call(env)
|
15
|
+
@machine = env[:machine]
|
16
|
+
setup
|
17
|
+
@app.call(env)
|
18
|
+
end
|
19
|
+
|
20
|
+
protected
|
21
|
+
|
22
|
+
def sudo(command)
|
23
|
+
@machine.communicate.sudo(command)
|
24
|
+
end
|
25
|
+
|
26
|
+
def config
|
27
|
+
@machine.config.rubymine
|
28
|
+
end
|
29
|
+
|
30
|
+
def setup
|
31
|
+
bash_profile = BashProfile.new(PROFILE_PATH)
|
32
|
+
bash_profile.create_profile
|
33
|
+
|
34
|
+
export_commands.each do |command|
|
35
|
+
bash_profile.add_command(command)
|
36
|
+
end
|
37
|
+
|
38
|
+
bash_profile.apply do |command|
|
39
|
+
sudo(command)
|
40
|
+
end
|
41
|
+
|
42
|
+
@machine.ui.success('Rubymine paths set!')
|
43
|
+
end
|
44
|
+
|
45
|
+
def export_commands
|
46
|
+
rubymine_conf = RubymineConf.new(config.config_path)
|
47
|
+
gems_paths = rubymine_conf.gems_paths
|
48
|
+
projects_paths = rubymine_conf.projects_paths
|
49
|
+
|
50
|
+
commands = []
|
51
|
+
|
52
|
+
gems_paths.each do |project_name, gems_path|
|
53
|
+
commands << "export #{project_name}_path=\"#{projects_paths[project_name]}\""
|
54
|
+
commands << "export #{project_name}_gems_path=\"#{gems_path}\""
|
55
|
+
end
|
56
|
+
|
57
|
+
commands
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Vagrant
|
2
|
+
module Rubymine
|
3
|
+
class Plugin < Vagrant.plugin('2')
|
4
|
+
name 'rubymine-env'
|
5
|
+
|
6
|
+
description <<-DESC
|
7
|
+
Creates environment variables with paths to Rubymine projects.
|
8
|
+
DESC
|
9
|
+
|
10
|
+
config(:rubymine) do
|
11
|
+
require_relative 'config'
|
12
|
+
Config
|
13
|
+
end
|
14
|
+
|
15
|
+
action_hook(:set_host_path_on_up, :machine_action_up) do |hook|
|
16
|
+
require_relative 'middleware'
|
17
|
+
hook.append(Middleware)
|
18
|
+
end
|
19
|
+
|
20
|
+
action_hook(:set_host_path_on_up, :machine_action_reload) do |hook|
|
21
|
+
require_relative 'middleware'
|
22
|
+
hook.append(Middleware)
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
require 'find'
|
2
|
+
require 'nokogiri'
|
3
|
+
|
4
|
+
module Vagrant
|
5
|
+
module Rubymine
|
6
|
+
|
7
|
+
class Error < StandardError; end
|
8
|
+
class ConfigNotFound < Error; end
|
9
|
+
|
10
|
+
class RubymineConf
|
11
|
+
|
12
|
+
GEM_MANAGER_PATH = '/config/options/gemmanager.xml'
|
13
|
+
OTHER_PATH = '/config/options/other.xml'
|
14
|
+
|
15
|
+
def initialize(root_path=nil)
|
16
|
+
@root_path = root_path || detect_root_path
|
17
|
+
raise ConfigNotFound, "#{config_gem_manager_path} or #{config_other_path}" if !valid?
|
18
|
+
end
|
19
|
+
|
20
|
+
def valid?
|
21
|
+
@root_path && File.exists?(config_gem_manager_path) && File.exists?(config_other_path)
|
22
|
+
end
|
23
|
+
|
24
|
+
def projects_paths
|
25
|
+
conf = parse(config_other_path)
|
26
|
+
conf.xpath("/application/component[@name='RecentDirectoryProjectsManager']/option[@name='recentPaths']/list/option").inject({}) do |result, option|
|
27
|
+
project_path = option.xpath('@value').map(&:value).first
|
28
|
+
project_name = project_path.split('\\').last
|
29
|
+
result[normalize_project_name(project_name)] = project_path.downcase
|
30
|
+
result
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def gems_paths
|
35
|
+
conf = parse(config_gem_manager_path)
|
36
|
+
conf.xpath('/application/component/sdk2gems').inject({}) do |result, sdk|
|
37
|
+
sdk_name = (sdk_attr = sdk.xpath('@sdk')).empty? ? nil : sdk_attr.first.value
|
38
|
+
if (match = sdk_name.match(/\[(.*)\]/))
|
39
|
+
project_name = match[1]
|
40
|
+
url_attr = sdk.xpath('box[1]/@url')
|
41
|
+
if (gems_path = url_attr.first.value)
|
42
|
+
gems_path = gems_path.gsub('file://$USER_HOME$', ENV['USERPROFILE']).gsub('/', '\\').downcase
|
43
|
+
result[normalize_project_name(project_name)] = gems_path
|
44
|
+
end
|
45
|
+
end
|
46
|
+
result
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
private
|
51
|
+
|
52
|
+
def normalize_project_name(project_name)
|
53
|
+
project_name.gsub('-', '_')
|
54
|
+
end
|
55
|
+
|
56
|
+
def config_gem_manager_path
|
57
|
+
@root_path + GEM_MANAGER_PATH
|
58
|
+
end
|
59
|
+
|
60
|
+
def config_other_path
|
61
|
+
@root_path + OTHER_PATH
|
62
|
+
end
|
63
|
+
|
64
|
+
def parse(file_path)
|
65
|
+
file = File.open(file_path)
|
66
|
+
Nokogiri::XML(file)
|
67
|
+
ensure
|
68
|
+
file.close
|
69
|
+
end
|
70
|
+
|
71
|
+
def detect_root_path
|
72
|
+
search_path = ENV['USERPROFILE']
|
73
|
+
Find.find(search_path) do |path|
|
74
|
+
if path =~ /.RubyMine/i
|
75
|
+
return "#{path}"
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,1425 @@
|
|
1
|
+
<application>
|
2
|
+
<component name="GemManagerSettings" libraryVersion="3">
|
3
|
+
<sdk2gems sdk="Remote-rvm:ruby-2.2.1-p85 [merca]">
|
4
|
+
<box url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems">
|
5
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/coffee-script-2.4.1" name="coffee-script" version="2.4.1" timestamp="1434899649000" parser_version="15" git="false">
|
6
|
+
<additional_info authors="Jeremy Ashkenas, Joshua Peek, Sam Stephenson" email="josh@joshpeek.com" homepage="http://github.com/josh/ruby-coffee-script">
|
7
|
+
<summary>Ruby CoffeeScript Compiler</summary>
|
8
|
+
</additional_info>
|
9
|
+
<dependency name="execjs" git="false" path="false" doRequire="true">
|
10
|
+
<bound version="0" bound="GREATER_OR_EQUAL" />
|
11
|
+
</dependency>
|
12
|
+
<dependency name="coffee-script-source" git="false" path="false" doRequire="true">
|
13
|
+
<bound version="0" bound="GREATER_OR_EQUAL" />
|
14
|
+
</dependency>
|
15
|
+
</gem>
|
16
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/arel-6.0.0" name="arel" version="6.0.0" timestamp="1434895815000" parser_version="15" git="false">
|
17
|
+
<additional_info authors="Aaron Patterson, Bryan Helmkamp, Emilio Tagua, Nick Kallen" email="aaron@tenderlovemaking.com, bryan@brynary.com, miloops@gmail.com" homepage="https://github.com/rails/arel">
|
18
|
+
<summary>Arel Really Exasperates Logicians Arel is a SQL AST manager for Ruby</summary>
|
19
|
+
</additional_info>
|
20
|
+
</gem>
|
21
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/sass-rails-5.0.3" name="sass-rails" version="5.0.3" timestamp="1434899666000" parser_version="15" git="false">
|
22
|
+
<additional_info authors="wycats, chriseppstein" email="wycats@gmail.com, chris@eppsteins.net" homepage="https://github.com/rails/sass-rails">
|
23
|
+
<summary>Sass adapter for the Rails asset pipeline.</summary>
|
24
|
+
</additional_info>
|
25
|
+
<dependency name="sass" git="false" path="false" doRequire="true">
|
26
|
+
<bound version="3.1" bound="LATEST_IN_BRANCH" />
|
27
|
+
</dependency>
|
28
|
+
<dependency name="sprockets-rails" git="false" path="false" doRequire="true">
|
29
|
+
<bound version="2.0" bound="GREATER_OR_EQUAL" />
|
30
|
+
<bound version="4.0" bound="LESS" />
|
31
|
+
</dependency>
|
32
|
+
<dependency name="sprockets" git="false" path="false" doRequire="true">
|
33
|
+
<bound version="2.8" bound="GREATER_OR_EQUAL" />
|
34
|
+
<bound version="4.0" bound="LESS" />
|
35
|
+
</dependency>
|
36
|
+
<dependency name="tilt" git="false" path="false" doRequire="true">
|
37
|
+
<bound version="1.1" bound="LATEST_IN_BRANCH" />
|
38
|
+
</dependency>
|
39
|
+
<dependency name="railties" git="false" path="false" doRequire="true">
|
40
|
+
<bound version="4.0.0" bound="GREATER_OR_EQUAL" />
|
41
|
+
<bound version="5.0" bound="LESS" />
|
42
|
+
</dependency>
|
43
|
+
</gem>
|
44
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/turbolinks-2.5.3" name="turbolinks" version="2.5.3" timestamp="1434899679000" parser_version="15" git="false">
|
45
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="https://github.com/rails/turbolinks/">
|
46
|
+
<summary>Turbolinks makes following links in your web application faster (use with Rails Asset Pipeline)</summary>
|
47
|
+
</additional_info>
|
48
|
+
<dependency name="coffee-rails" git="false" path="false" doRequire="true">
|
49
|
+
<bound version="0" bound="GREATER_OR_EQUAL" />
|
50
|
+
</dependency>
|
51
|
+
</gem>
|
52
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/rails-html-sanitizer-1.0.2" name="rails-html-sanitizer" version="1.0.2" timestamp="1434895804000" parser_version="15" git="false">
|
53
|
+
<additional_info authors="Rafael Mendon\u{e7}a Fran\u{e7}a, Kasper Timm Hansen" email="rafaelmfranca@gmail.com, kaspth@gmail.com" homepage="https://github.com/rafaelfranca/rails-html-sanitizer">
|
54
|
+
<summary>This gem is responsible to sanitize HTML fragments in Rails applications.</summary>
|
55
|
+
</additional_info>
|
56
|
+
<dependency name="loofah" git="false" path="false" doRequire="true">
|
57
|
+
<bound version="2.0" bound="LATEST_IN_BRANCH" />
|
58
|
+
</dependency>
|
59
|
+
</gem>
|
60
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/coderay-1.1.0" name="coderay" version="1.1.0" timestamp="1434901541000" parser_version="15" git="false">
|
61
|
+
<additional_info authors="Kornelius Kalnbach" email="murphy@rubychan.de" homepage="http://coderay.rubychan.de">
|
62
|
+
<summary>Fast syntax highlighting for selected languages.</summary>
|
63
|
+
</additional_info>
|
64
|
+
</gem>
|
65
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/uglifier-2.7.1" name="uglifier" version="2.7.1" timestamp="1434899681000" parser_version="15" git="false">
|
66
|
+
<additional_info authors="Ville Lautanala" email="lautis@gmail.com" homepage="http://github.com/lautis/uglifier">
|
67
|
+
<summary>Ruby wrapper for UglifyJS JavaScript compressor</summary>
|
68
|
+
</additional_info>
|
69
|
+
<dependency name="execjs" git="false" path="false" doRequire="true">
|
70
|
+
<bound version="0.3.0" bound="GREATER_OR_EQUAL" />
|
71
|
+
</dependency>
|
72
|
+
<dependency name="json" git="false" path="false" doRequire="true">
|
73
|
+
<bound version="1.8.0" bound="GREATER_OR_EQUAL" />
|
74
|
+
</dependency>
|
75
|
+
</gem>
|
76
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/better_errors-2.1.1" name="better_errors" version="2.1.1" timestamp="1434901542000" parser_version="15" git="false">
|
77
|
+
<additional_info authors="Charlie Somerville" email="charlie@charliesomerville.com" homepage="https://github.com/charliesome/better_errors">
|
78
|
+
<summary>Better error page for Rails and other Rack apps</summary>
|
79
|
+
</additional_info>
|
80
|
+
<dependency name="erubis" git="false" path="false" doRequire="true">
|
81
|
+
<bound version="2.6.6" bound="GREATER_OR_EQUAL" />
|
82
|
+
</dependency>
|
83
|
+
<dependency name="rack" git="false" path="false" doRequire="true">
|
84
|
+
<bound version="0.9.0" bound="GREATER_OR_EQUAL" />
|
85
|
+
</dependency>
|
86
|
+
<dependency name="coderay" git="false" path="false" doRequire="true">
|
87
|
+
<bound version="1.0.0" bound="GREATER_OR_EQUAL" />
|
88
|
+
</dependency>
|
89
|
+
</gem>
|
90
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/coffee-rails-4.1.0" name="coffee-rails" version="4.1.0" timestamp="1434899651000" parser_version="15" git="false">
|
91
|
+
<additional_info authors="Santiago Pastorino" email="santiago@wyeworks.com" homepage="https://github.com/rails/coffee-rails">
|
92
|
+
<summary>CoffeeScript adapter for the Rails asset pipeline.</summary>
|
93
|
+
</additional_info>
|
94
|
+
<dependency name="coffee-script" git="false" path="false" doRequire="true">
|
95
|
+
<bound version="2.2.0" bound="GREATER_OR_EQUAL" />
|
96
|
+
</dependency>
|
97
|
+
<dependency name="railties" git="false" path="false" doRequire="true">
|
98
|
+
<bound version="4.0.0" bound="GREATER_OR_EQUAL" />
|
99
|
+
<bound version="5.0" bound="LESS" />
|
100
|
+
</dependency>
|
101
|
+
</gem>
|
102
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/activesupport-4.2.2" name="activesupport" version="4.2.2" timestamp="1434895702000" parser_version="15" git="false">
|
103
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
104
|
+
<summary>A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.</summary>
|
105
|
+
</additional_info>
|
106
|
+
<dependency name="i18n" git="false" path="false" doRequire="true">
|
107
|
+
<bound version="0.7" bound="LATEST_IN_BRANCH" />
|
108
|
+
</dependency>
|
109
|
+
<dependency name="minitest" git="false" path="false" doRequire="true">
|
110
|
+
<bound version="5.1" bound="LATEST_IN_BRANCH" />
|
111
|
+
</dependency>
|
112
|
+
<dependency name="thread_safe" git="false" path="false" doRequire="true">
|
113
|
+
<bound version="0.3" bound="LATEST_IN_BRANCH" />
|
114
|
+
<bound version="0.3.4" bound="GREATER_OR_EQUAL" />
|
115
|
+
</dependency>
|
116
|
+
<dependency name="tzinfo" git="false" path="false" doRequire="true">
|
117
|
+
<bound version="1.1" bound="LATEST_IN_BRANCH" />
|
118
|
+
</dependency>
|
119
|
+
<dependency name="json" git="false" path="false" doRequire="true">
|
120
|
+
<bound version="1.7" bound="LATEST_IN_BRANCH" />
|
121
|
+
<bound version="1.7.7" bound="GREATER_OR_EQUAL" />
|
122
|
+
</dependency>
|
123
|
+
</gem>
|
124
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/execjs-2.5.2" name="execjs" version="2.5.2" timestamp="1434899648000" parser_version="15" git="false">
|
125
|
+
<additional_info authors="Sam Stephenson, Josh Peek" email="sstephenson@gmail.com, josh@joshpeek.com" homepage="https://github.com/rails/execjs">
|
126
|
+
<summary>Run JavaScript code from Ruby</summary>
|
127
|
+
</additional_info>
|
128
|
+
</gem>
|
129
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/rails-deprecated_sanitizer-1.0.3" name="rails-deprecated_sanitizer" version="1.0.3" timestamp="1434895703000" parser_version="15" git="false">
|
130
|
+
<additional_info authors="Kasper Timm Hansen" email="kaspth@gmail.com" homepage="https://github.com/rails/rails-deprecated_sanitizer">
|
131
|
+
<summary>Deprecated sanitizer API extracted from Action View.</summary>
|
132
|
+
</additional_info>
|
133
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
134
|
+
<bound version="4.2.0.alpha" bound="GREATER_OR_EQUAL" />
|
135
|
+
</dependency>
|
136
|
+
</gem>
|
137
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/columnize-0.9.0" name="columnize" version="0.9.0" timestamp="1434899642000" parser_version="15" git="false">
|
138
|
+
<additional_info authors="Rocky Bernstein" email="rockyb@rubyforge.net" homepage="https://github.com/rocky/columnize">
|
139
|
+
<summary>Module to format an Array as an Array of String aligned in columns</summary>
|
140
|
+
</additional_info>
|
141
|
+
</gem>
|
142
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/actionmailer-4.2.2" name="actionmailer" version="4.2.2" timestamp="1434895815000" parser_version="15" git="false">
|
143
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
144
|
+
<summary>Email composition, delivery, and receiving framework (part of Rails).</summary>
|
145
|
+
</additional_info>
|
146
|
+
<dependency name="mail" git="false" path="false" doRequire="true">
|
147
|
+
<bound version="2.5" bound="LATEST_IN_BRANCH" />
|
148
|
+
<bound version="2.5.4" bound="GREATER_OR_EQUAL" />
|
149
|
+
</dependency>
|
150
|
+
<dependency name="rails-dom-testing" git="false" path="false" doRequire="true">
|
151
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
152
|
+
<bound version="1.0.5" bound="GREATER_OR_EQUAL" />
|
153
|
+
</dependency>
|
154
|
+
<dependency name="actionview" git="false" path="false" doRequire="true">
|
155
|
+
<bound version="4.2.2" bound="EQUAL" />
|
156
|
+
</dependency>
|
157
|
+
<dependency name="actionpack" git="false" path="false" doRequire="true">
|
158
|
+
<bound version="4.2.2" bound="EQUAL" />
|
159
|
+
</dependency>
|
160
|
+
<dependency name="activejob" git="false" path="false" doRequire="true">
|
161
|
+
<bound version="4.2.2" bound="EQUAL" />
|
162
|
+
</dependency>
|
163
|
+
<readme xml:space="preserve"><![CDATA[= Action Mailer -- Easy email delivery and testing
|
164
|
+
|
165
|
+
Action Mailer is a framework for designing email service layers. These layers
|
166
|
+
are used to consolidate code for sending out forgotten passwords, welcome
|
167
|
+
wishes on signup, invoices for billing, and any other use case that requires
|
168
|
+
a written notification to either a person or another system.
|
169
|
+
|
170
|
+
Action Mailer is in essence a wrapper around Action Controller and the
|
171
|
+
Mail gem. It provides a way to make emails using templates in the same
|
172
|
+
way that Action Controller renders views using templates.
|
173
|
+
|
174
|
+
Additionally, an Action Mailer class can be used to process incoming email,
|
175
|
+
such as allowing a blog to accept new posts from an email (which could even
|
176
|
+
have been sent from a phone).
|
177
|
+
|
178
|
+
== Sending emails
|
179
|
+
|
180
|
+
The framework works by initializing any instance variables you want to be
|
181
|
+
available in the email template, followed by a call to +mail+ to deliver
|
182
|
+
the email.
|
183
|
+
|
184
|
+
This can be as simple as:
|
185
|
+
|
186
|
+
class Notifier < ActionMailer::Base
|
187
|
+
default from: 'system@loudthinking.com'
|
188
|
+
|
189
|
+
def welcome(recipient)
|
190
|
+
@recipient = recipient
|
191
|
+
mail(to: recipient,
|
192
|
+
subject: "[Signed up] Welcome #{recipient}")
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
The body of the email is created by using an Action View template (regular
|
197
|
+
ERB) that has the instance variables that are declared in the mailer action.
|
198
|
+
|
199
|
+
So the corresponding body template for the method above could look like this:
|
200
|
+
|
201
|
+
Hello there,
|
202
|
+
|
203
|
+
Mr. <%= @recipient %>
|
204
|
+
|
205
|
+
Thank you for signing up!
|
206
|
+
|
207
|
+
If the recipient was given as "david@loudthinking.com", the email
|
208
|
+
generated would look like this:
|
209
|
+
|
210
|
+
Date: Mon, 25 Jan 2010 22:48:09 +1100
|
211
|
+
From: system@loudthinking.com
|
212
|
+
To: david@loudthinking.com
|
213
|
+
Message-ID: <4b5d84f9dd6a5_7380800b81ac29578@void.loudthinking.com.mail>
|
214
|
+
Subject: [Signed up] Welcome david@loudthinking.com
|
215
|
+
Mime-Version: 1.0
|
216
|
+
Content-Type: text/plain;
|
217
|
+
charset="US-ASCII";
|
218
|
+
Content-Transfer-Encoding: 7bit
|
219
|
+
|
220
|
+
Hello there,
|
221
|
+
|
222
|
+
Mr. david@loudthinking.com
|
223
|
+
|
224
|
+
Thank you for signing up!
|
225
|
+
|
226
|
+
In order to send mails, you simply call the method and then call +deliver_now+ on the return value.
|
227
|
+
|
228
|
+
Calling the method returns a Mail Message object:
|
229
|
+
|
230
|
+
message = Notifier.welcome("david@loudthinking.com") # => Returns a Mail::Message object
|
231
|
+
message.deliver_now # => delivers the email
|
232
|
+
|
233
|
+
Or you can just chain the methods together like:
|
234
|
+
|
235
|
+
Notifier.welcome("david@loudthinking.com").deliver_now # Creates the email and sends it immediately
|
236
|
+
|
237
|
+
== Setting defaults
|
238
|
+
|
239
|
+
It is possible to set default values that will be used in every method in your
|
240
|
+
Action Mailer class. To implement this functionality, you just call the public
|
241
|
+
class method +default+ which you get for free from <tt>ActionMailer::Base</tt>.
|
242
|
+
This method accepts a Hash as the parameter. You can use any of the headers,
|
243
|
+
email messages have, like +:from+ as the key. You can also pass in a string as
|
244
|
+
the key, like "Content-Type", but Action Mailer does this out of the box for you,
|
245
|
+
so you won't need to worry about that. Finally, it is also possible to pass in a
|
246
|
+
Proc that will get evaluated when it is needed.
|
247
|
+
|
248
|
+
Note that every value you set with this method will get overwritten if you use the
|
249
|
+
same key in your mailer method.
|
250
|
+
|
251
|
+
Example:
|
252
|
+
|
253
|
+
class AuthenticationMailer < ActionMailer::Base
|
254
|
+
default from: "awesome@application.com", subject: Proc.new { "E-mail was generated at #{Time.now}" }
|
255
|
+
.....
|
256
|
+
end
|
257
|
+
|
258
|
+
== Receiving emails
|
259
|
+
|
260
|
+
To receive emails, you need to implement a public instance method called
|
261
|
+
+receive+ that takes an email object as its single parameter. The Action Mailer
|
262
|
+
framework has a corresponding class method, which is also called +receive+, that
|
263
|
+
accepts a raw, unprocessed email as a string, which it then turns into the email
|
264
|
+
object and calls the receive instance method.
|
265
|
+
|
266
|
+
Example:
|
267
|
+
|
268
|
+
class Mailman < ActionMailer::Base
|
269
|
+
def receive(email)
|
270
|
+
page = Page.find_by(address: email.to.first)
|
271
|
+
page.emails.create(
|
272
|
+
subject: email.subject, body: email.body
|
273
|
+
)
|
274
|
+
|
275
|
+
if email.has_attachments?
|
276
|
+
email.attachments.each do |attachment|
|
277
|
+
page.attachments.create({
|
278
|
+
file: attachment, description: email.subject
|
279
|
+
})
|
280
|
+
end
|
281
|
+
end
|
282
|
+
end
|
283
|
+
end
|
284
|
+
|
285
|
+
This Mailman can be the target for Postfix or other MTAs. In Rails, you would use
|
286
|
+
the runner in the trivial case like this:
|
287
|
+
|
288
|
+
rails runner 'Mailman.receive(STDIN.read)'
|
289
|
+
|
290
|
+
However, invoking Rails in the runner for each mail to be received is very
|
291
|
+
resource intensive. A single instance of Rails should be run within a daemon, if
|
292
|
+
it is going to process more than just a limited amount of email.
|
293
|
+
|
294
|
+
== Configuration
|
295
|
+
|
296
|
+
The Base class has the full list of configuration options. Here's an example:
|
297
|
+
|
298
|
+
ActionMailer::Base.smtp_settings = {
|
299
|
+
address: 'smtp.yourserver.com', # default: localhost
|
300
|
+
port: '25', # default: 25
|
301
|
+
user_name: 'user',
|
302
|
+
password: 'pass',
|
303
|
+
authentication: :plain # :plain, :login or :cram_md5
|
304
|
+
}
|
305
|
+
|
306
|
+
|
307
|
+
== Download and installation
|
308
|
+
|
309
|
+
The latest version of Action Mailer can be installed with RubyGems:
|
310
|
+
|
311
|
+
% [sudo] gem install actionmailer
|
312
|
+
|
313
|
+
Source code can be downloaded as part of the Rails project on GitHub
|
314
|
+
|
315
|
+
* https://github.com/rails/rails/tree/4-2-stable/actionmailer
|
316
|
+
|
317
|
+
|
318
|
+
== License
|
319
|
+
|
320
|
+
Action Mailer is released under the MIT license:
|
321
|
+
|
322
|
+
* http://www.opensource.org/licenses/MIT
|
323
|
+
|
324
|
+
|
325
|
+
== Support
|
326
|
+
|
327
|
+
API documentation is at
|
328
|
+
|
329
|
+
* http://api.rubyonrails.org
|
330
|
+
|
331
|
+
Bug reports can be filed for the Ruby on Rails project here:
|
332
|
+
|
333
|
+
* https://github.com/rails/rails/issues
|
334
|
+
|
335
|
+
Feature requests should be discussed on the rails-core mailing list here:
|
336
|
+
|
337
|
+
* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core
|
338
|
+
|
339
|
+
]]></readme>
|
340
|
+
</gem>
|
341
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/debug_inspector-0.0.2" name="debug_inspector" version="0.0.2" timestamp="1434899639000" parser_version="15" git="false">
|
342
|
+
<additional_info authors="John Mair (banisterfiend)" email="jrmair@gmail.com" homepage="https://github.com/banister/debug_inspector">
|
343
|
+
<summary>A Ruby wrapper for the MRI 2.0 debug_inspector API</summary>
|
344
|
+
</additional_info>
|
345
|
+
</gem>
|
346
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/thor-0.19.1" name="thor" version="0.19.1" timestamp="1434895810000" parser_version="15" git="false">
|
347
|
+
<additional_info authors="Yehuda Katz, Jos\u{e9} Valim" email="ruby-thor@googlegroups.com" homepage="http://whatisthor.com/">
|
348
|
+
<summary>Thor is a toolkit for building powerful command-line interfaces.</summary>
|
349
|
+
</additional_info>
|
350
|
+
</gem>
|
351
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/rack-1.6.4" name="rack" version="1.6.4" timestamp="1434895807000" parser_version="15" git="false">
|
352
|
+
<additional_info authors="Christian Neukirchen" email="chneukirchen@gmail.com" homepage="http://rack.github.io/">
|
353
|
+
<summary>a modular Ruby webserver interface</summary>
|
354
|
+
</additional_info>
|
355
|
+
</gem>
|
356
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/railties-4.2.2" name="railties" version="4.2.2" timestamp="1434895811000" parser_version="15" git="false">
|
357
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
358
|
+
<summary>Tools for creating, working with, and running Rails applications.</summary>
|
359
|
+
</additional_info>
|
360
|
+
<dependency name="rake" git="false" path="false" doRequire="true">
|
361
|
+
<bound version="0.8.7" bound="GREATER_OR_EQUAL" />
|
362
|
+
</dependency>
|
363
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
364
|
+
<bound version="4.2.2" bound="EQUAL" />
|
365
|
+
</dependency>
|
366
|
+
<dependency name="actionpack" git="false" path="false" doRequire="true">
|
367
|
+
<bound version="4.2.2" bound="EQUAL" />
|
368
|
+
</dependency>
|
369
|
+
<dependency name="thor" git="false" path="false" doRequire="true">
|
370
|
+
<bound version="0.18.1" bound="GREATER_OR_EQUAL" />
|
371
|
+
<bound version="2.0" bound="LESS" />
|
372
|
+
</dependency>
|
373
|
+
</gem>
|
374
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/actionpack-4.2.2" name="actionpack" version="4.2.2" timestamp="1434895808000" parser_version="15" git="false">
|
375
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
376
|
+
<summary>Web-flow and rendering framework putting the VC in MVC (part of Rails).</summary>
|
377
|
+
</additional_info>
|
378
|
+
<dependency name="rails-html-sanitizer" git="false" path="false" doRequire="true">
|
379
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
380
|
+
<bound version="1.0.1" bound="GREATER_OR_EQUAL" />
|
381
|
+
</dependency>
|
382
|
+
<dependency name="rack" git="false" path="false" doRequire="true">
|
383
|
+
<bound version="1.6" bound="LATEST_IN_BRANCH" />
|
384
|
+
</dependency>
|
385
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
386
|
+
<bound version="4.2.2" bound="EQUAL" />
|
387
|
+
</dependency>
|
388
|
+
<dependency name="rack-test" git="false" path="false" doRequire="true">
|
389
|
+
<bound version="0.6.2" bound="LATEST_IN_BRANCH" />
|
390
|
+
</dependency>
|
391
|
+
<dependency name="rails-dom-testing" git="false" path="false" doRequire="true">
|
392
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
393
|
+
<bound version="1.0.5" bound="GREATER_OR_EQUAL" />
|
394
|
+
</dependency>
|
395
|
+
<dependency name="actionview" git="false" path="false" doRequire="true">
|
396
|
+
<bound version="4.2.2" bound="EQUAL" />
|
397
|
+
</dependency>
|
398
|
+
</gem>
|
399
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/loofah-2.0.2" name="loofah" version="2.0.2" timestamp="1434895803000" parser_version="15" git="false">
|
400
|
+
<additional_info authors="Mike Dalessio, Bryan Helmkamp" email="mike.dalessio@gmail.com, bryan@brynary.com" homepage="https://github.com/flavorjones/loofah">
|
401
|
+
<summary>Loofah is a general library for manipulating and transforming HTML/XML documents and fragments</summary>
|
402
|
+
</additional_info>
|
403
|
+
<dependency name="nokogiri" git="false" path="false" doRequire="true">
|
404
|
+
<bound version="1.5.9" bound="GREATER_OR_EQUAL" />
|
405
|
+
</dependency>
|
406
|
+
</gem>
|
407
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/mail-2.6.3" name="mail" version="2.6.3" timestamp="1434895814000" parser_version="15" git="false">
|
408
|
+
<additional_info authors="Mikel Lindsaar" email="raasdnil@gmail.com" homepage="https://github.com/mikel/mail">
|
409
|
+
<summary>Mail provides a nice Ruby DSL for making, sending and reading emails.</summary>
|
410
|
+
</additional_info>
|
411
|
+
<dependency name="mime-types" git="false" path="false" doRequire="true">
|
412
|
+
<bound version="1.16" bound="GREATER_OR_EQUAL" />
|
413
|
+
<bound version="3" bound="LESS" />
|
414
|
+
</dependency>
|
415
|
+
</gem>
|
416
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/globalid-0.3.5" name="globalid" version="0.3.5" timestamp="1434895812000" parser_version="15" git="false">
|
417
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
418
|
+
<summary>Refer to any model with a URI: gid://app/class/id</summary>
|
419
|
+
</additional_info>
|
420
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
421
|
+
<bound version="4.1.0" bound="GREATER_OR_EQUAL" />
|
422
|
+
</dependency>
|
423
|
+
</gem>
|
424
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/rails-dom-testing-1.0.6" name="rails-dom-testing" version="1.0.6" timestamp="1434895802000" parser_version="15" git="false">
|
425
|
+
<additional_info authors="Rafael Mendon\u{e7}a Fran\u{e7}a, Kasper Timm Hansen" email="rafaelmfranca@gmail.com, kaspth@gmail.com" homepage="https://github.com/rails/rails-dom-testing">
|
426
|
+
<summary>Dom and Selector assertions for Rails applications</summary>
|
427
|
+
</additional_info>
|
428
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
429
|
+
<bound version="4.2.0.beta" bound="GREATER_OR_EQUAL" />
|
430
|
+
<bound version="5.0" bound="LESS" />
|
431
|
+
</dependency>
|
432
|
+
<dependency name="nokogiri" git="false" path="false" doRequire="true">
|
433
|
+
<bound version="1.6.0" bound="LATEST_IN_BRANCH" />
|
434
|
+
</dependency>
|
435
|
+
<dependency name="rails-deprecated_sanitizer" git="false" path="false" doRequire="true">
|
436
|
+
<bound version="1.0.1" bound="GREATER_OR_EQUAL" />
|
437
|
+
</dependency>
|
438
|
+
</gem>
|
439
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/binding_of_caller-0.7.2" name="binding_of_caller" version="0.7.2" timestamp="1434899641000" parser_version="15" git="false">
|
440
|
+
<additional_info authors="John Mair (banisterfiend)" email="jrmair@gmail.com" homepage="http://github.com/banister/binding_of_caller">
|
441
|
+
<summary>Retrieve the binding of a method's caller. Can also retrieve bindings even further up the stack.</summary>
|
442
|
+
</additional_info>
|
443
|
+
<dependency name="debug_inspector" git="false" path="false" doRequire="true">
|
444
|
+
<bound version="0.0.1" bound="GREATER_OR_EQUAL" />
|
445
|
+
</dependency>
|
446
|
+
</gem>
|
447
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/sprockets-3.2.0" name="sprockets" version="3.2.0" timestamp="1434895809000" parser_version="15" git="false">
|
448
|
+
<additional_info authors="Sam Stephenson, Joshua Peek" email="sstephenson@gmail.com, josh@joshpeek.com" homepage="https://github.com/rails/sprockets">
|
449
|
+
<summary>Rack-based asset packaging system</summary>
|
450
|
+
</additional_info>
|
451
|
+
<dependency name="rack" git="false" path="false" doRequire="true">
|
452
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
453
|
+
</dependency>
|
454
|
+
</gem>
|
455
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/activerecord-4.2.2" name="activerecord" version="4.2.2" timestamp="1434895817000" parser_version="15" git="false">
|
456
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
457
|
+
<summary>Object-relational mapper framework (part of Rails).</summary>
|
458
|
+
</additional_info>
|
459
|
+
<dependency name="arel" git="false" path="false" doRequire="true">
|
460
|
+
<bound version="6.0" bound="LATEST_IN_BRANCH" />
|
461
|
+
</dependency>
|
462
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
463
|
+
<bound version="4.2.2" bound="EQUAL" />
|
464
|
+
</dependency>
|
465
|
+
<dependency name="activemodel" git="false" path="false" doRequire="true">
|
466
|
+
<bound version="4.2.2" bound="EQUAL" />
|
467
|
+
</dependency>
|
468
|
+
</gem>
|
469
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/json-1.8.3" name="json" version="1.8.3" timestamp="1434899626000" parser_version="15" git="false">
|
470
|
+
<additional_info authors="Florian Frank" email="flori@ping.de" homepage="http://flori.github.com/json">
|
471
|
+
<summary>JSON Implementation for Ruby</summary>
|
472
|
+
</additional_info>
|
473
|
+
</gem>
|
474
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/mini_portile-0.6.2" name="mini_portile" version="0.6.2" timestamp="1434895703000" parser_version="15" git="false">
|
475
|
+
<additional_info authors="Luis Lavena, Mike Dalessio" email="mike.dalessio@gmail.com" homepage="http://github.com/flavorjones/mini_portile">
|
476
|
+
<summary>Simplistic port-like solution for developers</summary>
|
477
|
+
</additional_info>
|
478
|
+
</gem>
|
479
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/builder-3.2.2" name="builder" version="3.2.2" timestamp="1434895805000" parser_version="15" git="false">
|
480
|
+
<additional_info authors="Jim Weirich" email="jim.weirich@gmail.com" homepage="http://onestepback.org">
|
481
|
+
<summary>Builders for MarkUp.</summary>
|
482
|
+
</additional_info>
|
483
|
+
</gem>
|
484
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/nokogiri-1.6.6.2" name="nokogiri" version="1.6.6.2" timestamp="1434895797000" parser_version="15" git="false">
|
485
|
+
<additional_info authors="Aaron Patterson, Mike Dalessio, Yoko Harada, Tim Elliott, Akinori MUSHA" email="aaronp@rubyforge.org, mike.dalessio@gmail.com, yokolet@gmail.com, tle@holymonkey.com, knu@idaemons.org" homepage="http://nokogiri.org">
|
486
|
+
<summary>Nokogiri (\u{92f8}) is an HTML, XML, SAX, and Reader parser</summary>
|
487
|
+
</additional_info>
|
488
|
+
<dependency name="mini_portile" git="false" path="false" doRequire="true">
|
489
|
+
<bound version="0.6.0" bound="LATEST_IN_BRANCH" />
|
490
|
+
</dependency>
|
491
|
+
</gem>
|
492
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/erubis-2.7.0" name="erubis" version="2.7.0" timestamp="1434895805000" parser_version="15" git="false">
|
493
|
+
<additional_info authors="makoto kuwata" email="kwa(at)kuwata-lab.com" homepage="http://www.kuwata-lab.com/erubis/">
|
494
|
+
<summary>a fast and extensible eRuby implementation which supports multi-language</summary>
|
495
|
+
</additional_info>
|
496
|
+
</gem>
|
497
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/actionview-4.2.2" name="actionview" version="4.2.2" timestamp="1434895806000" parser_version="15" git="false">
|
498
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
499
|
+
<summary>Rendering framework putting the V in MVC (part of Rails).</summary>
|
500
|
+
</additional_info>
|
501
|
+
<dependency name="rails-html-sanitizer" git="false" path="false" doRequire="true">
|
502
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
503
|
+
<bound version="1.0.1" bound="GREATER_OR_EQUAL" />
|
504
|
+
</dependency>
|
505
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
506
|
+
<bound version="4.2.2" bound="EQUAL" />
|
507
|
+
</dependency>
|
508
|
+
<dependency name="builder" git="false" path="false" doRequire="true">
|
509
|
+
<bound version="3.1" bound="LATEST_IN_BRANCH" />
|
510
|
+
</dependency>
|
511
|
+
<dependency name="erubis" git="false" path="false" doRequire="true">
|
512
|
+
<bound version="2.7.0" bound="LATEST_IN_BRANCH" />
|
513
|
+
</dependency>
|
514
|
+
<dependency name="rails-dom-testing" git="false" path="false" doRequire="true">
|
515
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
516
|
+
<bound version="1.0.5" bound="GREATER_OR_EQUAL" />
|
517
|
+
</dependency>
|
518
|
+
</gem>
|
519
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/jquery-rails-4.0.4" name="jquery-rails" version="4.0.4" timestamp="1434899655000" parser_version="15" git="false">
|
520
|
+
<additional_info authors="Andr\u{e9} Arko" email="andre@arko.net" homepage="http://rubygems.org/gems/jquery-rails">
|
521
|
+
<summary>Use jQuery with Rails 4+</summary>
|
522
|
+
</additional_info>
|
523
|
+
<dependency name="thor" git="false" path="false" doRequire="true">
|
524
|
+
<bound version="0.14" bound="GREATER_OR_EQUAL" />
|
525
|
+
<bound version="2.0" bound="LESS" />
|
526
|
+
</dependency>
|
527
|
+
<dependency name="railties" git="false" path="false" doRequire="true">
|
528
|
+
<bound version="4.2.0" bound="GREATER_OR_EQUAL" />
|
529
|
+
</dependency>
|
530
|
+
<dependency name="rails-dom-testing" git="false" path="false" doRequire="true">
|
531
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
532
|
+
</dependency>
|
533
|
+
</gem>
|
534
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/web-console-2.1.3" name="web-console" version="2.1.3" timestamp="1434899683000" parser_version="15" git="false">
|
535
|
+
<additional_info authors="Charlie Somerville, Genadi Samokovarov, Guillermo Iguaran, Ryan Dao" email="charlie@charliesomerville.com, gsamokovarov@gmail.com, guilleiguaran@gmail.com, daoduyducduong@gmail.com" homepage="https://github.com/rails/web-console">
|
536
|
+
<summary>A debugging tool for your Ruby on Rails applications.</summary>
|
537
|
+
</additional_info>
|
538
|
+
<dependency name="binding_of_caller" git="false" path="false" doRequire="true">
|
539
|
+
<bound version="0.7.2" bound="GREATER_OR_EQUAL" />
|
540
|
+
</dependency>
|
541
|
+
<dependency name="sprockets-rails" git="false" path="false" doRequire="true">
|
542
|
+
<bound version="2.0" bound="GREATER_OR_EQUAL" />
|
543
|
+
<bound version="4.0" bound="LESS" />
|
544
|
+
</dependency>
|
545
|
+
<dependency name="activemodel" git="false" path="false" doRequire="true">
|
546
|
+
<bound version="4.0" bound="GREATER_OR_EQUAL" />
|
547
|
+
</dependency>
|
548
|
+
<dependency name="railties" git="false" path="false" doRequire="true">
|
549
|
+
<bound version="4.0" bound="GREATER_OR_EQUAL" />
|
550
|
+
</dependency>
|
551
|
+
</gem>
|
552
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/tzinfo-1.2.2" name="tzinfo" version="1.2.2" timestamp="1434895701000" parser_version="15" git="false">
|
553
|
+
<additional_info authors="Philip Ross" email="phil.ross@gmail.com" homepage="http://tzinfo.github.io">
|
554
|
+
<summary>Daylight savings aware timezone library</summary>
|
555
|
+
</additional_info>
|
556
|
+
<dependency name="thread_safe" git="false" path="false" doRequire="true">
|
557
|
+
<bound version="0.1" bound="LATEST_IN_BRANCH" />
|
558
|
+
</dependency>
|
559
|
+
</gem>
|
560
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/sprockets-rails-2.3.1" name="sprockets-rails" version="2.3.1" timestamp="1434895810000" parser_version="15" git="false">
|
561
|
+
<additional_info authors="Joshua Peek" email="josh@joshpeek.com" homepage="https://github.com/rails/sprockets-rails">
|
562
|
+
<summary>Sprockets Rails integration</summary>
|
563
|
+
</additional_info>
|
564
|
+
<dependency name="actionpack" git="false" path="false" doRequire="true">
|
565
|
+
<bound version="3.0" bound="GREATER_OR_EQUAL" />
|
566
|
+
</dependency>
|
567
|
+
<dependency name="sprockets" git="false" path="false" doRequire="true">
|
568
|
+
<bound version="2.8" bound="GREATER_OR_EQUAL" />
|
569
|
+
<bound version="4.0" bound="LESS" />
|
570
|
+
</dependency>
|
571
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
572
|
+
<bound version="3.0" bound="GREATER_OR_EQUAL" />
|
573
|
+
</dependency>
|
574
|
+
</gem>
|
575
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/activejob-4.2.2" name="activejob" version="4.2.2" timestamp="1434895812000" parser_version="15" git="false">
|
576
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
577
|
+
<summary>Job framework with pluggable queues.</summary>
|
578
|
+
</additional_info>
|
579
|
+
<dependency name="globalid" git="false" path="false" doRequire="true">
|
580
|
+
<bound version="0.3.0" bound="GREATER_OR_EQUAL" />
|
581
|
+
</dependency>
|
582
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
583
|
+
<bound version="4.2.2" bound="EQUAL" />
|
584
|
+
</dependency>
|
585
|
+
</gem>
|
586
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/rack-test-0.6.3" name="rack-test" version="0.6.3" timestamp="1434895808000" parser_version="15" git="false">
|
587
|
+
<additional_info authors="Bryan Helmkamp" email="bryan@brynary.com" homepage="http://github.com/brynary/rack-test">
|
588
|
+
<summary>Simple testing API built on Rack</summary>
|
589
|
+
</additional_info>
|
590
|
+
<dependency name="rack" git="false" path="false" doRequire="true">
|
591
|
+
<bound version="1.0" bound="GREATER_OR_EQUAL" />
|
592
|
+
</dependency>
|
593
|
+
</gem>
|
594
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/byebug-5.0.0" name="byebug" version="5.0.0" timestamp="1434899645000" parser_version="15" git="false">
|
595
|
+
<additional_info authors="David Rodriguez, Kent Sibilev, Mark Moseley" email="deivid.rodriguez@mail.com" homepage="http://github.com/deivid-rodriguez/byebug">
|
596
|
+
<summary>Ruby 2.0 fast debugger - base + CLI</summary>
|
597
|
+
</additional_info>
|
598
|
+
<dependency name="columnize" git="false" path="false" doRequire="true">
|
599
|
+
<bound version="0.9.0" bound="EQUAL" />
|
600
|
+
</dependency>
|
601
|
+
</gem>
|
602
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/sass-3.4.14" name="sass" version="3.4.14" timestamp="1434899663000" parser_version="15" git="false">
|
603
|
+
<additional_info authors="Natalie Weizenbaum, Chris Eppstein, Hampton Catlin" email="sass-lang@googlegroups.com" homepage="http://sass-lang.com/">
|
604
|
+
<summary>A powerful but elegant CSS compiler that makes CSS fun again.</summary>
|
605
|
+
</additional_info>
|
606
|
+
</gem>
|
607
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/jbuilder-2.3.0" name="jbuilder" version="2.3.0" timestamp="1434899653000" parser_version="15" git="false">
|
608
|
+
<additional_info authors="David Heinemeier Hansson, Pavel Pravosud" email="david@37signals.com, pavel@pravosud.com" homepage="https://github.com/rails/jbuilder">
|
609
|
+
<summary>Create JSON structures via a Builder-style DSL</summary>
|
610
|
+
</additional_info>
|
611
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
612
|
+
<bound version="3.0.0" bound="GREATER_OR_EQUAL" />
|
613
|
+
<bound version="5" bound="LESS" />
|
614
|
+
</dependency>
|
615
|
+
<dependency name="multi_json" git="false" path="false" doRequire="true">
|
616
|
+
<bound version="1.2" bound="LATEST_IN_BRANCH" />
|
617
|
+
</dependency>
|
618
|
+
</gem>
|
619
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/activemodel-4.2.2" name="activemodel" version="4.2.2" timestamp="1434895816000" parser_version="15" git="false">
|
620
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
621
|
+
<summary>A toolkit for building modeling frameworks (part of Rails).</summary>
|
622
|
+
</additional_info>
|
623
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
624
|
+
<bound version="4.2.2" bound="EQUAL" />
|
625
|
+
</dependency>
|
626
|
+
<dependency name="builder" git="false" path="false" doRequire="true">
|
627
|
+
<bound version="3.1" bound="LATEST_IN_BRANCH" />
|
628
|
+
</dependency>
|
629
|
+
</gem>
|
630
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/thread_safe-0.3.5" name="thread_safe" version="0.3.5" timestamp="1434895700000" parser_version="15" git="false">
|
631
|
+
<additional_info authors="Charles Oliver Nutter, thedarkone" email="headius@headius.com, thedarkone2@gmail.com" homepage="https://github.com/ruby-concurrency/thread_safe">
|
632
|
+
<summary>A collection of data structures and utilities to make thread-safe programming in Ruby easier</summary>
|
633
|
+
</additional_info>
|
634
|
+
</gem>
|
635
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/spring-1.3.6" name="spring" version="1.3.6" timestamp="1434899670000" parser_version="15" git="false">
|
636
|
+
<additional_info authors="Jon Leighton" email="j@jonathanleighton.com" homepage="http://github.com/rails/spring">
|
637
|
+
<summary>Rails application preloader</summary>
|
638
|
+
</additional_info>
|
639
|
+
</gem>
|
640
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/i18n-0.7.0" name="i18n" version="0.7.0" timestamp="1434895701000" parser_version="15" git="false">
|
641
|
+
<additional_info authors="Sven Fuchs, Joshua Harvey, Matt Aimonetti, Stephan Soller, Saimon Moore" email="rails-i18n@googlegroups.com" homepage="http://github.com/svenfuchs/i18n">
|
642
|
+
<summary>New wave Internationalization support for Ruby</summary>
|
643
|
+
</additional_info>
|
644
|
+
</gem>
|
645
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/rails-4.2.2" name="rails" version="4.2.2" timestamp="1434895818000" parser_version="15" git="false">
|
646
|
+
<additional_info authors="David Heinemeier Hansson" email="david@loudthinking.com" homepage="http://www.rubyonrails.org">
|
647
|
+
<summary>Full-stack web application framework.</summary>
|
648
|
+
</additional_info>
|
649
|
+
<dependency name="activesupport" git="false" path="false" doRequire="true">
|
650
|
+
<bound version="4.2.2" bound="EQUAL" />
|
651
|
+
</dependency>
|
652
|
+
<dependency name="bundler" git="false" path="false" doRequire="true">
|
653
|
+
<bound version="1.3.0" bound="GREATER_OR_EQUAL" />
|
654
|
+
<bound version="2.0" bound="LESS" />
|
655
|
+
</dependency>
|
656
|
+
<dependency name="railties" git="false" path="false" doRequire="true">
|
657
|
+
<bound version="4.2.2" bound="EQUAL" />
|
658
|
+
</dependency>
|
659
|
+
<dependency name="actionmailer" git="false" path="false" doRequire="true">
|
660
|
+
<bound version="4.2.2" bound="EQUAL" />
|
661
|
+
</dependency>
|
662
|
+
<dependency name="activerecord" git="false" path="false" doRequire="true">
|
663
|
+
<bound version="4.2.2" bound="EQUAL" />
|
664
|
+
</dependency>
|
665
|
+
<dependency name="actionview" git="false" path="false" doRequire="true">
|
666
|
+
<bound version="4.2.2" bound="EQUAL" />
|
667
|
+
</dependency>
|
668
|
+
<dependency name="actionpack" git="false" path="false" doRequire="true">
|
669
|
+
<bound version="4.2.2" bound="EQUAL" />
|
670
|
+
</dependency>
|
671
|
+
<dependency name="sprockets-rails" git="false" path="false" doRequire="true">
|
672
|
+
<bound version="0" bound="GREATER_OR_EQUAL" />
|
673
|
+
</dependency>
|
674
|
+
<dependency name="activejob" git="false" path="false" doRequire="true">
|
675
|
+
<bound version="4.2.2" bound="EQUAL" />
|
676
|
+
</dependency>
|
677
|
+
<dependency name="activemodel" git="false" path="false" doRequire="true">
|
678
|
+
<bound version="4.2.2" bound="EQUAL" />
|
679
|
+
</dependency>
|
680
|
+
</gem>
|
681
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/sdoc-0.4.1" name="sdoc" version="0.4.1" timestamp="1434899668000" parser_version="15" git="false">
|
682
|
+
<additional_info authors="Vladimir Kolesnikov, Nathan Broadbent, Jean Mertz, Zachary Scott" email="voloko@gmail.com zachary@zacharyscott.net" homepage="http://github.com/voloko/sdoc">
|
683
|
+
<summary>rdoc html with javascript search index.</summary>
|
684
|
+
</additional_info>
|
685
|
+
<dependency name="rdoc" git="false" path="false" doRequire="true">
|
686
|
+
<bound version="4.0" bound="LATEST_IN_BRANCH" />
|
687
|
+
</dependency>
|
688
|
+
<dependency name="json" git="false" path="false" doRequire="true">
|
689
|
+
<bound version="1.7" bound="LATEST_IN_BRANCH" />
|
690
|
+
<bound version="1.7.7" bound="GREATER_OR_EQUAL" />
|
691
|
+
</dependency>
|
692
|
+
</gem>
|
693
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/tilt-1.4.1" name="tilt" version="1.4.1" timestamp="1434899664000" parser_version="15" git="false">
|
694
|
+
<additional_info authors="Ryan Tomayko" email="r@tomayko.com" homepage="http://github.com/rtomayko/tilt/">
|
695
|
+
<summary>Generic interface to multiple Ruby template engines</summary>
|
696
|
+
</additional_info>
|
697
|
+
</gem>
|
698
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/sqlite3-1.3.10" name="sqlite3" version="1.3.10" timestamp="1434899678000" parser_version="15" git="false">
|
699
|
+
<additional_info authors="Jamis Buck, Luis Lavena, Aaron Patterson" email="jamis@37signals.com, luislavena@gmail.com, aaron@tenderlovemaking.com" homepage="https://github.com/sparklemotion/sqlite3-ruby">
|
700
|
+
<summary>This module allows Ruby programs to interface with the SQLite3 database engine (http://www.sqlite.org)</summary>
|
701
|
+
</additional_info>
|
702
|
+
</gem>
|
703
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/mime-types-2.6.1" name="mime-types" version="2.6.1" timestamp="1434895813000" parser_version="15" git="false">
|
704
|
+
<additional_info authors="Austin Ziegler" email="halostatue@gmail.com" homepage="https://github.com/mime-types/ruby-mime-types/">
|
705
|
+
<summary>The mime-types library provides a library and registry for information about MIME content type definitions</summary>
|
706
|
+
</additional_info>
|
707
|
+
</gem>
|
708
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/minitest-5.7.0" name="minitest" version="5.7.0" timestamp="1434899637000" parser_version="15" git="false">
|
709
|
+
<additional_info authors="Ryan Davis" email="ryand-ruby@zenspider.com" homepage="https://github.com/seattlerb/minitest">
|
710
|
+
<summary>minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking</summary>
|
711
|
+
</additional_info>
|
712
|
+
</gem>
|
713
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/multi_json-1.11.1" name="multi_json" version="1.11.1" timestamp="1434899652000" parser_version="15" git="false">
|
714
|
+
<additional_info authors="Michael Bleigh, Josh Kalderimis, Erik Michaels-Ober, Pavel Pravosud" email="michael@intridea.com, josh.kalderimis@gmail.com, sferik@gmail.com, pavel@pravosud.com" homepage="http://github.com/intridea/multi_json">
|
715
|
+
<summary>A common interface to multiple JSON libraries.</summary>
|
716
|
+
</additional_info>
|
717
|
+
</gem>
|
718
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/gems/coffee-script-source-1.9.1.1" name="coffee-script-source" version="1.9.1.1" timestamp="1434899647000" parser_version="15" git="false">
|
719
|
+
<additional_info authors="Jeremy Ashkenas" email="jashkenas@gmail.com" homepage="http://jashkenas.github.com/coffee-script/">
|
720
|
+
<summary>The CoffeeScript Compiler</summary>
|
721
|
+
</additional_info>
|
722
|
+
</gem>
|
723
|
+
</box>
|
724
|
+
<box url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1715081484/bundler/gems" />
|
725
|
+
<box url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems">
|
726
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/test-unit-3.0.8" name="test-unit" version="3.0.8" timestamp="1425792226000" parser_version="15" git="false">
|
727
|
+
<additional_info authors="Kouhei Sutou, Haruka Yoshihara" email="kou@cozmixng.org, yoshihara@clear-code.com" homepage="http://rubygems.org/gems/test-unit">
|
728
|
+
<summary>An xUnit family unit testing framework for Ruby.</summary>
|
729
|
+
</additional_info>
|
730
|
+
<dependency name="power_assert" git="false" path="false" doRequire="true">
|
731
|
+
<bound version="0" bound="GREATER_OR_EQUAL" />
|
732
|
+
</dependency>
|
733
|
+
</gem>
|
734
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/power_assert-0.2.2" name="power_assert" version="0.2.2" timestamp="1425792226000" parser_version="15" git="false">
|
735
|
+
<additional_info authors="Kazuki Tsujimoto" email="kazuki@callcc.net" homepage="https://github.com/k-tsj/power_assert">
|
736
|
+
<summary>Power Assert for Ruby</summary>
|
737
|
+
</additional_info>
|
738
|
+
</gem>
|
739
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/bundler-unload-1.0.2" name="bundler-unload" version="1.0.2" timestamp="1425792243000" parser_version="15" git="false">
|
740
|
+
<additional_info authors="Michal Papis" email="mpapis@gmail.com" homepage="https://github.com/mpapis/bundler-unload">
|
741
|
+
<summary>Allow unloading bundler after Bundler.load</summary>
|
742
|
+
</additional_info>
|
743
|
+
</gem>
|
744
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/rvm-1.11.3.9" name="rvm" version="1.11.3.9" timestamp="1425792251000" parser_version="15" git="false">
|
745
|
+
<additional_info authors="Wayne E. Seguin, Michal Papis" email="wayneeseguin@gmail.com, mpapis@gmail.com" homepage="http://rvm.io/">
|
746
|
+
<summary>RVM Ruby Gem Library</summary>
|
747
|
+
</additional_info>
|
748
|
+
</gem>
|
749
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/executable-hooks-1.3.2" name="executable-hooks" version="1.3.2" timestamp="1425792244000" parser_version="15" git="false">
|
750
|
+
<additional_info authors="Michal Papis" email="mpapis@gmail.com" homepage="https://github.com/mpapis/executable-hooks">
|
751
|
+
<summary>Hook into rubygems executables allowing extra actions to be taken before executable is run.</summary>
|
752
|
+
</additional_info>
|
753
|
+
</gem>
|
754
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/rubygems-bundler-1.4.4" name="rubygems-bundler" version="1.4.4" timestamp="1425792244000" parser_version="15" git="false">
|
755
|
+
<additional_info authors="Josh Hull, Michal Papis" email="joshbuddy@gmail.com, mpapis@gmail.com" homepage="http://mpapis.github.com/rubygems-bundler">
|
756
|
+
<summary>Stop using bundle exec</summary>
|
757
|
+
</additional_info>
|
758
|
+
<dependency name="bundler-unload" git="false" path="false" doRequire="true">
|
759
|
+
<bound version="1.0.2" bound="GREATER_OR_EQUAL" />
|
760
|
+
</dependency>
|
761
|
+
<dependency name="executable-hooks" git="false" path="false" doRequire="true">
|
762
|
+
<bound version="1.3.2" bound="GREATER_OR_EQUAL" />
|
763
|
+
</dependency>
|
764
|
+
</gem>
|
765
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/bundler-1.8.4" name="bundler" version="1.8.4" timestamp="1425792250000" parser_version="15" git="false">
|
766
|
+
<additional_info authors="Andr\u{e9} Arko, Terence Lee, Carl Lerche, Yehuda Katz" email="andre.arko+terence.lee@gmail.com" homepage="http://bundler.io">
|
767
|
+
<summary>The best way to manage your application's dependencies</summary>
|
768
|
+
</additional_info>
|
769
|
+
</gem>
|
770
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/gem-wrappers-1.2.7" name="gem-wrappers" version="1.2.7" timestamp="1425792237000" parser_version="15" git="false">
|
771
|
+
<additional_info authors="Michal Papis" email="mpapis@gmail.com" homepage="https://github.com/rvm/gem-wrappers">
|
772
|
+
<summary>Create gem wrappers for easy use of gems in cron and other system locations.</summary>
|
773
|
+
</additional_info>
|
774
|
+
</gem>
|
775
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/minitest-5.4.3" name="minitest" version="5.4.3" timestamp="1425792226000" parser_version="15" git="false">
|
776
|
+
<additional_info authors="Ryan Davis" email="ryand-ruby@zenspider.com" homepage="https://github.com/seattlerb/minitest">
|
777
|
+
<summary>minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking</summary>
|
778
|
+
</additional_info>
|
779
|
+
</gem>
|
780
|
+
</box>
|
781
|
+
<box url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/bundler/gems" />
|
782
|
+
</sdk2gems>
|
783
|
+
<sdk2gems sdk="Remote-rvm:ruby-2.2.1-p85 [vagrant-rubymine-env]">
|
784
|
+
<box url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/gems">
|
785
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/gems/i18n-0.6.11" name="i18n" version="0.6.11" timestamp="1434906250000" parser_version="15" git="false">
|
786
|
+
<additional_info authors="Sven Fuchs, Joshua Harvey, Matt Aimonetti, Stephan Soller, Saimon Moore" email="rails-i18n@googlegroups.com" homepage="http://github.com/svenfuchs/i18n">
|
787
|
+
<summary>New wave Internationalization support for Ruby</summary>
|
788
|
+
</additional_info>
|
789
|
+
</gem>
|
790
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/gems/log4r-1.1.10" name="log4r" version="1.1.10" timestamp="1434906251000" parser_version="15" git="false">
|
791
|
+
<additional_info authors="Colby Gutierrez-Kraybill" email="colby@astro.berkeley.edu" homepage="http://log4r.rubyforge.org">
|
792
|
+
<summary>Log4r, logging framework for ruby</summary>
|
793
|
+
</additional_info>
|
794
|
+
</gem>
|
795
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/gems/erubis-2.7.0" name="erubis" version="2.7.0" timestamp="1434906248000" parser_version="15" git="false">
|
796
|
+
<additional_info authors="makoto kuwata" email="kwa(at)kuwata-lab.com" homepage="http://www.kuwata-lab.com/erubis/">
|
797
|
+
<summary>a fast and extensible eRuby implementation which supports multi-language</summary>
|
798
|
+
</additional_info>
|
799
|
+
</gem>
|
800
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/gems/net-scp-1.1.2" name="net-scp" version="1.1.2" timestamp="1434906254000" parser_version="15" git="false">
|
801
|
+
<additional_info authors="Jamis Buck, Delano Mandelbaum" email="net-ssh@solutious.com" homepage="https://github.com/net-ssh/net-scp">
|
802
|
+
<summary>A pure Ruby implementation of the SCP client protocol</summary>
|
803
|
+
</additional_info>
|
804
|
+
<dependency name="net-ssh" git="false" path="false" doRequire="true">
|
805
|
+
<bound version="2.6.5" bound="GREATER_OR_EQUAL" />
|
806
|
+
</dependency>
|
807
|
+
</gem>
|
808
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/gems/ffi-1.9.8" name="ffi" version="1.9.8" timestamp="1434906245000" parser_version="15" git="false">
|
809
|
+
<additional_info authors="Wayne Meissner" email="wmeissner@gmail.com" homepage="http://wiki.github.com/ffi/ffi">
|
810
|
+
<summary>Ruby FFI</summary>
|
811
|
+
</additional_info>
|
812
|
+
</gem>
|
813
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/gems/childprocess-0.3.9" name="childprocess" version="0.3.9" timestamp="1434906247000" parser_version="15" git="false">
|
814
|
+
<additional_info authors="Jari Bakken" email="jari.bakken@gmail.com" homepage="http://github.com/jarib/childprocess">
|
815
|
+
<summary>This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.</summary>
|
816
|
+
</additional_info>
|
817
|
+
<dependency name="ffi" git="false" path="false" doRequire="true">
|
818
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
819
|
+
<bound version="1.0.11" bound="GREATER_OR_EQUAL" />
|
820
|
+
</dependency>
|
821
|
+
</gem>
|
822
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/gems/net-ssh-2.6.8" name="net-ssh" version="2.6.8" timestamp="1434906253000" parser_version="15" git="false">
|
823
|
+
<additional_info authors="Jamis Buck, Delano Mandelbaum" email="net-ssh@solutious.com" homepage="https://github.com/net-ssh/net-ssh">
|
824
|
+
<summary>Net::SSH: a pure-Ruby implementation of the SSH2 client protocol.</summary>
|
825
|
+
</additional_info>
|
826
|
+
</gem>
|
827
|
+
</box>
|
828
|
+
<box url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/bundler/gems">
|
829
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/1999445133/bundler/gems/vagrant-7ec0ee1d00a9" name="vagrant" version="1.2.7" timestamp="1434906233000" parser_version="15" git="true" ref="7ec0ee1d00a9">
|
830
|
+
<additional_info authors="Mitchell Hashimoto, John Bender" email="mitchell.hashimoto@gmail.com, john.m.bender@gmail.com" homepage="http://vagrantup.com">
|
831
|
+
<summary>Build and distribute virtualized development environments.</summary>
|
832
|
+
</additional_info>
|
833
|
+
<dependency name="log4r" git="false" path="false" doRequire="true">
|
834
|
+
<bound version="1.1.9" bound="LATEST_IN_BRANCH" />
|
835
|
+
</dependency>
|
836
|
+
<dependency name="net-scp" git="false" path="false" doRequire="true">
|
837
|
+
<bound version="1.1.0" bound="LATEST_IN_BRANCH" />
|
838
|
+
</dependency>
|
839
|
+
<dependency name="childprocess" git="false" path="false" doRequire="true">
|
840
|
+
<bound version="0.3.7" bound="LATEST_IN_BRANCH" />
|
841
|
+
</dependency>
|
842
|
+
<dependency name="erubis" git="false" path="false" doRequire="true">
|
843
|
+
<bound version="2.7.0" bound="LATEST_IN_BRANCH" />
|
844
|
+
</dependency>
|
845
|
+
<dependency name="net-ssh" git="false" path="false" doRequire="true">
|
846
|
+
<bound version="2.6.6" bound="LATEST_IN_BRANCH" />
|
847
|
+
</dependency>
|
848
|
+
<dependency name="i18n" git="false" path="false" doRequire="true">
|
849
|
+
<bound version="0.6.0" bound="LATEST_IN_BRANCH" />
|
850
|
+
</dependency>
|
851
|
+
</gem>
|
852
|
+
</box>
|
853
|
+
<box url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems">
|
854
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/test-unit-3.0.8" name="test-unit" version="3.0.8" timestamp="1425792226000" parser_version="15" git="false">
|
855
|
+
<additional_info authors="Kouhei Sutou, Haruka Yoshihara" email="kou@cozmixng.org, yoshihara@clear-code.com" homepage="http://rubygems.org/gems/test-unit">
|
856
|
+
<summary>An xUnit family unit testing framework for Ruby.</summary>
|
857
|
+
</additional_info>
|
858
|
+
<dependency name="power_assert" git="false" path="false" doRequire="true">
|
859
|
+
<bound version="0" bound="GREATER_OR_EQUAL" />
|
860
|
+
</dependency>
|
861
|
+
</gem>
|
862
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/power_assert-0.2.2" name="power_assert" version="0.2.2" timestamp="1425792226000" parser_version="15" git="false">
|
863
|
+
<additional_info authors="Kazuki Tsujimoto" email="kazuki@callcc.net" homepage="https://github.com/k-tsj/power_assert">
|
864
|
+
<summary>Power Assert for Ruby</summary>
|
865
|
+
</additional_info>
|
866
|
+
</gem>
|
867
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/bundler-unload-1.0.2" name="bundler-unload" version="1.0.2" timestamp="1425792243000" parser_version="15" git="false">
|
868
|
+
<additional_info authors="Michal Papis" email="mpapis@gmail.com" homepage="https://github.com/mpapis/bundler-unload">
|
869
|
+
<summary>Allow unloading bundler after Bundler.load</summary>
|
870
|
+
</additional_info>
|
871
|
+
</gem>
|
872
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/rvm-1.11.3.9" name="rvm" version="1.11.3.9" timestamp="1425792251000" parser_version="15" git="false">
|
873
|
+
<additional_info authors="Wayne E. Seguin, Michal Papis" email="wayneeseguin@gmail.com, mpapis@gmail.com" homepage="http://rvm.io/">
|
874
|
+
<summary>RVM Ruby Gem Library</summary>
|
875
|
+
</additional_info>
|
876
|
+
</gem>
|
877
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/executable-hooks-1.3.2" name="executable-hooks" version="1.3.2" timestamp="1425792244000" parser_version="15" git="false">
|
878
|
+
<additional_info authors="Michal Papis" email="mpapis@gmail.com" homepage="https://github.com/mpapis/executable-hooks">
|
879
|
+
<summary>Hook into rubygems executables allowing extra actions to be taken before executable is run.</summary>
|
880
|
+
</additional_info>
|
881
|
+
</gem>
|
882
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/bundler-1.8.4" name="bundler" version="1.8.4" timestamp="1425792250000" parser_version="15" git="false">
|
883
|
+
<additional_info authors="Andr\u{e9} Arko, Terence Lee, Carl Lerche, Yehuda Katz" email="andre.arko+terence.lee@gmail.com" homepage="http://bundler.io">
|
884
|
+
<summary>The best way to manage your application's dependencies</summary>
|
885
|
+
</additional_info>
|
886
|
+
<readme xml:space="preserve"><![CDATA[[![Version ](https://img.shields.io/gem/v/bundler.svg?style=flat)](https://rubygems.org/gems/bundler)
|
887
|
+
[![Build Status](https://img.shields.io/travis/bundler/bundler/master.svg?style=flat)](https://travis-ci.org/bundler/bundler)
|
888
|
+
[![Code Climate](https://img.shields.io/codeclimate/github/bundler/bundler.svg?style=flat)](https://codeclimate.com/github/bundler/bundler)
|
889
|
+
[![Inline docs ](http://inch-ci.org/github/bundler/bundler.svg?style=flat)](http://inch-ci.org/github/bundler/bundler)
|
890
|
+
|
891
|
+
# Bundler: a gem to bundle gems
|
892
|
+
|
893
|
+
Bundler makes sure Ruby applications run the same code on every machine.
|
894
|
+
|
895
|
+
It does this by managing the gems that the application depends on. Given a list of gems, it can automatically download and install those gems, as well as any other gems needed by the gems that are listed. Before installing gems, it checks the versions of every gem to make sure that they are compatible, and can all be loaded at the same time. After the gems have been installed, Bundler can help you update some or all of them when new versions become available. Finally, it records the exact versions that have been installed, so that others can install the exact same gems.
|
896
|
+
|
897
|
+
### Installation and usage
|
898
|
+
|
899
|
+
```
|
900
|
+
gem install bundler
|
901
|
+
bundle init
|
902
|
+
echo "gem 'rails'" >> Gemfile
|
903
|
+
bundle install
|
904
|
+
bundle exec rails new myapp
|
905
|
+
```
|
906
|
+
|
907
|
+
See [bundler.io](http://bundler.io) for the full documentation.
|
908
|
+
|
909
|
+
### Troubleshooting
|
910
|
+
|
911
|
+
For help with common problems, see [ISSUES](https://github.com/bundler/bundler/blob/master/ISSUES.md).
|
912
|
+
|
913
|
+
### Other questions
|
914
|
+
|
915
|
+
To see what has changed in recent versions of Bundler, see the [CHANGELOG](https://github.com/bundler/bundler/blob/master/CHANGELOG.md).
|
916
|
+
|
917
|
+
Feel free to chat with the Bundler core team (and many other users) on IRC in the [#bundler](irc://irc.freenode.net/bundler) channel on Freenode, or via email on the [Bundler mailing list](http://groups.google.com/group/ruby-bundler).
|
918
|
+
|
919
|
+
### Contributing
|
920
|
+
|
921
|
+
If you'd like to contribute to Bundler, that's awesome, and we <3 you. There's a guide to contributing to Bundler (both code and general help) over in [DEVELOPMENT](https://github.com/bundler/bundler/blob/master/DEVELOPMENT.md)
|
922
|
+
]]></readme>
|
923
|
+
</gem>
|
924
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/rubygems-bundler-1.4.4" name="rubygems-bundler" version="1.4.4" timestamp="1425792244000" parser_version="15" git="false">
|
925
|
+
<additional_info authors="Josh Hull, Michal Papis" email="joshbuddy@gmail.com, mpapis@gmail.com" homepage="http://mpapis.github.com/rubygems-bundler">
|
926
|
+
<summary>Stop using bundle exec</summary>
|
927
|
+
</additional_info>
|
928
|
+
<dependency name="bundler-unload" git="false" path="false" doRequire="true">
|
929
|
+
<bound version="1.0.2" bound="GREATER_OR_EQUAL" />
|
930
|
+
</dependency>
|
931
|
+
<dependency name="executable-hooks" git="false" path="false" doRequire="true">
|
932
|
+
<bound version="1.3.2" bound="GREATER_OR_EQUAL" />
|
933
|
+
</dependency>
|
934
|
+
</gem>
|
935
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/gem-wrappers-1.2.7" name="gem-wrappers" version="1.2.7" timestamp="1425792237000" parser_version="15" git="false">
|
936
|
+
<additional_info authors="Michal Papis" email="mpapis@gmail.com" homepage="https://github.com/rvm/gem-wrappers">
|
937
|
+
<summary>Create gem wrappers for easy use of gems in cron and other system locations.</summary>
|
938
|
+
</additional_info>
|
939
|
+
</gem>
|
940
|
+
<gem url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/gems/minitest-5.4.3" name="minitest" version="5.4.3" timestamp="1425792226000" parser_version="15" git="false">
|
941
|
+
<additional_info authors="Ryan Davis" email="ryand-ruby@zenspider.com" homepage="https://github.com/seattlerb/minitest">
|
942
|
+
<summary>minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking</summary>
|
943
|
+
</additional_info>
|
944
|
+
</gem>
|
945
|
+
</box>
|
946
|
+
<box url="file://$USER_HOME$/.RubyMine70/system/ruby_stubs/-1898370286/-1793318937/bundler/gems" />
|
947
|
+
</sdk2gems>
|
948
|
+
<sdk2gems sdk="ruby-2.0.0-p645">
|
949
|
+
<box url="file://$USER_HOME$/.gem/ruby/2.0.0/gems" />
|
950
|
+
<box url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems">
|
951
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/multi_json-1.11.1" name="multi_json" version="1.11.1" timestamp="1434993088591" parser_version="15" git="false">
|
952
|
+
<additional_info authors="Michael Bleigh, Josh Kalderimis, Erik Michaels-Ober, Pavel Pravosud" email="michael@intridea.com, josh.kalderimis@gmail.com, sferik@gmail.com, pavel@pravosud.com" homepage="http://github.com/intridea/multi_json">
|
953
|
+
<summary>A common interface to multiple JSON libraries.</summary>
|
954
|
+
</additional_info>
|
955
|
+
</gem>
|
956
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/2.0.0" name="minitest" version="4.3.2" timestamp="0" parser_version="15" git="false">
|
957
|
+
<additional_info authors="N/A" email="N/A" homepage="N/A">
|
958
|
+
<summary>This minitest is bundled with Ruby</summary>
|
959
|
+
</additional_info>
|
960
|
+
</gem>
|
961
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/rest-client-1.8.0-x86-mingw32" name="rest-client" version="1.8.0" timestamp="1434993111031" parser_version="15" git="false">
|
962
|
+
<additional_info authors="REST Client Team" email="rest.client@librelist.com" homepage="https://github.com/rest-client/rest-client">
|
963
|
+
<summary>Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.</summary>
|
964
|
+
</additional_info>
|
965
|
+
<dependency name="ffi" git="false" path="false" doRequire="true">
|
966
|
+
<bound version="1.9" bound="LATEST_IN_BRANCH" />
|
967
|
+
</dependency>
|
968
|
+
<dependency name="mime-types" git="false" path="false" doRequire="true">
|
969
|
+
<bound version="1.16" bound="GREATER_OR_EQUAL" />
|
970
|
+
<bound version="3.0" bound="LESS" />
|
971
|
+
</dependency>
|
972
|
+
<dependency name="netrc" git="false" path="false" doRequire="true">
|
973
|
+
<bound version="0.7" bound="LATEST_IN_BRANCH" />
|
974
|
+
</dependency>
|
975
|
+
<dependency name="http-cookie" git="false" path="false" doRequire="true">
|
976
|
+
<bound version="1.0.2" bound="GREATER_OR_EQUAL" />
|
977
|
+
<bound version="2.0" bound="LESS" />
|
978
|
+
</dependency>
|
979
|
+
</gem>
|
980
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/2.0.0" name="psych" version="2.0.0" timestamp="0" parser_version="15" git="false">
|
981
|
+
<additional_info authors="Aaron Patterson" email="aaron@tenderlovemaking.com" homepage="http://github.com/tenderlove/psych">
|
982
|
+
<summary>Psych is a YAML parser and emitter</summary>
|
983
|
+
</additional_info>
|
984
|
+
</gem>
|
985
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/2.0.0" name="json" version="1.7.7" timestamp="0" parser_version="15" git="false">
|
986
|
+
<additional_info authors="N/A" email="N/A" homepage="N/A">
|
987
|
+
<summary>This json is bundled with Ruby</summary>
|
988
|
+
</additional_info>
|
989
|
+
</gem>
|
990
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/byebug-5.0.0" name="byebug" version="5.0.0" timestamp="1434993794991" parser_version="15" git="false">
|
991
|
+
<additional_info authors="David Rodriguez, Kent Sibilev, Mark Moseley" email="deivid.rodriguez@mail.com" homepage="http://github.com/deivid-rodriguez/byebug">
|
992
|
+
<summary>Ruby 2.0 fast debugger - base + CLI</summary>
|
993
|
+
</additional_info>
|
994
|
+
<dependency name="columnize" git="false" path="false" doRequire="true">
|
995
|
+
<bound version="0.9.0" bound="EQUAL" />
|
996
|
+
</dependency>
|
997
|
+
</gem>
|
998
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/rb-inotify-0.9.5" name="rb-inotify" version="0.9.5" timestamp="1434993082204" parser_version="15" git="false">
|
999
|
+
<additional_info authors="Nathan Weizenbaum" email="nex342@gmail.com" homepage="http://github.com/nex3/rb-inotify">
|
1000
|
+
<summary>A Ruby wrapper for Linux's inotify, using FFI</summary>
|
1001
|
+
</additional_info>
|
1002
|
+
<dependency name="ffi" git="false" path="false" doRequire="true">
|
1003
|
+
<bound version="0.5.0" bound="GREATER_OR_EQUAL" />
|
1004
|
+
</dependency>
|
1005
|
+
</gem>
|
1006
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/http-cookie-1.0.2" name="http-cookie" version="1.0.2" timestamp="1434993075446" parser_version="15" git="false">
|
1007
|
+
<additional_info authors="Akinori MUSHA, Aaron Patterson, Eric Hodel, Mike Dalessio" email="knu@idaemons.org, aaronp@rubyforge.org, drbrain@segment7.net, mike.dalessio@gmail.com" homepage="https://github.com/sparklemotion/http-cookie">
|
1008
|
+
<summary>A Ruby library to handle HTTP Cookies based on RFC 6265</summary>
|
1009
|
+
</additional_info>
|
1010
|
+
<dependency name="domain_name" git="false" path="false" doRequire="true">
|
1011
|
+
<bound version="0.5" bound="LATEST_IN_BRANCH" />
|
1012
|
+
</dependency>
|
1013
|
+
</gem>
|
1014
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/i18n-0.7.0" name="i18n" version="0.7.0" timestamp="1434993079209" parser_version="15" git="false">
|
1015
|
+
<additional_info authors="Sven Fuchs, Joshua Harvey, Matt Aimonetti, Stephan Soller, Saimon Moore" email="rails-i18n@googlegroups.com" homepage="http://github.com/svenfuchs/i18n">
|
1016
|
+
<summary>New wave Internationalization support for Ruby</summary>
|
1017
|
+
</additional_info>
|
1018
|
+
</gem>
|
1019
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0" name="celluloid" version="0.16.0" timestamp="1434993053736" parser_version="15" git="false">
|
1020
|
+
<additional_info authors="Tony Arcieri" email="tony.arcieri@gmail.com" homepage="https://github.com/celluloid/celluloid">
|
1021
|
+
<summary>Actor-based concurrent object framework for Ruby</summary>
|
1022
|
+
</additional_info>
|
1023
|
+
<dependency name="timers" git="false" path="false" doRequire="true">
|
1024
|
+
<bound version="4.0.0" bound="LATEST_IN_BRANCH" />
|
1025
|
+
</dependency>
|
1026
|
+
</gem>
|
1027
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/erubis-2.7.0" name="erubis" version="2.7.0" timestamp="1434993069547" parser_version="15" git="false">
|
1028
|
+
<additional_info authors="makoto kuwata" email="kwa(at)kuwata-lab.com" homepage="http://www.kuwata-lab.com/erubis/">
|
1029
|
+
<summary>a fast and extensible eRuby implementation which supports multi-language</summary>
|
1030
|
+
</additional_info>
|
1031
|
+
</gem>
|
1032
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/nokogiri-1.6.3.1-x86-mingw32" name="nokogiri" version="1.6.3.1" timestamp="1434993106299" parser_version="15" git="false">
|
1033
|
+
<additional_info authors="Aaron Patterson, Mike Dalessio, Yoko Harada, Tim Elliott, Akinori MUSHA" email="aaronp@rubyforge.org, mike.dalessio@gmail.com, yokolet@gmail.com, tle@holymonkey.com, knu@idaemons.org" homepage="http://nokogiri.org">
|
1034
|
+
<summary>Nokogiri (\u{92f8}) is an HTML, XML, SAX, and Reader parser</summary>
|
1035
|
+
</additional_info>
|
1036
|
+
<dependency name="mini_portile" git="false" path="false" doRequire="true">
|
1037
|
+
<bound version="0.6.0" bound="EQUAL" />
|
1038
|
+
</dependency>
|
1039
|
+
</gem>
|
1040
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/unf-0.1.4" name="unf" version="0.1.4" timestamp="1434993064639" parser_version="15" git="false">
|
1041
|
+
<additional_info authors="Akinori MUSHA" email="knu@idaemons.org" homepage="https://github.com/knu/ruby-unf">
|
1042
|
+
<summary>A wrapper library to bring Unicode Normalization Form support to Ruby/JRuby</summary>
|
1043
|
+
</additional_info>
|
1044
|
+
<dependency name="unf_ext" git="false" path="false" doRequire="true">
|
1045
|
+
<bound version="0" bound="GREATER_OR_EQUAL" />
|
1046
|
+
</dependency>
|
1047
|
+
</gem>
|
1048
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/nori-2.6.0" name="nori" version="2.6.0" timestamp="1434993107820" parser_version="15" git="false">
|
1049
|
+
<additional_info authors="Daniel Harrington, John Nunemaker, Wynn Netherland" email="me@rubiii.com" homepage="https://github.com/savonrb/nori">
|
1050
|
+
<summary>XML to Hash translator</summary>
|
1051
|
+
</additional_info>
|
1052
|
+
</gem>
|
1053
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/mini_portile-0.6.0" name="mini_portile" version="0.6.0" timestamp="1434993093797" parser_version="15" git="false">
|
1054
|
+
<additional_info authors="Luis Lavena" email="luislavena@gmail.com" homepage="http://github.com/luislavena/mini_portile">
|
1055
|
+
<summary>Simplistic port-like solution for developers</summary>
|
1056
|
+
</additional_info>
|
1057
|
+
</gem>
|
1058
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/listen-2.8.6" name="listen" version="2.8.6" timestamp="1434993083738" parser_version="15" git="false">
|
1059
|
+
<additional_info authors="Thibaud Guillaume-Gentil" email="thibaud@thibaud.gg" homepage="https://github.com/guard/listen">
|
1060
|
+
<summary>Listen to file modifications</summary>
|
1061
|
+
</additional_info>
|
1062
|
+
<dependency name="celluloid" git="false" path="false" doRequire="true">
|
1063
|
+
<bound version="0.15.2" bound="GREATER_OR_EQUAL" />
|
1064
|
+
</dependency>
|
1065
|
+
<dependency name="rb-inotify" git="false" path="false" doRequire="true">
|
1066
|
+
<bound version="0.9" bound="GREATER_OR_EQUAL" />
|
1067
|
+
</dependency>
|
1068
|
+
<dependency name="rb-fsevent" git="false" path="false" doRequire="true">
|
1069
|
+
<bound version="0.9.3" bound="GREATER_OR_EQUAL" />
|
1070
|
+
</dependency>
|
1071
|
+
</gem>
|
1072
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/netrc-0.10.3" name="netrc" version="0.10.3" timestamp="1434993100738" parser_version="15" git="false">
|
1073
|
+
<additional_info authors="Keith Rarick, geemus (Wesley Beary)" email="geemus@gmail.com" homepage="https://github.com/geemus/netrc">
|
1074
|
+
<summary>Library to read and write netrc files.</summary>
|
1075
|
+
</additional_info>
|
1076
|
+
</gem>
|
1077
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/domain_name-0.5.24" name="domain_name" version="0.5.24" timestamp="1434993066364" parser_version="15" git="false">
|
1078
|
+
<additional_info authors="Akinori MUSHA" email="knu@idaemons.org" homepage="https://github.com/knu/ruby-domain_name">
|
1079
|
+
<summary>Domain Name manipulation library for Ruby</summary>
|
1080
|
+
</additional_info>
|
1081
|
+
<dependency name="unf" git="false" path="false" doRequire="true">
|
1082
|
+
<bound version="0.0.5" bound="GREATER_OR_EQUAL" />
|
1083
|
+
<bound version="1.0.0" bound="LESS" />
|
1084
|
+
</dependency>
|
1085
|
+
</gem>
|
1086
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/hitimes-1.2.2-x86-mingw32" name="hitimes" version="1.2.2" timestamp="1434993050458" parser_version="15" git="false">
|
1087
|
+
<additional_info authors="Jeremy Hinegardner" email="jeremy@copiousfreetime.org" homepage="http://github.com/copiousfreetime/hitimes">
|
1088
|
+
<summary>Hitimes is a fast, high resolution timer library for recording performance metrics. It uses the appropriate low method calls for each system to get the highest granularity time increments possible.</summary>
|
1089
|
+
</additional_info>
|
1090
|
+
</gem>
|
1091
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/winrm-fs-0.2.0" name="winrm-fs" version="0.2.0" timestamp="1434993127485" parser_version="15" git="false">
|
1092
|
+
<additional_info authors="Shawn Neal, Matt Wrock" email="sneal@sneal.net, matt@mattwrock.com" homepage="http://github.com/WinRb/winrm-fs">
|
1093
|
+
<summary>WinRM File System</summary>
|
1094
|
+
</additional_info>
|
1095
|
+
<dependency name="erubis" git="false" path="false" doRequire="true">
|
1096
|
+
<bound version="2.7" bound="LATEST_IN_BRANCH" />
|
1097
|
+
</dependency>
|
1098
|
+
<dependency name="winrm" git="false" path="false" doRequire="true">
|
1099
|
+
<bound version="1.3.0" bound="LATEST_IN_BRANCH" />
|
1100
|
+
</dependency>
|
1101
|
+
<dependency name="rubyzip" git="false" path="false" doRequire="true">
|
1102
|
+
<bound version="1.1" bound="LATEST_IN_BRANCH" />
|
1103
|
+
</dependency>
|
1104
|
+
<dependency name="logging" git="false" path="false" doRequire="true">
|
1105
|
+
<bound version="1.6" bound="LATEST_IN_BRANCH" />
|
1106
|
+
<bound version="1.6.1" bound="GREATER_OR_EQUAL" />
|
1107
|
+
</dependency>
|
1108
|
+
</gem>
|
1109
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/columnize-0.9.0" name="columnize" version="0.9.0" timestamp="1434993789507" parser_version="15" git="false">
|
1110
|
+
<additional_info authors="Rocky Bernstein" email="rockyb@rubyforge.net" homepage="https://github.com/rocky/columnize">
|
1111
|
+
<summary>Module to format an Array as an Array of String aligned in columns</summary>
|
1112
|
+
</additional_info>
|
1113
|
+
</gem>
|
1114
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/log4r-1.1.10" name="log4r" version="1.1.10" timestamp="1434993087102" parser_version="15" git="false">
|
1115
|
+
<additional_info authors="Colby Gutierrez-Kraybill" email="colby@astro.berkeley.edu" homepage="http://log4r.rubyforge.org">
|
1116
|
+
<summary>Log4r, logging framework for ruby</summary>
|
1117
|
+
</additional_info>
|
1118
|
+
</gem>
|
1119
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/rb-fsevent-0.9.5" name="rb-fsevent" version="0.9.5" timestamp="1434993080750" parser_version="15" git="false">
|
1120
|
+
<additional_info authors="Thibaud Guillaume-Gentil, Travis Tilley" email="thibaud@thibaud.gg, ttilley@gmail.com" homepage="http://rubygems.org/gems/rb-fsevent">
|
1121
|
+
<summary>Very simple & usable FSEvents API</summary>
|
1122
|
+
</additional_info>
|
1123
|
+
</gem>
|
1124
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/2.0.0" name="rdoc" version="4.0.0" timestamp="0" parser_version="15" git="false">
|
1125
|
+
<additional_info authors="N/A" email="N/A" homepage="N/A">
|
1126
|
+
<summary>This rdoc is bundled with Ruby</summary>
|
1127
|
+
</additional_info>
|
1128
|
+
</gem>
|
1129
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/gssapi-1.2.0" name="gssapi" version="1.2.0" timestamp="1434993070992" parser_version="15" git="false">
|
1130
|
+
<additional_info authors="Dan Wanek" email="dan.wanek@gmail.com" homepage="http://github.com/zenchild/gssapi">
|
1131
|
+
<summary>A FFI wrapper around the system GSSAPI library.</summary>
|
1132
|
+
</additional_info>
|
1133
|
+
<dependency name="ffi" git="false" path="false" doRequire="true">
|
1134
|
+
<bound version="1.0.1" bound="GREATER_OR_EQUAL" />
|
1135
|
+
</dependency>
|
1136
|
+
</gem>
|
1137
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/rubyzip-1.1.7" name="rubyzip" version="1.1.7" timestamp="1434993114517" parser_version="15" git="false">
|
1138
|
+
<additional_info authors="Alexander Simonov" email="alex@simonov.me" homepage="http://github.com/rubyzip/rubyzip">
|
1139
|
+
<summary>rubyzip is a ruby module for reading and writing zip files</summary>
|
1140
|
+
</additional_info>
|
1141
|
+
</gem>
|
1142
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/httpclient-2.6.0.1" name="httpclient" version="2.6.0.1" timestamp="1434993077370" parser_version="15" git="false">
|
1143
|
+
<additional_info authors="Hiroshi Nakamura" email="nahi@ruby-lang.org" homepage="https://github.com/nahi/httpclient">
|
1144
|
+
<summary>gives something like the functionality of libwww-perl (LWP) in Ruby</summary>
|
1145
|
+
</additional_info>
|
1146
|
+
</gem>
|
1147
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/builder-3.2.2" name="builder" version="3.2.2" timestamp="1434993048824" parser_version="15" git="false">
|
1148
|
+
<additional_info authors="Jim Weirich" email="jim.weirich@gmail.com" homepage="http://onestepback.org">
|
1149
|
+
<summary>Builders for MarkUp.</summary>
|
1150
|
+
</additional_info>
|
1151
|
+
</gem>
|
1152
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/2.0.0" name="rake" version="0.9.6" timestamp="0" parser_version="15" git="false">
|
1153
|
+
<additional_info authors="N/A" email="N/A" homepage="N/A">
|
1154
|
+
<summary>This rake is bundled with Ruby</summary>
|
1155
|
+
</additional_info>
|
1156
|
+
</gem>
|
1157
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/bundler-1.7.15" name="bundler" version="1.7.15" timestamp="1434992977263" parser_version="15" git="false">
|
1158
|
+
<additional_info authors="Andr\u{e9} Arko, Terence Lee, Carl Lerche, Yehuda Katz" email="andre@arko.net" homepage="http://bundler.io">
|
1159
|
+
<summary>The best way to manage your application's dependencies</summary>
|
1160
|
+
</additional_info>
|
1161
|
+
</gem>
|
1162
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/2.0.0" name="io-console" version="0.4.2" timestamp="0" parser_version="15" git="false">
|
1163
|
+
<additional_info authors="Nobu Nakada" email="nobu@ruby-lang.org" homepage="http://www.ruby-lang.org">
|
1164
|
+
<summary>Console interface</summary>
|
1165
|
+
</additional_info>
|
1166
|
+
</gem>
|
1167
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/2.0.0" name="bigdecimal" version="1.2.0" timestamp="0" parser_version="15" git="false">
|
1168
|
+
<additional_info authors="Kenta Murata, Shigeo Kobayashi" email="mrkn@mrkn.jp" homepage="http://www.ruby-lang.org">
|
1169
|
+
<summary>Arbitrary-precision decimal floating-point number library.</summary>
|
1170
|
+
</additional_info>
|
1171
|
+
</gem>
|
1172
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/winrm-1.3.3" name="winrm" version="1.3.3" timestamp="1434993125941" parser_version="15" git="false">
|
1173
|
+
<additional_info authors="Dan Wanek, Paul Morton" email="dan.wanek@gmail.com, paul@themortonsonline.com" homepage="https://github.com/WinRb/WinRM">
|
1174
|
+
<summary>Ruby library for Windows Remote Management</summary>
|
1175
|
+
</additional_info>
|
1176
|
+
<dependency name="rubyntlm" git="false" path="false" doRequire="true">
|
1177
|
+
<bound version="0.4.0" bound="LATEST_IN_BRANCH" />
|
1178
|
+
</dependency>
|
1179
|
+
<dependency name="nori" git="false" path="false" doRequire="true">
|
1180
|
+
<bound version="2.0" bound="LATEST_IN_BRANCH" />
|
1181
|
+
</dependency>
|
1182
|
+
<dependency name="httpclient" git="false" path="false" doRequire="true">
|
1183
|
+
<bound version="2.2" bound="LATEST_IN_BRANCH" />
|
1184
|
+
<bound version="2.2.0.2" bound="GREATER_OR_EQUAL" />
|
1185
|
+
</dependency>
|
1186
|
+
<dependency name="builder" git="false" path="false" doRequire="true">
|
1187
|
+
<bound version="2.1.2" bound="GREATER_OR_EQUAL" />
|
1188
|
+
</dependency>
|
1189
|
+
<dependency name="uuidtools" git="false" path="false" doRequire="true">
|
1190
|
+
<bound version="2.1.2" bound="LATEST_IN_BRANCH" />
|
1191
|
+
</dependency>
|
1192
|
+
<dependency name="gssapi" git="false" path="false" doRequire="true">
|
1193
|
+
<bound version="1.2" bound="LATEST_IN_BRANCH" />
|
1194
|
+
</dependency>
|
1195
|
+
<dependency name="gyoku" git="false" path="false" doRequire="true">
|
1196
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
1197
|
+
</dependency>
|
1198
|
+
<dependency name="logging" git="false" path="false" doRequire="true">
|
1199
|
+
<bound version="1.6" bound="LATEST_IN_BRANCH" />
|
1200
|
+
<bound version="1.6.1" bound="GREATER_OR_EQUAL" />
|
1201
|
+
</dependency>
|
1202
|
+
</gem>
|
1203
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/little-plugger-1.1.3" name="little-plugger" version="1.1.3" timestamp="1434993085121" parser_version="15" git="false">
|
1204
|
+
<additional_info authors="Tim Pease" email="tim.pease@gmail.com" homepage="http://gemcutter.org/gems/little-plugger">
|
1205
|
+
<summary>LittlePlugger is a module that provides Gem based plugin management.</summary>
|
1206
|
+
</additional_info>
|
1207
|
+
</gem>
|
1208
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/unf_ext-0.0.7.1-x86-mingw32" name="unf_ext" version="0.0.7.1" timestamp="1434993063021" parser_version="15" git="false">
|
1209
|
+
<additional_info authors="Takeru Ohta, Akinori MUSHA" email="knu@idaemons.org" homepage="https://github.com/knu/ruby-unf_ext">
|
1210
|
+
<summary>Unicode Normalization Form support library for CRuby</summary>
|
1211
|
+
</additional_info>
|
1212
|
+
</gem>
|
1213
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/net-scp-1.1.2" name="net-scp" version="1.1.2" timestamp="1434993097589" parser_version="15" git="false">
|
1214
|
+
<additional_info authors="Jamis Buck, Delano Mandelbaum" email="net-ssh@solutious.com" homepage="https://github.com/net-ssh/net-scp">
|
1215
|
+
<summary>A pure Ruby implementation of the SCP client protocol</summary>
|
1216
|
+
</additional_info>
|
1217
|
+
<dependency name="net-ssh" git="false" path="false" doRequire="true">
|
1218
|
+
<bound version="2.6.5" bound="GREATER_OR_EQUAL" />
|
1219
|
+
</dependency>
|
1220
|
+
</gem>
|
1221
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/rubyntlm-0.4.0" name="rubyntlm" version="0.4.0" timestamp="1434993112571" parser_version="15" git="false">
|
1222
|
+
<additional_info authors="Kohei Kajimoto, Paul Morton" email="koheik@gmail.com, paul.e.morton@gmail.com" homepage="https://github.com/winrb/rubyntlm">
|
1223
|
+
<summary>Ruby/NTLM library.</summary>
|
1224
|
+
</additional_info>
|
1225
|
+
</gem>
|
1226
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/uuidtools-2.1.5" name="uuidtools" version="2.1.5" timestamp="1434993115997" parser_version="15" git="false">
|
1227
|
+
<additional_info authors="Bob Aman" email="bob@sporkmonger.com" homepage="https://github.com/sporkmonger/uuidtools">
|
1228
|
+
<summary>UUID generator</summary>
|
1229
|
+
</additional_info>
|
1230
|
+
</gem>
|
1231
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/net-sftp-2.1.2" name="net-sftp" version="2.1.2" timestamp="1434993099346" parser_version="15" git="false">
|
1232
|
+
<additional_info authors="Jamis Buck, Delano Mandelbaum" email="net-ssh@solutious.com" homepage="https://github.com/net-ssh/net-sftp">
|
1233
|
+
<summary>A pure Ruby implementation of the SFTP client protocol</summary>
|
1234
|
+
</additional_info>
|
1235
|
+
<dependency name="net-ssh" git="false" path="false" doRequire="true">
|
1236
|
+
<bound version="2.6.5" bound="GREATER_OR_EQUAL" />
|
1237
|
+
</dependency>
|
1238
|
+
</gem>
|
1239
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/net-ssh-2.9.2" name="net-ssh" version="2.9.2" timestamp="1434993096030" parser_version="15" git="false">
|
1240
|
+
<additional_info authors="Jamis Buck, Delano Mandelbaum, Mikl\u{f3}s Fazekas" email="net-ssh@solutious.com" homepage="https://github.com/net-ssh/net-ssh">
|
1241
|
+
<summary>Net::SSH: a pure-Ruby implementation of the SSH2 client protocol.</summary>
|
1242
|
+
</additional_info>
|
1243
|
+
</gem>
|
1244
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/mime-types-2.6.1" name="mime-types" version="2.6.1" timestamp="1434993092391" parser_version="15" git="false">
|
1245
|
+
<additional_info authors="Austin Ziegler" email="halostatue@gmail.com" homepage="https://github.com/mime-types/ruby-mime-types/">
|
1246
|
+
<summary>The mime-types library provides a library and registry for information about MIME content type definitions</summary>
|
1247
|
+
</additional_info>
|
1248
|
+
</gem>
|
1249
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/ffi-1.9.8-x86-mingw32" name="ffi" version="1.9.8" timestamp="1434993058255" parser_version="15" git="false">
|
1250
|
+
<additional_info authors="Wayne Meissner" email="wmeissner@gmail.com" homepage="http://wiki.github.com/ffi/ffi">
|
1251
|
+
<summary>Ruby FFI</summary>
|
1252
|
+
</additional_info>
|
1253
|
+
</gem>
|
1254
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/logging-1.8.2" name="logging" version="1.8.2" timestamp="1434993090480" parser_version="15" git="false">
|
1255
|
+
<additional_info authors="Tim Pease" email="tim.pease@gmail.com" homepage="http://rubygems.org/gems/logging">
|
1256
|
+
<summary>A flexible and extendable logging library for Ruby</summary>
|
1257
|
+
</additional_info>
|
1258
|
+
<dependency name="little-plugger" git="false" path="false" doRequire="true">
|
1259
|
+
<bound version="1.1.3" bound="GREATER_OR_EQUAL" />
|
1260
|
+
</dependency>
|
1261
|
+
<dependency name="multi_json" git="false" path="false" doRequire="true">
|
1262
|
+
<bound version="1.8.4" bound="GREATER_OR_EQUAL" />
|
1263
|
+
</dependency>
|
1264
|
+
</gem>
|
1265
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/childprocess-0.5.6" name="childprocess" version="0.5.6" timestamp="1434993059791" parser_version="15" git="false">
|
1266
|
+
<additional_info authors="Jari Bakken" email="jari.bakken@gmail.com" homepage="http://github.com/jarib/childprocess">
|
1267
|
+
<summary>This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.</summary>
|
1268
|
+
</additional_info>
|
1269
|
+
<dependency name="ffi" git="false" path="false" doRequire="true">
|
1270
|
+
<bound version="1.0" bound="LATEST_IN_BRANCH" />
|
1271
|
+
<bound version="1.0.11" bound="GREATER_OR_EQUAL" />
|
1272
|
+
</dependency>
|
1273
|
+
</gem>
|
1274
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/timers-4.0.1" name="timers" version="4.0.1" timestamp="1434993051900" parser_version="15" git="false">
|
1275
|
+
<additional_info authors="Tony Arcieri" email="tony.arcieri@gmail.com" homepage="https://github.com/celluloid/timers">
|
1276
|
+
<summary>Schedule procs to run after a certain time, or at periodic intervals, using any API that accepts a timeout</summary>
|
1277
|
+
</additional_info>
|
1278
|
+
<dependency name="hitimes" git="false" path="false" doRequire="true">
|
1279
|
+
<bound version="0" bound="GREATER_OR_EQUAL" />
|
1280
|
+
</dependency>
|
1281
|
+
</gem>
|
1282
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/gyoku-1.3.1" name="gyoku" version="1.3.1" timestamp="1434993072510" parser_version="15" git="false">
|
1283
|
+
<additional_info authors="Daniel Harrington" email="me@rubiii.com" homepage="https://github.com/savonrb/gyoku">
|
1284
|
+
<summary>Translates Ruby Hashes to XML</summary>
|
1285
|
+
</additional_info>
|
1286
|
+
<dependency name="builder" git="false" path="false" doRequire="true">
|
1287
|
+
<bound version="2.1.2" bound="GREATER_OR_EQUAL" />
|
1288
|
+
</dependency>
|
1289
|
+
</gem>
|
1290
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/hashicorp-checkpoint-0.1.4" name="hashicorp-checkpoint" version="0.1.4" timestamp="1434993073886" parser_version="15" git="false">
|
1291
|
+
<additional_info authors="Mitchell Hashimoto" email="mitchell@hashicorp.com" homepage="http://www.hashicorp.com">
|
1292
|
+
<summary>Internal HashiCorp service to check version information.</summary>
|
1293
|
+
</additional_info>
|
1294
|
+
</gem>
|
1295
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/wdm-0.1.0" name="wdm" version="0.1.0" timestamp="1434993124281" parser_version="15" git="false">
|
1296
|
+
<additional_info authors="Maher Sallam" email="maher@sallam.me" homepage="https://github.com/Maher4Ever/wdm">
|
1297
|
+
<summary>Windows Directory Monitor (WDM) is a threaded directories monitor for Windows.</summary>
|
1298
|
+
</additional_info>
|
1299
|
+
</gem>
|
1300
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/gems/rb-kqueue-0.2.4" name="rb-kqueue" version="0.2.4" timestamp="1434993109279" parser_version="15" git="false">
|
1301
|
+
<additional_info authors="Mathieu Arnold, Nathan Weizenbaum" email="mat@mat.cc nex342@gmail.com" homepage="http://github.com/mat813/rb-kqueue">
|
1302
|
+
<summary>A Ruby wrapper for BSD's kqueue, using FFI</summary>
|
1303
|
+
</additional_info>
|
1304
|
+
<dependency name="ffi" git="false" path="false" doRequire="true">
|
1305
|
+
<bound version="0.5.0" bound="GREATER_OR_EQUAL" />
|
1306
|
+
</dependency>
|
1307
|
+
</gem>
|
1308
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/2.0.0" name="test-unit" version="2.0.0.0" timestamp="0" parser_version="15" git="false">
|
1309
|
+
<additional_info authors="Shota Fukumori" email="sorah@tubusu.net" homepage="http://www.ruby-lang.org">
|
1310
|
+
<summary>test/unit compatible API testing framework</summary>
|
1311
|
+
</additional_info>
|
1312
|
+
</gem>
|
1313
|
+
</box>
|
1314
|
+
<box url="file://$USER_HOME$/.gem/ruby/2.0.0/bundler/gems" />
|
1315
|
+
<box url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/bundler/gems">
|
1316
|
+
<gem url="file://C:/Dev/Ruby200/lib/ruby/gems/2.0.0/bundler/gems/vagrant-28a42122b87f" name="vagrant" version="1.7.2" timestamp="1435249861610" parser_version="15" git="true" ref="28a42122b87f">
|
1317
|
+
<additional_info authors="Mitchell Hashimoto, John Bender" email="mitchell.hashimoto@gmail.com, john.m.bender@gmail.com" homepage="http://vagrantup.com">
|
1318
|
+
<summary>Build and distribute virtualized development environments.</summary>
|
1319
|
+
</additional_info>
|
1320
|
+
<dependency name="i18n" git="false" path="false" doRequire="true">
|
1321
|
+
<bound version="0.6.0" bound="GREATER_OR_EQUAL" />
|
1322
|
+
<bound version="0.8.0" bound="LESS_OR_EQUAL" />
|
1323
|
+
</dependency>
|
1324
|
+
<dependency name="hashicorp-checkpoint" git="false" path="false" doRequire="true">
|
1325
|
+
<bound version="0.1.1" bound="LATEST_IN_BRANCH" />
|
1326
|
+
</dependency>
|
1327
|
+
<dependency name="winrm" git="false" path="false" doRequire="true">
|
1328
|
+
<bound version="1.3" bound="LATEST_IN_BRANCH" />
|
1329
|
+
</dependency>
|
1330
|
+
<dependency name="net-ssh" git="false" path="false" doRequire="true">
|
1331
|
+
<bound version="2.10.0" bound="LESS" />
|
1332
|
+
<bound version="2.6.6" bound="GREATER_OR_EQUAL" />
|
1333
|
+
</dependency>
|
1334
|
+
<dependency name="rb-kqueue" git="false" path="false" doRequire="true">
|
1335
|
+
<bound version="0.2.0" bound="LATEST_IN_BRANCH" />
|
1336
|
+
</dependency>
|
1337
|
+
<dependency name="net-scp" git="false" path="false" doRequire="true">
|
1338
|
+
<bound version="1.1.0" bound="LATEST_IN_BRANCH" />
|
1339
|
+
</dependency>
|
1340
|
+
<dependency name="listen" git="false" path="false" doRequire="true">
|
1341
|
+
<bound version="2.8.0" bound="LATEST_IN_BRANCH" />
|
1342
|
+
</dependency>
|
1343
|
+
<dependency name="bundler" git="false" path="false" doRequire="true">
|
1344
|
+
<bound version="1.5.2" bound="GREATER_OR_EQUAL" />
|
1345
|
+
<bound version="1.8.0" bound="LESS" />
|
1346
|
+
</dependency>
|
1347
|
+
<dependency name="log4r" git="false" path="false" doRequire="true">
|
1348
|
+
<bound version="1.1.11" bound="LESS" />
|
1349
|
+
<bound version="1.1.9" bound="LATEST_IN_BRANCH" />
|
1350
|
+
</dependency>
|
1351
|
+
<dependency name="childprocess" git="false" path="false" doRequire="true">
|
1352
|
+
<bound version="0.5.0" bound="LATEST_IN_BRANCH" />
|
1353
|
+
</dependency>
|
1354
|
+
<dependency name="wdm" git="false" path="false" doRequire="true">
|
1355
|
+
<bound version="0.1.0" bound="LATEST_IN_BRANCH" />
|
1356
|
+
</dependency>
|
1357
|
+
<dependency name="rest-client" git="false" path="false" doRequire="true">
|
1358
|
+
<bound version="1.6.0" bound="GREATER_OR_EQUAL" />
|
1359
|
+
<bound version="2.0" bound="LESS" />
|
1360
|
+
</dependency>
|
1361
|
+
<dependency name="winrm-fs" git="false" path="false" doRequire="true">
|
1362
|
+
<bound version="0.2.0" bound="LATEST_IN_BRANCH" />
|
1363
|
+
</dependency>
|
1364
|
+
<dependency name="net-sftp" git="false" path="false" doRequire="true">
|
1365
|
+
<bound version="2.1" bound="LATEST_IN_BRANCH" />
|
1366
|
+
</dependency>
|
1367
|
+
<dependency name="nokogiri" git="false" path="false" doRequire="true">
|
1368
|
+
<bound version="1.6.3.1" bound="EQUAL" />
|
1369
|
+
</dependency>
|
1370
|
+
<dependency name="erubis" git="false" path="false" doRequire="true">
|
1371
|
+
<bound version="2.7.0" bound="LATEST_IN_BRANCH" />
|
1372
|
+
</dependency>
|
1373
|
+
</gem>
|
1374
|
+
</box>
|
1375
|
+
</sdk2gems>
|
1376
|
+
</component>
|
1377
|
+
<component name="RubyStubsGeneratedCache">
|
1378
|
+
<generated_stubs>
|
1379
|
+
<entry key="builder, 3.2.2" value="no" />
|
1380
|
+
<entry key="bundler, 1.10.4" value="no" />
|
1381
|
+
<entry key="bundler, 1.7.15" value="no" />
|
1382
|
+
<entry key="byebug, 5.0.0" value="1" />
|
1383
|
+
<entry key="celluloid, 0.16.0" value="no" />
|
1384
|
+
<entry key="childprocess, 0.5.6" value="no" />
|
1385
|
+
<entry key="columnize, 0.9.0" value="no" />
|
1386
|
+
<entry key="domain_name, 0.5.24" value="no" />
|
1387
|
+
<entry key="erubis, 2.7.0" value="no" />
|
1388
|
+
<entry key="ffi, 1.9.8" value="1" />
|
1389
|
+
<entry key="gssapi, 1.2.0" value="no" />
|
1390
|
+
<entry key="gyoku, 1.3.1" value="no" />
|
1391
|
+
<entry key="hashicorp-checkpoint, 0.1.4" value="no" />
|
1392
|
+
<entry key="hitimes, 1.2.2" value="1" />
|
1393
|
+
<entry key="http-cookie, 1.0.2" value="no" />
|
1394
|
+
<entry key="httpclient, 2.6.0.1" value="no" />
|
1395
|
+
<entry key="i18n, 0.7.0" value="no" />
|
1396
|
+
<entry key="listen, 2.8.6" value="no" />
|
1397
|
+
<entry key="little-plugger, 1.1.3" value="no" />
|
1398
|
+
<entry key="log4r, 1.1.10" value="no" />
|
1399
|
+
<entry key="logging, 1.8.2" value="no" />
|
1400
|
+
<entry key="mime-types, 2.6.1" value="no" />
|
1401
|
+
<entry key="mini_portile, 0.6.0" value="no" />
|
1402
|
+
<entry key="multi_json, 1.11.1" value="no" />
|
1403
|
+
<entry key="net-scp, 1.1.2" value="no" />
|
1404
|
+
<entry key="net-sftp, 2.1.2" value="no" />
|
1405
|
+
<entry key="net-ssh, 2.9.2" value="no" />
|
1406
|
+
<entry key="netrc, 0.10.3" value="no" />
|
1407
|
+
<entry key="nokogiri, 1.6.3.1" value="1" />
|
1408
|
+
<entry key="nori, 2.6.0" value="no" />
|
1409
|
+
<entry key="rb-fsevent, 0.9.5" value="1" />
|
1410
|
+
<entry key="rb-inotify, 0.9.5" value="no" />
|
1411
|
+
<entry key="rb-kqueue, 0.2.4" value="no" />
|
1412
|
+
<entry key="rest-client, 1.8.0" value="no" />
|
1413
|
+
<entry key="rubyntlm, 0.4.0" value="no" />
|
1414
|
+
<entry key="rubyzip, 1.1.7" value="no" />
|
1415
|
+
<entry key="timers, 4.0.1" value="no" />
|
1416
|
+
<entry key="unf, 0.1.4" value="no" />
|
1417
|
+
<entry key="unf_ext, 0.0.7.1" value="no" />
|
1418
|
+
<entry key="uuidtools, 2.1.5" value="no" />
|
1419
|
+
<entry key="vagrant, 1.7.2" value="no" />
|
1420
|
+
<entry key="wdm, 0.1.0" value="1" />
|
1421
|
+
<entry key="winrm, 1.3.3" value="no" />
|
1422
|
+
<entry key="winrm-fs, 0.2.0" value="no" />
|
1423
|
+
</generated_stubs>
|
1424
|
+
</component>
|
1425
|
+
</application>
|