Skip to content

Commit

Permalink
Release version 1.0 (#1)
Browse files Browse the repository at this point in the history
* first init calculation

* fix wrong parsing
  • Loading branch information
baolanlequang authored Feb 15, 2022
1 parent b106a80 commit 0506a97
Show file tree
Hide file tree
Showing 4 changed files with 457 additions and 2 deletions.
139 changes: 139 additions & 0 deletions VietnameseLunar.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
#
# Be sure to run `pod spec lint JcampConverter.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |spec|

# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#

spec.name = "VietnameseLunar"
spec.version = "1.0"
spec.summary = "Calculate lunar year in Vietnamese"
spec.swift_versions = ['4.0', '5.0', '5.5']

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
spec.description = <<-DESC
This is library for calculate lunar calendar for Vietnamese
DESC

spec.homepage = "https://github.com/baolanlequang/VietnameseLunar-ios"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"


# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Licensing your code is important. See https://choosealicense.com for more info.
# CocoaPods will detect a license file if there is a named LICENSE*
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
#

spec.license = "MIT"
# spec.license = { :type => "MIT", :file => "FILE_LICENSE" }


# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Specify the authors of the library, with email addresses. Email addresses
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
# accepts just a name if you'd rather not provide an email address.
#
# Specify a social_media_url where others can refer to, for example a twitter
# profile URL.
#

spec.author = { "Lan Le" => "[email protected]" }
# Or just: spec.author = "Bao Lan Le Quang"
# spec.authors = { "Bao Lan Le Quang" => "[email protected]" }
# spec.social_media_url = "https://twitter.com/Bao Lan Le Quang"

# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If this Pod runs only on iOS or OS X, then specify the platform and
# the deployment target. You can optionally include the target after the platform.
#

spec.platform = :ios
# spec.platform = :ios, "5.0"

# When using multiple platforms
spec.ios.deployment_target = "13.0"
# spec.osx.deployment_target = "10.7"
# spec.watchos.deployment_target = "2.0"
# spec.tvos.deployment_target = "9.0"


# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Specify the location from where the source should be retrieved.
# Supports git, hg, bzr, svn and HTTP.
#

spec.source = { :git => "https://github.com/baolanlequang/VietnameseLunar-ios.git", :tag => "#{spec.version}" }


# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
# giving a folder will include any swift, h, m, mm, c & cpp files.
# For header files it will include any header in the folder.
# Not including the public_header_files will make all headers public.
#

spec.source_files = "VietnameseLunar/VietnameseLunar/*.{h,m,swift}"
spec.exclude_files = "Classes/Exclude"

# spec.public_header_files = "Classes/**/*.h"


# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# A list of resources included with the Pod. These are copied into the
# target bundle with a build phase script. Anything else will be cleaned.
# You can preserve files from being cleaned, please don't preserve
# non-essential files like tests, examples and documentation.
#

# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"

# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"


# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Link your library with frameworks, or libraries. Libraries do not include
# the lib prefix of their name.
#

# spec.framework = "SomeFramework"
# spec.frameworks = "SomeFramework", "AnotherFramework"

# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"


# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If your library depends on compiler flags you can set them in the xcconfig hash
# where they will only apply to your library. If you depend on other Podspecs
# you can include multiple dependencies to ensure it works.

# spec.requires_arc = true

# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"

end
25 changes: 23 additions & 2 deletions VietnameseLunar/VietnameseLunar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@

/* Begin PBXBuildFile section */
FA0EE2D327BABBD3004A38D2 /* VietnameseLunar.h in Headers */ = {isa = PBXBuildFile; fileRef = FA0EE2D227BABBD3004A38D2 /* VietnameseLunar.h */; settings = {ATTRIBUTES = (Public, ); }; };
FABDF35427BABDEE005FF880 /* VietnameseCalendar.swift in Sources */ = {isa = PBXBuildFile; fileRef = FABDF35327BABDEE005FF880 /* VietnameseCalendar.swift */; };
FABDF35627BABE5B005FF880 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = FABDF35527BABE5B005FF880 /* Constants.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
FA0EE2CF27BABBD3004A38D2 /* VietnameseLunar.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = VietnameseLunar.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FA0EE2D227BABBD3004A38D2 /* VietnameseLunar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VietnameseLunar.h; sourceTree = "<group>"; };
FABDF35327BABDEE005FF880 /* VietnameseCalendar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VietnameseCalendar.swift; sourceTree = "<group>"; };
FABDF35527BABE5B005FF880 /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand All @@ -31,6 +35,7 @@
children = (
FA0EE2D127BABBD3004A38D2 /* VietnameseLunar */,
FA0EE2D027BABBD3004A38D2 /* Products */,
FA1A59B927BAF4BC0063923B /* Frameworks */,
);
sourceTree = "<group>";
};
Expand All @@ -46,10 +51,19 @@
isa = PBXGroup;
children = (
FA0EE2D227BABBD3004A38D2 /* VietnameseLunar.h */,
FABDF35327BABDEE005FF880 /* VietnameseCalendar.swift */,
FABDF35527BABE5B005FF880 /* Constants.swift */,
);
path = VietnameseLunar;
sourceTree = "<group>";
};
FA1A59B927BAF4BC0063923B /* Frameworks */ = {
isa = PBXGroup;
children = (
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand Down Expand Up @@ -89,10 +103,12 @@
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = 1;
LastSwiftUpdateCheck = 1320;
LastUpgradeCheck = 1320;
TargetAttributes = {
FA0EE2CE27BABBD3004A38D2 = {
CreatedOnToolsVersion = 13.2.1;
LastSwiftMigration = 1320;
};
};
};
Expand Down Expand Up @@ -129,6 +145,8 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FABDF35427BABDEE005FF880 /* VietnameseCalendar.swift in Sources */,
FABDF35627BABE5B005FF880 /* Constants.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -187,7 +205,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.2;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -245,7 +263,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.2;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
Expand All @@ -260,6 +278,7 @@
FA0EE2D727BABBD3004A38D2 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
Expand All @@ -280,6 +299,7 @@
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
Expand All @@ -288,6 +308,7 @@
FA0EE2D827BABBD3004A38D2 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
Expand Down
16 changes: 16 additions & 0 deletions VietnameseLunar/VietnameseLunar/Constants.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// Constants.swift
// VietnameseLunar
//
// Created by Lan Le on 14.02.22.
//

import Foundation

enum ConGiap: Int {
case THAN=0, DAU=1, TUAT=2, HOI=3, TI=4, SUU=5, DAN=6, MAO=7, THIN=8, TY=9, NGO=10, MUI=11
}

enum MuoiCan: Int {
case CANH=0, TAN=1, NHAM=2, QUY=3, GIAP=4, AT=5, BINH=6, DINH=7, MAU=8, KY=9
}
Loading

0 comments on commit 0506a97

Please sign in to comment.