dyci 0.0.4 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Dyci
2
2
 
3
- TODO: Write a gem description
3
+ This gem helps you to install [DyCI](http://dyci.github.com/) on your computer.
4
4
 
5
5
  ## Installation
6
6
 
@@ -18,7 +18,13 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
- TODO: Write usage instructions here
21
+ $ dyci install parameter [parameter]
22
+
23
+ ### Parameters
24
+
25
+ `as_proxy` : replace Xcode's `clang` with fake script.
26
+ `as_plugin` : add new compiler to Xcode.
27
+ `app_code` : install AppCode DyCI plugin.
22
28
 
23
29
  ## Contributing
24
30
 
data/dyci.gemspec CHANGED
@@ -4,9 +4,9 @@ require File.expand_path('../lib/dyci/version', __FILE__)
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ["Alex Denisov"]
6
6
  gem.email = ["1101.debian@gmail.com"]
7
- gem.description = %q{: Write a gem description}
8
- gem.summary = %q{: Write a gem summary}
9
- gem.homepage = ""
7
+ gem.description = %q{Installation helper for DyCI}
8
+ gem.summary = %q{This tool helps you to install DyCI on your computer}
9
+ gem.homepage = "https://github.com/DyCI/dyci-installer-rb"
10
10
 
11
11
  gem.files = `git ls-files`.split($\)
12
12
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
@@ -14,5 +14,5 @@ Gem::Specification.new do |gem|
14
14
  gem.name = "dyci"
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = DyCI::VERSION
17
- gem.add_runtime_dependency 'dyci-compiler', '0.0.2'
17
+ gem.add_runtime_dependency 'dyci-compiler', '~> 0.1'
18
18
  end
data/lib/dyci.rb CHANGED
@@ -19,7 +19,20 @@ module DyCI
19
19
  end
20
20
 
21
21
  def usage
22
- puts "Usage"
22
+ puts <<-EOF
23
+ Usage:
24
+ dyci install parameter
25
+
26
+ Available parameters:
27
+ as_plugin - install XCode compiler plugin
28
+ as_proxy - replace current clang with fake clang script
29
+ app_code - install AppCode DyCI plugin
30
+
31
+ Examples:
32
+ dyci install as_plugin
33
+ dyci install as_proxy app_code
34
+ dyci install as_plugin as_proxy app_code
35
+ EOF
23
36
  end
24
37
 
25
38
  end
@@ -19,7 +19,15 @@ module DyCI
19
19
  end
20
20
 
21
21
  def usage
22
- puts "print usage"
22
+ puts <<-EOF
23
+ Usage:
24
+ dyci install parameter
25
+
26
+ Available parameters:
27
+ as_plugin - install XCode compiler plugin
28
+ as_proxy - replace current clang with fake clang script
29
+ app_code - install AppCode DyCI plugin
30
+ EOF
23
31
  end
24
32
 
25
33
  def install_helper
data/lib/dyci/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module DyCI
2
- VERSION = "0.0.4"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dyci
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -16,18 +16,18 @@ dependencies:
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - '='
19
+ - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 0.0.2
21
+ version: '0.1'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - '='
27
+ - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: 0.0.2
30
- description: ': Write a gem description'
29
+ version: '0.1'
30
+ description: Installation helper for DyCI
31
31
  email:
32
32
  - 1101.debian@gmail.com
33
33
  executables:
@@ -53,7 +53,7 @@ files:
53
53
  - lib/plugins/DyCIFakeClang.xcplugin/Contents/Resources/DyCIFakeClang.xcspec
54
54
  - lib/plugins/DyCIHelper.xcplugin/Contents/Info.plist
55
55
  - lib/plugins/DyCIHelper.xcplugin/Contents/MacOS/SFDCIHelper
56
- homepage: ''
56
+ homepage: https://github.com/DyCI/dyci-installer-rb
57
57
  licenses: []
58
58
  post_install_message:
59
59
  rdoc_options: []
@@ -76,5 +76,5 @@ rubyforge_project:
76
76
  rubygems_version: 1.8.24
77
77
  signing_key:
78
78
  specification_version: 3
79
- summary: ': Write a gem summary'
79
+ summary: This tool helps you to install DyCI on your computer
80
80
  test_files: []