Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,74 @@ DerivedData

# Spec
spec/test_dummy/


# Created by https://www.gitignore.io/api/rubymine
# Edit at https://www.gitignore.io/?templates=rubymine

### RubyMine ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
.idea/**/misc.xml

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

### RubyMine Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721

# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr

# Sonarlint plugin
.idea/sonarlint

# End of https://www.gitignore.io/api/rubymine
7 changes: 7 additions & 0 deletions .idea/.rakeTasks

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/synx.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/synx/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Synx
VERSION = "0.2.1"
VERSION = "1.0.0"
end
26 changes: 13 additions & 13 deletions synx.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'synx/version'

Gem::Specification.new do |spec|
spec.name = "synx"
spec.name = 'synx'
spec.version = Synx::VERSION
spec.authors = ["Mark Larsen"]
spec.email = ["[email protected]"]
spec.authors = ['Mark Larsen']
spec.email = ['[email protected]']
spec.summary = %q{A command-line tool that reorganizes your Xcode project folder to match your Xcode groups}
spec.description = <<-DESC
A command-line tool that reorganizes your Xcode project folder to match your Xcode groups
Synx parses your .xcodeproj to build the same group structure out on the file system.
DESC
spec.homepage = "https://github.com/venmo/synx"
spec.license = "MIT"
spec.homepage = 'https://github.com/venmo/synx'
spec.license = 'MIT'

spec.files = `git ls-files -z`.split("\x0").reject { |f| f =~ /docs\// }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.require_paths = ['lib']

spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake", "~> 10.3"
spec.add_development_dependency "rspec", "~> 2.14"
spec.add_development_dependency "pry", "~> 0.9"
spec.add_development_dependency 'bundler', '~> 1.17'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rspec', '~> 3.8'
spec.add_development_dependency 'pry', '~> 0.12'

spec.add_dependency "clamp", "~> 0.6"
spec.add_dependency "colorize", "~> 0.7"
spec.add_dependency "xcodeproj", "~> 1.0"
spec.add_dependency 'clamp', '~> 1.3'
spec.add_dependency 'colorize', '~> 0.8'
spec.add_dependency 'xcodeproj', '~> 1.7'
end